Skip to main content
Glama
TylerIlunga

Procore MCP Server

Procore MCP Server

procore-mcp-server 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

procore_discover_categories

List API categories with endpoint counts

procore_discover_endpoints

List endpoints in a category

procore_search_endpoints

Full-text search across all endpoints

procore_get_endpoint_details

Get full parameter schema for an endpoint

procore_api_call

Execute any Procore API call

procore_get_config

Show current config and auth status

procore_set_config

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 install

Copy the example env file and fill in your credentials:

cp .env.example .env
PROCORE_CLIENT_ID=your_client_id
PROCORE_CLIENT_SECRET=your_client_secret
PROCORE_COMPANY_ID=your_company_id

By 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=all

Coverage 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 build

Authenticate with Procore (opens browser for OAuth):

npm run auth

Start the server:

npm start

Claude 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

  1. Build time: scripts/generate-catalog.ts parses the ~54MB Procore OpenAPI spec (3,155 operations) and produces a compact data/catalog.json plus individual endpoint detail files in data/endpoint-details/. scripts/generate-tools-manifest.ts then 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 auth owns that flow — but remain reachable through procore_api_call.

  2. Auth: Run npm run auth once to complete the OAuth flow in your browser. Tokens are saved to ~/.procore-mcp/tokens.json and auto-refresh when expired.

  3. 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 tools
procore_api_callExecute Any Procore API CallA
Destructive

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
bodyNoJSON request body for POST/PUT/PATCH. Use the exact field names and nesting from procore_get_endpoint_details; ignored on GET and DELETE.
pageNo1-indexed page number for paginated endpoints (default 1)
pathYesAPI 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.
methodYesHTTP method for the endpoint, exactly as reported by the discovery tools
per_pageNoItems per page, 1-100 (default 100)
company_idNoOverrides the Procore-Company-Id header for this call only; defaults to the configured company
path_paramsNoValues 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_paramsNoQuery-string parameters. Use double underscores for Procore's bracket syntax: filters__status becomes filters[status].

TDQS

A4.8/5.0
Behavior5/5

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.

Conciseness4/5

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.

Completeness5/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines5/5

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 CategoriesA
Read-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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.9/5.0
Behavior5/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines5/5

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 CategoryA
Read-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.

ParametersJSON Schema
NameRequiredDescriptionDefault
moduleNoModule within the category, e.g. 'RFI', 'Submittals', 'Punch List'. Ignored unless category is also given.
searchNoCase-insensitive substring matched against endpoint summary text; combine with category to narrow a large module
categoryNoTop-level category, exactly as returned by procore_discover_categories, e.g. 'Project Management', 'Core', 'Construction Financials'
method_filterNoRestrict results to a single HTTP method — useful to list only the reads (GET) in a module

TDQS

A4.9/5.0
Behavior5/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines5/5

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 ConfigurationA
Read-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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A5/5.0
Behavior5/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters5/5

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.

Purpose5/5

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.

Usage Guidelines5/5

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 DetailsA
Read-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.

ParametersJSON Schema
NameRequiredDescriptionDefault
operation_idYesThe exact operationId from procore_discover_endpoints or procore_search_endpoints, e.g. 'RestV10ProjectsProjectIdRfisGet'. Case-sensitive; not a URL path.

TDQS

A4.7/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines5/5

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 EndpointsA
Read-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.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesSearch term matched against endpoint summaries, tags, and paths, e.g. 'RFI', 'budget', 'punch list'. Single keywords match more broadly than phrases.

TDQS

A4.9/5.0
Behavior5/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines5/5

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 ValueA
Idempotent

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
keyYesWhich default to set. These are the only accepted keys; any other value is rejected.
valueYesThe id to store, as a string of digits (e.g. '12345'). Coerced to an integer; a non-numeric value is rejected.

TDQS

A4.8/5.0
Behavior5/5

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.

Conciseness4/5

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.

Completeness5/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines5/5

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.

  1. 2934 tool updatesv2.0.0
    • Removedaccessible_tools
    • Removedadd_a_new_markup
    • Removedadd_additional_assignees_to_a_workflow_instance_company
    • Removedadd_additional_assignees_to_a_workflow_instance_project
    • Removedadd_alternative_response_set_to_project_checklist_template
    • Removedadd_an_existing_response_to_an_item_response_set
    • Removedadd_attachment_to_project_asset_type
    • Removedadd_attachments_to_punch_item
    • Removedadd_category_to_project
    • Removedadd_change_order_package_to_a_requisition_subcontractor_invoice
    • Removedadd_checklist_template_alternative_response_set
    • Removedadd_comments_to_a_direct_issue
    • Removedadd_company_checklist_template_alternative_response_set
    • Removedadd_company_user_to_project
    • Removedadd_person_to_a_group
    • Removedadd_project_to_group
    • Removedadd_role_to_project
    • Removedadd_segment_to_the_project_pattern
    • Removedadd_subcategory_to_category
    • Removedadd_tag_instance_to_person
    • Removedadd_tag_instance_to_project
    • Removedadd_to_project
    • Removedadd_up_to_100_comments_to_a_material
    • Removedadd_up_to_100_comments_to_a_purchase_order
    • Removedadd_up_to_100_comments_to_a_receipt
    • Removedadd_up_to_100_comments_to_a_shipment
    • Removedadd_up_to_100_comments_to_a_transfer
    • Removedadd_up_to_100_comments_to_an_adjustment
    • Removedadd_values_to_custom_field
    • Removedadd_wage_override
    • Removedadds_a_line_item_to_an_inter_project_transfer
    • Removedadds_a_single_attachment_to_a_receipt_resource
    • Removedadds_a_single_line_item_to_a_draft_receipt
    • Removedadds_a_single_line_item_to_an_existing_transfer_document
    • Removedadds_attachment_s_to_a_direct_issue
    • Removedadds_attachments_to_a_defect_resource
    • Removedadds_attachments_to_a_material_requirements_resource
    • Removedadds_attachments_to_a_material_resource
    • Removedadds_attachments_to_a_purchase_order_resource
    • Removedadds_attachments_to_a_receipt_resource
    • Removedadds_attachments_to_a_shipment_resource
    • Removedadds_attachments_to_a_transfer
    • Removedadds_attachments_to_an_inter_project_transfer
    • Removedadds_bulk_line_items_to_a_shipment_from_a_purchase_order
    • Removedadds_comments_to_a_defect_resource
    • Removedadds_comments_to_a_material_requirements_resource
    • Removedadds_comments_to_an_inter_project_transfer
    • Removedadds_existing_labels_to_specified_resources
    • Removedadds_line_items_to_an_existing_direct_issue
    • Removedadds_multiple_line_items_to_a_draft_receipt_in_bulk
    • Removedadds_new_line_items_to_an_existing_adjustment_document
    • Removedadds_one_or_more_attachments_to_an_adjustment_document
    • Removedassign_the_attribute_items_to_the_wbs_codes
    • Removedassociate_equipment_with_project_company
    • Removedassociate_equipment_with_project_project
    • Removedbatch_get_model_manager_viewpoints_by_uuid_rest_v2_0_issue
    • Removedbatch_update_correspondence_type_items
    • Removedbatch_update_generic_tool_items
    • Removedbatch_update_rfis
    • Removedbid_level_across_a_bid_form
    • Removedbulk_activation
    • Removedbulk_add_company_users_to_projects
    • Removedbulk_create_action_plan_item_assignees
    • Removedbulk_create_action_plan_references
    • Removedbulk_create_action_plan_template_approvers
    • Removedbulk_create_action_plan_template_item_assignees_company
    • Removedbulk_create_action_plan_template_item_assignees_project
    • Removedbulk_create_action_plan_template_receivers
    • Removedbulk_create_action_plan_template_references
    • Removedbulk_create_action_plan_template_test_record_requests_company
    • Removedbulk_create_action_plan_template_test_record_requests_project
    • Removedbulk_create_action_plan_test_record_requests
    • Removedbulk_create_action_plans_for_assets
    • Removedbulk_create_action_plans_for_locations
    • Removedbulk_create_actual_production_quantities
    • Removedbulk_create_bid_forms
    • Removedbulk_create_checklist_inspections_item_attachments
    • Removedbulk_create_company_webhooks_triggers
    • Removedbulk_create_custom_field_lov_entries
    • Removedbulk_create_document_revisions
    • Removedbulk_create_document_uploads
    • Removedbulk_create_equipment_timecard_entries
    • Removedbulk_create_field_rules
    • Removedbulk_create_field_rules_project_scope
    • Removedbulk_create_groups_in_a_layer
    • Removedbulk_create_materials
    • Removedbulk_create_plan_template_references
    • Removedbulk_create_project_memberships
    • Removedbulk_create_project_timecard_entries
    • Removedbulk_create_project_webhooks_triggers
    • Removedbulk_create_time_and_material_equipment_logs
    • Removedbulk_create_time_and_material_timecards
    • Removedbulk_create_timecard_entries
    • Removedbulk_create_triggers
    • Removedbulk_create_update_ui_flags
    • Removedbulk_create_wbs_codes
    • Removedbulk_create_workflow_instances_company_public
    • Removedbulk_create_workflow_instances_project_public
    • Removedbulk_deactivation
    • Removedbulk_delete_attachments_company
    • Removedbulk_delete_attachments_project
    • Removedbulk_delete_attachments_project_asset_types
    • Removedbulk_delete_bim_model_revision_viewpoints
    • Removedbulk_delete_company_segment_items
    • Removedbulk_delete_company_webhooks_triggers
    • Removedbulk_delete_managed_equipment
    • Removedbulk_delete_managed_equipment_attachment
    • Removedbulk_delete_managed_equipment_maintenance_log_attachments
    • Removedbulk_delete_materials
    • Removedbulk_delete_procore_item_associations
    • Removedbulk_delete_project_segment_items
    • Removedbulk_delete_project_tasks
    • Removedbulk_delete_project_tasks_company
    • Removedbulk_delete_project_webhooks_triggers
    • Removedbulk_delete_specification_sections
    • Removedbulk_delete_time_and_material_attachments
    • Removedbulk_delete_time_and_material_equipment_logs
    • Removedbulk_delete_time_and_material_timecards
    • Removedbulk_delete_triggers
    • Removedbulk_destroy_action_plan_template_approvers
    • Removedbulk_destroy_action_plan_template_receivers
    • Removedbulk_destroy_actual_production_quantities
    • Removedbulk_edit_specification_sections
    • Removedbulk_remove_company_users_from_projects
    • Removedbulk_remove_current_project_project
    • Removedbulk_remove_project_details_for_company_users_on_projects
    • Removedbulk_remove_project_memberships
    • Removedbulk_retrieve_managed_equipment
    • Removedbulk_transition_defects_to_a_new_status
    • Removedbulk_update_action_plan_item
    • Removedbulk_update_action_plan_item_assignees
    • Removedbulk_update_action_plan_template_item_assignees
    • Removedbulk_update_action_plan_template_item_company
    • Removedbulk_update_action_plan_template_item_project
    • Removedbulk_update_actual_production_quantities
    • Removedbulk_update_affliction_types
    • Removedbulk_update_company_action_plan_template_item_assignees
    • Removedbulk_update_company_observation_templates
    • Removedbulk_update_contributing_behaviors
    • Removedbulk_update_contributing_conditions
    • Removedbulk_update_current_project_company
    • Removedbulk_update_current_project_project
    • Removedbulk_update_document_uploads
    • Removedbulk_update_equipment_company
    • Removedbulk_update_field_rules
    • Removedbulk_update_field_rules_project_scope
    • Removedbulk_update_for_specification_sets_for_a_project
    • Removedbulk_update_harm_sources
    • Removedbulk_update_hazards
    • Removedbulk_update_incident_action_types
    • Removedbulk_update_links
    • Removedbulk_update_managed_equipment_models
    • Removedbulk_update_managed_equipment_types
    • Removedbulk_update_materials
    • Removedbulk_update_project_details_for_company_users_on_projects
    • Removedbulk_update_project_observation_templates
    • Removedbulk_update_specification_section_revisions
    • Removedbulk_update_status_of_equipment_company
    • Removedbulk_update_status_of_equipment_project
    • Removedbulk_update_subcontractor_invoice_requisitions_items
    • Removedbulk_update_time_and_material_equipment_logs
    • Removedbulk_update_time_and_material_timecards
    • Removedbulk_update_timecard_entries
    • Removedbulk_update_wbs_codes
    • Removedbulk_update_work_activities
    • Removedbulk_updates_destination_for_multiple_line_items
    • Removedbulk_updates_for_daily_logs
    • Removedbulk_updates_line_items_on_a_single_shipment
    • Removedbulk_upsert_lov_codes_company
    • Removedbulk_upsert_lov_codes_project
    • Removedcalculate_number_of_inspections_to_create_based_on_schedule
    • Removedcalculate_when_the_first_inspection_of_an_inspection_schedule
    • Removedchange_history
    • Removedchange_history_of_specification_section_revision
    • Removedcheck_company_zone
    • Removedcheck_csv_export_status_for_commitment_change_order_rows
    • Removedcheck_csv_export_status_for_prime_change_order_rows
    • Removedcheck_if_number_and_revision_entered_are_available_or_duplicated
    • Removedcheck_pdf_generation_status_commitment_change_order_batches
    • Removedcheck_pdf_generation_status_commitment_change_orders
    • Removedcheck_pdf_generation_status_commitment_contracts
    • Removedcheck_pdf_generation_status_prime_change_order_batches
    • Removedcheck_pdf_generation_status_prime_change_orders
    • Removedcheck_pdf_generation_status_prime_contracts
    • Removedchecklist_schedule_assignee_filter_options
    • Removedchecklist_schedule_equipment_filter_options
    • Removedchecklist_schedule_inspection_template_filter_options
    • Removedchecklist_schedule_inspection_type_filter_options
    • Removedchecklist_schedule_location_filter_options
    • Removedclone_bid_board_project
    • Removedclone_change_event
    • Removedclones_daily_logs_from_one_date_to_another_date
    • Removedclose_and_distribute_a_submittal_log
    • Removedclose_checklist_inspection
    • Removedcompany_folder_and_file_index
    • Removedcompany_markup_indicators_by_items
    • Removedcomplete_company_upload
    • Removedcomplete_unified_upload
    • Removedconsolidates_inventory_of_a_material_from_multiple_locations
    • Removedconvert_private_layer_to_public
    • Removedcopy_from_standard_cost_code_list
    • Removedcopy_markups
    • Removedcopy_subset_from_standard_cost_code_list
    • Removedcreate_a_batch_of_bim_levels
    • Removedcreate_a_batch_of_bim_model_revision_plans
    • Removedcreate_a_batch_of_bim_model_revision_viewpoints
    • Removedcreate_a_batch_of_bim_plans
    • Removedcreate_a_batch_of_bim_view_folder_by_path
    • Removedcreate_a_batch_of_bim_viewpoints
    • Removedcreate_a_bid_form
    • Removedcreate_a_bim_viewpoint
    • Removedcreate_a_budget_change
    • Removedcreate_a_budget_lock
    • Removedcreate_a_budget_view_snapshot
    • Removedcreate_a_change_order_change_reason
    • Removedcreate_a_checklist_inspection_schedule
    • Removedcreate_a_company_action_plan_type
    • Removedcreate_a_company_wbs_segment
    • Removedcreate_a_compliance_document_purchase_order_contracts
    • Removedcreate_a_compliance_document_work_order_contracts
    • Removedcreate_a_coordination_issue_rest_v2_0
    • Removedcreate_a_copy_of_the_action_plan_item_in_the_items_section
    • Removedcreate_a_copy_of_the_action_plan_section_in_the_action_plan
    • Removedcreate_a_copy_of_the_action_plan_template_item_company
    • Removedcreate_a_copy_of_the_action_plan_template_item_project
    • Removedcreate_a_copy_of_the_action_plan_template_section_company
    • Removedcreate_a_copy_of_the_action_plan_template_section_project
    • Removedcreate_a_document_snapshot_on_a_coordination_issue_rest_v2_0
    • Removedcreate_a_job_title
    • Removedcreate_a_line_item_group_in_the_proposal_company
    • Removedcreate_a_line_item_group_in_the_proposal_project
    • Removedcreate_a_manual_forecast_line_item
    • Removedcreate_a_manual_hold_for_a_given_invoice
    • Removedcreate_a_model_manager_viewpoint_and_link_it_to_the_issue_rest
    • Removedcreate_a_new_budgeted_production_quantity
    • Removedcreate_a_new_classification
    • Removedcreate_a_new_company_level_context
    • Removedcreate_a_new_context
    • Removedcreate_a_new_crew
    • Removedcreate_a_new_equipment
    • Removedcreate_a_new_group
    • Removedcreate_a_new_layer
    • Removedcreate_a_new_maintenance_record_company
    • Removedcreate_a_new_maintenance_record_project
    • Removedcreate_a_new_time_and_material_entry
    • Removedcreate_a_new_time_and_material_equipment_log
    • Removedcreate_a_new_time_and_material_notification
    • Removedcreate_a_note_in_the_project
    • Removedcreate_a_note_in_the_project_company
    • Removedcreate_a_person
    • Removedcreate_a_piece_of_equipment
    • Removedcreate_a_project
    • Removedcreate_a_project_checklist_template_from_a_company_checklist
    • Removedcreate_a_project_logo
    • Removedcreate_a_proposal_in_the_project
    • Removedcreate_a_proposal_in_the_project_company
    • Removedcreate_a_resource_request_on_a_project
    • Removedcreate_a_response
    • Removedcreate_a_response_in_the_specified_item_response_set
    • Removedcreate_a_single_group
    • Removedcreate_a_specification_section
    • Removedcreate_a_specification_section_division
    • Removedcreate_a_task_item_comment
    • Removedcreate_a_wbs_code
    • Removedcreate_a_workflow_instance_company_public
    • Removedcreate_a_workflow_instance_project_public
    • Removedcreate_accident_log
    • Removedcreate_action
    • Removedcreate_action_plan
    • Removedcreate_action_plan_approver_signature
    • Removedcreate_action_plan_item
    • Removedcreate_action_plan_item_assignee
    • Removedcreate_action_plan_item_assignee_signature
    • Removedcreate_action_plan_receiver_signature
    • Removedcreate_action_plan_reference
    • Removedcreate_action_plan_section
    • Removedcreate_action_plan_template_approver
    • Removedcreate_action_plan_template_receiver
    • Removedcreate_action_plan_test_record
    • Removedcreate_action_plan_test_record_request
    • Removedcreate_action_plan_verification_methods
    • Removedcreate_actual_production_quantity
    • Removedcreate_advanced_export_for_existing_rfi
    • Removedcreate_affliction_type
    • Removedcreate_an_action_plan_from_a_plan_template
    • Removedcreate_an_electronic_signature
    • Removedcreate_an_equipment_make
    • Removedcreate_an_equipment_model
    • Removedcreate_an_equipment_type
    • Removedcreate_an_estimate_line_item_in_the_proposal_company
    • Removedcreate_an_estimate_line_item_in_the_proposal_project
    • Removedcreate_an_project_equipment_log
    • Removedcreate_and_update_bulk_coordination_issues
    • Removedcreate_app_configuration
    • Removedcreate_asset_company
    • Removedcreate_asset_project
    • Removedcreate_attachment
    • Removedcreate_attachment_actions
    • Removedcreate_attachment_lists
    • Removedcreate_attachment_time_and_material_entry_attachments
    • Removedcreate_attachment_witness_statements
    • Removedcreate_attachments_company
    • Removedcreate_attachments_project
    • Removedcreate_bid
    • Removedcreate_bid_board_project
    • Removedcreate_bid_package
    • Removedcreate_billing_period
    • Removedcreate_bim_file
    • Removedcreate_bim_geometry_file_bundle
    • Removedcreate_bim_level
    • Removedcreate_bim_mint_tokens
    • Removedcreate_bim_model
    • Removedcreate_bim_model_revision
    • Removedcreate_bim_model_revision_plan
    • Removedcreate_bim_plan
    • Removedcreate_bim_view_folder
    • Removedcreate_budget_line_item
    • Removedcreate_budget_modification
    • Removedcreate_calendar_item
    • Removedcreate_call_log
    • Removedcreate_catalog
    • Removedcreate_change_event
    • Removedcreate_change_event_comment
    • Removedcreate_change_event_production_quantity
    • Removedcreate_change_order_package
    • Removedcreate_change_order_request
    • Removedcreate_checklist
    • Removedcreate_checklist_comment
    • Removedcreate_checklist_inspection
    • Removedcreate_checklist_item_attachment
    • Removedcreate_checklist_item_response
    • Removedcreate_checklist_schedule_attachment
    • Removedcreate_checklist_section
    • Removedcreate_checklist_signature
    • Removedcreate_checklist_signature_request
    • Removedcreate_classification
    • Removedcreate_commitment_change_order
    • Removedcreate_commitment_change_order_batch
    • Removedcreate_commitment_change_order_line_item
    • Removedcreate_commitment_contract
    • Removedcreate_commitment_contract_line_item
    • Removedcreate_communication_tag
    • Removedcreate_company_action_plan_template_item
    • Removedcreate_company_action_plan_template_item_assignee
    • Removedcreate_company_action_plan_template_reference
    • Removedcreate_company_action_plan_template_section
    • Removedcreate_company_action_plan_template_test_record_request
    • Removedcreate_company_action_plan_templates
    • Removedcreate_company_checklist_template
    • Removedcreate_company_checklist_template_section
    • Removedcreate_company_classifications_for_project
    • Removedcreate_company_currency_configuration
    • Removedcreate_company_exchange_rates
    • Removedcreate_company_file
    • Removedcreate_company_file_version
    • Removedcreate_company_folder
    • Removedcreate_company_form_template
    • Removedcreate_company_inspection_template_item
    • Removedcreate_company_inspection_template_item_reference
    • Removedcreate_company_insurance
    • Removedcreate_company_level_email
    • Removedcreate_company_level_email_communication
    • Removedcreate_company_naming_standard_rule
    • Removedcreate_company_office
    • Removedcreate_company_person
    • Removedcreate_company_segment_item
    • Removedcreate_company_tag
    • Removedcreate_company_user_v1_0
    • Removedcreate_company_user_v1_3
    • Removedcreate_company_vendor
    • Removedcreate_company_vendor_business_register
    • Removedcreate_company_vendor_insurance
    • Removedcreate_company_webhooks_hook
    • Removedcreate_company_webhooks_triggers
    • Removedcreate_compliance_document
    • Removedcreate_configurable_field_sets
    • Removedcreate_contract_compliance_document
    • Removedcreate_contract_payment
    • Removedcreate_contributing_behavior
    • Removedcreate_contributing_condition
    • Removedcreate_coordination_issue
    • Removedcreate_coordination_issue_assignment
    • Removedcreate_cost_code
    • Removedcreate_cost_item
    • Removedcreate_csv_export_for_commitment_change_order_rows
    • Removedcreate_csv_export_for_prime_change_order_rows
    • Removedcreate_custom_field
    • Removedcreate_custom_field_definitions
    • Removedcreate_custom_field_metadata
    • Removedcreate_daily_construction_report_log
    • Removedcreate_delay_log
    • Removedcreate_delivery_log
    • Removedcreate_department
    • Removedcreate_direct_cost_item
    • Removedcreate_direct_cost_line_item
    • Removedcreate_document_custom_tag
    • Removedcreate_drawing
    • Removedcreate_drawing_area
    • Removedcreate_drawing_set
    • Removedcreate_drawing_upload
    • Removedcreate_dumpster_log
    • Removedcreate_email
    • Removedcreate_email_communication
    • Removedcreate_environmental
    • Removedcreate_equipment
    • Removedcreate_equipment_attachment_company
    • Removedcreate_equipment_attachment_project
    • Removedcreate_equipment_category
    • Removedcreate_equipment_category_company
    • Removedcreate_equipment_category_project
    • Removedcreate_equipment_company
    • Removedcreate_equipment_log_company
    • Removedcreate_equipment_log_project
    • Removedcreate_equipment_maintenance_log
    • Removedcreate_equipment_make_company
    • Removedcreate_equipment_make_project
    • Removedcreate_equipment_model_company
    • Removedcreate_equipment_model_project
    • Removedcreate_equipment_project
    • Removedcreate_equipment_status_company
    • Removedcreate_equipment_type_company
    • Removedcreate_equipment_type_project
    • Removedcreate_field_rule
    • Removedcreate_field_rule_project_scope
    • Removedcreate_form
    • Removedcreate_generic_tool
    • Removedcreate_generic_tool_item
    • Removedcreate_generic_tool_item_response
    • Removedcreate_generic_tool_status
    • Removedcreate_gps_position
    • Removedcreate_group_and_move_markups
    • Removedcreate_harm_source
    • Removedcreate_hazard
    • Removedcreate_image
    • Removedcreate_image_category
    • Removedcreate_incident
    • Removedcreate_incident_action_type
    • Removedcreate_injury
    • Removedcreate_inspection_log
    • Removedcreate_inspection_type
    • Removedcreate_installation_request
    • Removedcreate_instruction_types
    • Removedcreate_instructions
    • Removedcreate_item_response_set
    • Removedcreate_line_item_type
    • Removedcreate_line_items_and_line_item_groups_in_bulk_company
    • Removedcreate_line_items_and_line_item_groups_in_bulk_to_the_project
    • Removedcreate_link
    • Removedcreate_location
    • Removedcreate_location_admin
    • Removedcreate_lookahead
    • Removedcreate_lookahead_task
    • Removedcreate_maintenance_log_attachment
    • Removedcreate_manpower_log
    • Removedcreate_material
    • Removedcreate_meeting
    • Removedcreate_meeting_attendee_record
    • Removedcreate_meeting_category
    • Removedcreate_meeting_project
    • Removedcreate_meeting_topic
    • Removedcreate_meeting_topic_project
    • Removedcreate_monitoring_resource
    • Removedcreate_near_miss
    • Removedcreate_new_delay_log_type
    • Removedcreate_new_sub_cost_catalog
    • Removedcreate_notes_log
    • Removedcreate_observation_item
    • Removedcreate_observation_item_response_log
    • Removedcreate_or_find_bim_view_folder_by_path
    • Removedcreate_or_update_incident_alert_recipient
    • Removedcreate_payment_application_owner_invoice_for_prime_contract
    • Removedcreate_pdf_export_for_a_commitment_change_order
    • Removedcreate_pdf_export_for_a_commitment_change_order_batch
    • Removedcreate_pdf_export_for_a_prime_change_order
    • Removedcreate_pdf_export_for_a_prime_change_order_batch
    • Removedcreate_pdf_export_for_a_prime_contract
    • Removedcreate_pdf_export_for_commitment_contracts
    • Removedcreate_pdf_template_config
    • Removedcreate_permission_template
    • Removedcreate_plan_revision_log
    • Removedcreate_potential_change_order
    • Removedcreate_potential_change_order_line_item
    • Removedcreate_prime_change_order
    • Removedcreate_prime_change_order_batch
    • Removedcreate_prime_change_order_line_item
    • Removedcreate_prime_contract
    • Removedcreate_prime_contract_line_item
    • Removedcreate_prime_contract_line_item_project
    • Removedcreate_prime_contract_project
    • Removedcreate_procore_item_association
    • Removedcreate_productivity_log
    • Removedcreate_program
    • Removedcreate_project
    • Removedcreate_project_action_plan_template_reference
    • Removedcreate_project_bid_type
    • Removedcreate_project_checklist_template
    • Removedcreate_project_currency_configuration
    • Removedcreate_project_distribution_group
    • Removedcreate_project_equipment_maintenance_log
    • Removedcreate_project_exchange_rates
    • Removedcreate_project_file
    • Removedcreate_project_file_version
    • Removedcreate_project_folder
    • Removedcreate_project_inspection_template_item_reference
    • Removedcreate_project_insurance
    • Removedcreate_project_membership
    • Removedcreate_project_naming_standard_rule
    • Removedcreate_project_observation_type
    • Removedcreate_project_owner_type
    • Removedcreate_project_person
    • Removedcreate_project_region
    • Removedcreate_project_role
    • Removedcreate_project_segment_item
    • Removedcreate_project_stage
    • Removedcreate_project_task
    • Removedcreate_project_task_company
    • Removedcreate_project_type
    • Removedcreate_project_upload
    • Removedcreate_project_user
    • Removedcreate_project_vendor
    • Removedcreate_project_vendor_insurance
    • Removedcreate_project_webhooks_hook
    • Removedcreate_project_webhooks_triggers
    • Removedcreate_property_damage
    • Removedcreate_punch_item
    • Removedcreate_punch_item_comment
    • Removedcreate_punch_item_type
    • Removedcreate_purchase_order_contract
    • Removedcreate_purchase_order_contract_detail_line_item
    • Removedcreate_purchase_order_contract_line_item
    • Removedcreate_quantity_log
    • Removedcreate_reinspections
    • Removedcreate_requested_change
    • Removedcreate_requisition_subcontractor_invoices_for_commitment
    • Removedcreate_resource
    • Removedcreate_resource_project
    • Removedcreate_rfi
    • Removedcreate_rfi_reply
    • Removedcreate_rfq
    • Removedcreate_rfq_quote
    • Removedcreate_rfq_response
    • Removedcreate_rounding_configuration
    • Removedcreate_safety_violation_log
    • Removedcreate_signature_for_time_and_material_entry
    • Removedcreate_signature_for_timesheet_company
    • Removedcreate_signature_for_timesheet_project
    • Removedcreate_specification_area
    • Removedcreate_specification_section_division_for_a_project
    • Removedcreate_specification_section_for_a_project
    • Removedcreate_specification_set
    • Removedcreate_specification_upload
    • Removedcreate_standard_cost_code
    • Removedcreate_standard_cost_code_list
    • Removedcreate_sub_job
    • Removedcreate_submittal
    • Removedcreate_submittal_response
    • Removedcreate_submittals_from_specs
    • Removedcreate_support_pin
    • Removedcreate_task
    • Removedcreate_task_item
    • Removedcreate_tax_code
    • Removedcreate_tax_type
    • Removedcreate_time_and_material_timecard
    • Removedcreate_time_off_for_a_person
    • Removedcreate_timecard_entry
    • Removedcreate_timecard_entry_company
    • Removedcreate_timecard_entry_project
    • Removedcreate_timecard_entry_project_2
    • Removedcreate_timeline_event
    • Removedcreate_timesheet
    • Removedcreate_timesheet_to_budget_configuration
    • Removedcreate_todo
    • Removedcreate_trade
    • Removedcreate_unified_company_upload
    • Removedcreate_unified_upload
    • Removedcreate_unit_of_measure
    • Removedcreate_unmanaged_equipment_project
    • Removedcreate_viewpoint_and_procore_item_association
    • Removedcreate_visitor_log
    • Removedcreate_waste_log
    • Removedcreate_wbs_attribute_item
    • Removedcreate_wbs_attribute_items_in_bulk
    • Removedcreate_wbs_attributes
    • Removedcreate_weather_log_v1_0
    • Removedcreate_weather_log_v1_1
    • Removedcreate_webhooks_hook
    • Removedcreate_webhooks_trigger
    • Removedcreate_witness_statement
    • Removedcreate_work_activity
    • Removedcreate_work_log
    • Removedcreate_work_order_contract
    • Removedcreate_work_order_contract_detail_line_item
    • Removedcreate_work_order_contract_line_item
    • Removedcreate_workflow_activity_history
    • Removedcreate_workflow_bulk_replace_request
    • Removedcreates_a_container_from_shipment_line_items
    • Removedcreates_a_inspection_item_signature_request
    • Removedcreates_a_inspection_item_signature_request_signature
    • Removedcreates_a_new_adjustment_document
    • Removedcreates_a_new_condition_for_a_specific_line_item_in_a_receipt
    • Removedcreates_a_new_direct_issue_document
    • Removedcreates_a_new_inter_project_transfer
    • Removedcreates_a_new_receipt
    • Removedcreates_a_new_shipment
    • Removedcreates_a_new_stand_alone_transfer
    • Removedcreates_an_inspection_item_comment
    • Removedcreates_new_labels_in_the_specified_company_and_project
    • Removedcreates_or_updates_a_budget_note_for_a_budget_or_a_forecasting
    • Removedcreates_or_updates_project_date
    • Removedcreates_requested_change
    • Removeddelete_a_budget_change
    • Removeddelete_a_budgeted_production_quantity
    • Removeddelete_a_change_order_change_reason
    • Removeddelete_a_classification
    • Removeddelete_a_company_action_plan_templates
    • Removeddelete_a_company_office
    • Removeddelete_a_compliance_document_purchase_order_contracts
    • Removeddelete_a_compliance_document_work_order_contracts
    • Removeddelete_a_coordination_issue_rest_v2_0
    • Removeddelete_a_crew
    • Removeddelete_a_direct_cost_line_item
    • Removeddelete_a_document_snapshot_from_a_coordination_issue_rest_v2_0
    • Removeddelete_a_drawing_area
    • Removeddelete_a_equipment_type
    • Removeddelete_a_job_title
    • Removeddelete_a_line_item_group_from_the_proposal_company
    • Removeddelete_a_line_item_group_from_the_proposal_project
    • Removeddelete_a_link
    • Removeddelete_a_lov_code_company
    • Removeddelete_a_lov_code_project
    • Removeddelete_a_maintenance_record_by_id
    • Removeddelete_a_maintenance_record_by_id_project
    • Removeddelete_a_manual_forecast_line_item
    • Removeddelete_a_note_from_the_project
    • Removeddelete_a_note_from_the_project_company
    • Removeddelete_a_payment_application_owner_invoice
    • Removeddelete_a_person
    • Removeddelete_a_prime_contract_line_item
    • Removeddelete_a_proposal_from_the_project
    • Removeddelete_a_proposal_from_the_project_company
    • Removeddelete_a_resource_planning_tag
    • Removeddelete_a_resource_request
    • Removeddelete_a_response
    • Removeddelete_a_signature
    • Removeddelete_a_single_group
    • Removeddelete_a_single_project
    • Removeddelete_a_task_item_comment
    • Removeddelete_a_time_and_material_attachment
    • Removeddelete_a_time_and_material_entry
    • Removeddelete_a_time_and_material_equipment_log
    • Removeddelete_a_time_and_material_notification
    • Removeddelete_a_time_off_record
    • Removeddelete_accident_log
    • Removeddelete_action_plan
    • Removeddelete_action_plan_approver_signature
    • Removeddelete_action_plan_item
    • Removeddelete_action_plan_item_assignee
    • Removeddelete_action_plan_item_assignee_signature
    • Removeddelete_action_plan_receiver_signature
    • Removeddelete_action_plan_reference
    • Removeddelete_action_plan_section
    • Removeddelete_action_plan_template_approver
    • Removeddelete_action_plan_template_receiver
    • Removeddelete_action_plan_test_record
    • Removeddelete_action_plan_test_record_request
    • Removeddelete_action_plan_verification_method
    • Removeddelete_actual_production_quantity
    • Removeddelete_affliction_type
    • Removeddelete_an_attachment_for_a_project_asset_type
    • Removeddelete_an_equipment
    • Removeddelete_an_equipment_make
    • Removeddelete_an_equipment_model
    • Removeddelete_an_estimate_line_item_from_the_proposal_company
    • Removeddelete_an_estimate_line_item_from_the_proposal_project
    • Removeddelete_an_inspection_item_attachment
    • Removeddelete_an_project_equipment_log
    • Removeddelete_an_rfi_response
    • Removeddelete_app_configuration
    • Removeddelete_asset_company
    • Removeddelete_asset_project
    • Removeddelete_attachment_company
    • Removeddelete_attachment_project
    • Removeddelete_bid_board_project
    • Removeddelete_bid_form
    • Removeddelete_bid_form_item
    • Removeddelete_bid_form_section
    • Removeddelete_billing_period
    • Removeddelete_bim_file
    • Removeddelete_bim_level
    • Removeddelete_bim_model
    • Removeddelete_bim_model_revision
    • Removeddelete_bim_model_revision_plan
    • Removeddelete_bim_model_revision_viewpoint
    • Removeddelete_bim_plan
    • Removeddelete_budget_line_item
    • Removeddelete_budget_lock
    • Removeddelete_budget_modification
    • Removeddelete_bulk_coordination_issues
    • Removeddelete_calendar_item
    • Removeddelete_call_log
    • Removeddelete_catalog
    • Removeddelete_category
    • Removeddelete_change_event
    • Removeddelete_change_event_comment
    • Removeddelete_change_event_production_quantity
    • Removeddelete_checklist
    • Removeddelete_checklist_inspection
    • Removeddelete_checklist_inspections_item_attachment
    • Removeddelete_checklist_item_response
    • Removeddelete_checklist_schedule
    • Removeddelete_checklist_schedule_attachment
    • Removeddelete_checklist_section
    • Removeddelete_checklist_signature
    • Removeddelete_checklist_signature_request
    • Removeddelete_classification
    • Removeddelete_commitment_change_order
    • Removeddelete_commitment_change_order_batch
    • Removeddelete_commitment_change_order_line_item
    • Removeddelete_commitment_contract
    • Removeddelete_commitment_contract_line_item
    • Removeddelete_company_action_plan_template_item_assignee
    • Removeddelete_company_action_plan_template_reference
    • Removeddelete_company_action_plan_template_test_record_request
    • Removeddelete_company_action_plan_type
    • Removeddelete_company_checklist_section
    • Removeddelete_company_checklist_template
    • Removeddelete_company_currency_configuration
    • Removeddelete_company_file
    • Removeddelete_company_folder
    • Removeddelete_company_form_template
    • Removeddelete_company_inspection_template_item
    • Removeddelete_company_inspection_template_item_reference
    • Removeddelete_company_insurance
    • Removeddelete_company_level_context_by_id
    • Removeddelete_company_logo
    • Removeddelete_company_naming_standard_rule
    • Removeddelete_company_role
    • Removeddelete_company_segment_item
    • Removeddelete_company_vendor_insurance
    • Removeddelete_company_webhooks_hook
    • Removeddelete_company_webhooks_trigger
    • Removeddelete_configurable_field_set
    • Removeddelete_context_by_id
    • Removeddelete_context_by_query_parameters
    • Removeddelete_contract_compliance_document
    • Removeddelete_contract_payment
    • Removeddelete_contributing_behavior
    • Removeddelete_contributing_condition
    • Removeddelete_coordination_issue
    • Removeddelete_coordination_issue_attachment
    • Removeddelete_coordination_issue_workflow_issue
    • Removeddelete_cost_item
    • Removeddelete_cost_items
    • Removeddelete_custom_field
    • Removeddelete_custom_field_definition
    • Removeddelete_daily_construction_report_log
    • Removeddelete_delay_log
    • Removeddelete_delivery_log
    • Removeddelete_department
    • Removeddelete_direct_cost_item
    • Removeddelete_document_custom_tag
    • Removeddelete_drawing_set
    • Removeddelete_drawing_upload
    • Removeddelete_dumpster_log
    • Removeddelete_equipment
    • Removeddelete_equipment_attachment_company
    • Removeddelete_equipment_attachment_project
    • Removeddelete_equipment_category
    • Removeddelete_equipment_category_company
    • Removeddelete_equipment_company
    • Removeddelete_equipment_log
    • Removeddelete_equipment_maintenance_log
    • Removeddelete_equipment_make_company
    • Removeddelete_equipment_model_company
    • Removeddelete_equipment_status_company
    • Removeddelete_equipment_timecard_entry_project
    • Removeddelete_equipment_type_company
    • Removeddelete_field_rule
    • Removeddelete_field_rule_project_scope
    • Removeddelete_form
    • Removeddelete_from_project
    • Removeddelete_generic_tool_item
    • Removeddelete_generic_tool_status
    • Removeddelete_group
    • Removeddelete_harm_source
    • Removeddelete_hazard
    • Removeddelete_image
    • Removeddelete_image_category
    • Removeddelete_incident
    • Removeddelete_incident_action_type
    • Removeddelete_incident_alert_recipient
    • Removeddelete_inspection_log
    • Removeddelete_inspection_type
    • Removeddelete_instruction
    • Removeddelete_instruction_type
    • Removeddelete_item_response_set
    • Removeddelete_layer
    • Removeddelete_link
    • Removeddelete_location
    • Removeddelete_lookahead
    • Removeddelete_lookahead_task
    • Removeddelete_managed_equipment_attachment
    • Removeddelete_managed_equipment_maintenance_log_attachment
    • Removeddelete_manpower_log
    • Removeddelete_markups
    • Removeddelete_material
    • Removeddelete_meeting
    • Removeddelete_meeting_attendee_record
    • Removeddelete_meeting_category
    • Removeddelete_meeting_project
    • Removeddelete_monitoring_resource
    • Removeddelete_multiple_signatures
    • Removeddelete_notes_log
    • Removeddelete_observation_item
    • Removeddelete_pdf_template_config
    • Removeddelete_plan_revision_log
    • Removeddelete_potential_change_order_line_item
    • Removeddelete_prime_change_order
    • Removeddelete_prime_change_order_batch
    • Removeddelete_prime_change_order_line_item
    • Removeddelete_prime_contract
    • Removeddelete_prime_contract_line_item
    • Removeddelete_prime_contract_project
    • Removeddelete_procore_item_association
    • Removeddelete_productivity_log
    • Removeddelete_program
    • Removeddelete_project_action_plan_template_reference
    • Removeddelete_project_bid_type
    • Removeddelete_project_checklist_template
    • Removeddelete_project_currency_configuration
    • Removeddelete_project_distribution_group
    • Removeddelete_project_equipment_maintenance_log
    • Removeddelete_project_file
    • Removeddelete_project_folder
    • Removeddelete_project_inspection_template_item_reference
    • Removeddelete_project_insurance
    • Removeddelete_project_location
    • Removeddelete_project_membership
    • Removeddelete_project_naming_standard_rule
    • Removeddelete_project_observation_type
    • Removeddelete_project_owner_type
    • Removeddelete_project_region
    • Removeddelete_project_role
    • Removeddelete_project_segment_item
    • Removeddelete_project_stage
    • Removeddelete_project_task
    • Removeddelete_project_task_company
    • Removeddelete_project_type
    • Removeddelete_project_vendor_insurance
    • Removeddelete_project_webhooks_hook
    • Removeddelete_project_webhooks_trigger
    • Removeddelete_punch_item
    • Removeddelete_punch_item_type
    • Removeddelete_purchase_order_contract
    • Removeddelete_purchase_order_contract_detail_line_item
    • Removeddelete_purchase_order_contract_line_item
    • Removeddelete_quantity_log
    • Removeddelete_requisition_compliance_document
    • Removeddelete_requisition_subcontractor_invoice
    • Removeddelete_resource
    • Removeddelete_resource_project
    • Removeddelete_rfq
    • Removeddelete_rounding_configuration
    • Removeddelete_safety_violation_log
    • Removeddelete_signature_time_and_material_entries
    • Removeddelete_signature_timesheets
    • Removeddelete_specification_area
    • Removeddelete_specification_area_transfer
    • Removeddelete_specification_upload
    • Removeddelete_stamp
    • Removeddelete_standard_cost_code
    • Removeddelete_sub_job
    • Removeddelete_subcategory
    • Removeddelete_submittal
    • Removeddelete_task
    • Removeddelete_tax_type
    • Removeddelete_the_project_logo
    • Removeddelete_time_and_material_timecard
    • Removeddelete_timecard_entries
    • Removeddelete_timecard_entry
    • Removeddelete_timecard_entry_company
    • Removeddelete_timecard_entry_project
    • Removeddelete_timeline_event
    • Removeddelete_timesheet
    • Removeddelete_timesheet_to_budget_configuration
    • Removeddelete_todo
    • Removeddelete_unit_of_measure
    • Removeddelete_viewpoint_and_procore_item_association
    • Removeddelete_visitor_log
    • Removeddelete_wage_override
    • Removeddelete_waste_log
    • Removeddelete_wbs_attribute_item
    • Removeddelete_wbs_attributes
    • Removeddelete_wbs_segment
    • Removeddelete_weather_log_v1_0
    • Removeddelete_weather_log_v1_1
    • Removeddelete_webhooks_hook
    • Removeddelete_webhooks_trigger
    • Removeddelete_work_activity
    • Removeddelete_work_log
    • Removeddelete_work_order_contract
    • Removeddelete_work_order_contract_detail_line_item
    • Removeddelete_work_order_contract_line_item
    • Removeddeletes_a_condition_from_a_receipt_line_item_and_adjusts_line
    • Removeddeletes_a_line_item_from_a_direct_issue_document
    • Removeddeletes_a_line_item_from_a_draft_shipment
    • Removeddeletes_a_line_item_from_a_draft_transfer
    • Removeddeletes_a_line_item_from_an_inter_project_transfer
    • Removeddeletes_a_material_requirement_line_item
    • Removeddeletes_a_purchase_order_and_optionally_its_resources
    • Removeddeletes_a_receipt_line_item
    • Removeddeletes_an_adjustment_line_item_from_an_adjustment_document
    • Removeddeletes_an_inspection_item_signature
    • Removeddeletes_an_inspection_item_signature_request
    • Removeddeletes_attachment_s_from_a_direct_issue
    • Removeddeletes_attachment_s_from_an_adjustment_resource
    • Removeddeletes_attachments_from_a_defect_resource
    • Removeddeletes_attachments_from_a_material_requirements_resource
    • Removeddeletes_attachments_from_a_material_resource
    • Removeddeletes_attachments_from_a_purchase_order_resource
    • Removeddeletes_attachments_from_a_receipt_resource
    • Removeddeletes_attachments_from_a_shipment_resource
    • Removeddeletes_attachments_from_a_transfer
    • Removeddeletes_attachments_from_an_inter_project_transfer
    • Removeddestroy_action
    • Removeddestroy_environmental
    • Removeddestroy_injury
    • Removeddestroy_near_miss
    • Removeddestroy_property_damage
    • Removeddestroy_specification_section_revision
    • Removeddestroy_task_item
    • Removeddestroy_witness_statement
    • Removeddisassociate_equipment_with_project_company
    • Removeddisassociate_equipment_with_project_project
    • Removeddocument_markup_permissions
    • Removeddownload_all_company_level_email_attachments
    • Removeddownload_all_email_attachments
    • Removeddownload_all_generic_tool_item_attachments
    • Removeddownload_all_response_attachments
    • Removeddownload_bulk_replace_request_errors_csv
    • Removeddownload_coordination_issues
    • Removeddownload_external_rfi_and_responses_attachments
    • Removeddownload_external_rfi_pdf_export
    • Removeddownload_log_of_specification_section_revision
    • Removeddownload_rfis_list
    • Removeddownload_schedule_file
    • Removeddownload_single_pdf_of_specification_section_revisions
    • Removeddownload_specification_section_revision
    • Removeddownload_zip_of_specification_section_revisions
    • Removeddraft_create
    • Removedduplicate_a_configurable_field_set_and_its_custom_fields
    • Removededit_a_timecard_entry
    • Removedemail_a_time_and_material_entry
    • Removedenable_a_person_to_log_in
    • Removedexport_company_level_email_communication
    • Removedexport_company_time_index_to_csv
    • Removedexport_email_communication_to_pdf
    • Removedexport_forms_with_bids
    • Removedfetch_active_support_pin
    • Removedfetch_attachment_by_id_company
    • Removedfetch_attachment_by_id_project
    • Removedfind_configurable_field_set_by_index
    • Removedfind_or_create_an_annotated_document
    • Removedfind_or_create_location_s_by_path
    • Removedfinds_or_creates_a_inspection_item_signature_request
    • Removedgenerates_pdf_document
    • Removedget_a_groups_projects
    • Removedget_a_list_of_inspection_item_evidence_configurations
    • Removedget_a_list_of_inspection_item_signature_requests
    • Removedget_a_list_of_possible_assignees_for_an_rfi
    • Removedget_a_list_of_possible_rfi_managers_for_an_rfi
    • Removedget_a_list_of_possible_timesheet_creator_ids
    • Removedget_a_list_of_possible_timesheet_creators
    • Removedget_a_single_group
    • Removedget_a_single_job_title
    • Removedget_a_single_person
    • Removedget_a_single_project
    • Removedget_a_single_resource_planning_tag
    • Removedget_a_workflow_instance_company
    • Removedget_a_workflow_instance_project
    • Removedget_a_workflow_template_version
    • Removedget_accessible_groups_for_authenticated_user_by_context
    • Removedget_accessible_layers_for_authenticated_user_by_context
    • Removedget_active_reinspection
    • Removedget_activity_by_id
    • Removedget_activity_link_by_id
    • Removedget_adjustment_and_adjustment_line_items_of_a_project
    • Removedget_advanced_forecasting_rows_of_a_project
    • Removedget_affected_body_part_filter_options
    • Removedget_affected_body_parts
    • Removedget_affected_company_filter_options_environmentals
    • Removedget_affected_company_filter_options_injuries
    • Removedget_affected_company_filter_options_near_misses
    • Removedget_affected_company_filter_options_property_damages
    • Removedget_affected_parties_filter_options_injuries
    • Removedget_affected_parties_filter_options_near_misses
    • Removedget_affected_persons_filter_options_injuries
    • Removedget_affected_persons_filter_options_near_misses
    • Removedget_affliction_type_filter_options
    • Removedget_all_attachments_for_equipment_company
    • Removedget_all_attachments_for_equipment_project
    • Removedget_all_bid_board_projects
    • Removedget_all_company_groups
    • Removedget_all_configurable_columns_for_adjustments
    • Removedget_all_configurable_columns_for_defects
    • Removedget_all_configurable_columns_for_materials
    • Removedget_all_configurable_columns_material_requirements
    • Removedget_all_configurable_columns_purchase_orders
    • Removedget_all_configurable_columns_shipments
    • Removedget_all_configurable_columns_transfers
    • Removedget_all_custom_fields
    • Removedget_all_defect_line_items
    • Removedget_all_defects
    • Removedget_all_equipment_categories_company
    • Removedget_all_equipment_categories_project
    • Removedget_all_equipment_company
    • Removedget_all_equipment_ids_company
    • Removedget_all_equipment_maintenance_records_company
    • Removedget_all_equipment_maintenance_records_project
    • Removedget_all_equipment_makes_company
    • Removedget_all_equipment_makes_project
    • Removedget_all_equipment_models_company
    • Removedget_all_equipment_models_project
    • Removedget_all_equipment_statuses_company
    • Removedget_all_equipment_statuses_project
    • Removedget_all_equipment_types_company
    • Removedget_all_equipment_types_project
    • Removedget_all_estimating_projects
    • Removedget_all_job_titles_belonging_to_a_group
    • Removedget_all_job_titles_in_the_company
    • Removedget_all_line_items_for_a_specific_purchase_order
    • Removedget_all_line_items_for_a_specific_shipment
    • Removedget_all_materials
    • Removedget_all_people_belonging_to_a_company
    • Removedget_all_people_belonging_to_a_group
    • Removedget_all_properties_for_a_resource_company
    • Removedget_all_properties_for_a_resource_inter_project_transfers
    • Removedget_all_properties_for_a_resource_project_adjustments
    • Removedget_all_properties_for_a_resource_project_defects
    • Removedget_all_properties_for_a_resource_project_issuing
    • Removedget_all_properties_for_a_resource_project_material_requirements
    • Removedget_all_properties_for_a_resource_project_materials
    • Removedget_all_properties_for_a_resource_project_purchase_orders
    • Removedget_all_properties_for_a_resource_project_receipts
    • Removedget_all_properties_for_a_resource_project_shipments
    • Removedget_all_properties_for_a_resource_project_transfers
    • Removedget_all_properties_for_adjustments
    • Removedget_all_properties_for_defects
    • Removedget_all_properties_for_issuing
    • Removedget_all_properties_for_materials
    • Removedget_all_properties_material_requirements
    • Removedget_all_properties_purchase_orders
    • Removedget_all_properties_shipments
    • Removedget_all_properties_transfers
    • Removedget_all_purchase_order_line_items
    • Removedget_all_purchase_orders
    • Removedget_all_resource_planning_tag_for_a_company
    • Removedget_all_resource_planning_tag_for_a_group
    • Removedget_all_resource_requests_for_a_single_project
    • Removedget_all_resource_requests_for_projects_in_a_single_group
    • Removedget_all_resource_requests_in_a_company
    • Removedget_all_shipment_line_items
    • Removedget_all_shipments
    • Removedget_all_time_off_for_a_single_person
    • Removedget_asset_naming_fields_company
    • Removedget_asset_naming_fields_project
    • Removedget_assignee_filter_options
    • Removedget_attachment_for_project_asset_type
    • Removedget_bid_board_project_by_id
    • Removedget_bid_board_project_custom_fields
    • Removedget_budget_note
    • Removedget_budget_view_options
    • Removedget_bulk_company_workflowable_object_instance_histories
    • Removedget_bulk_project_workflowable_object_instance_histories
    • Removedget_bulk_users_async_job_status
    • Removedget_calendar_by_id_v2_1
    • Removedget_catalogs
    • Removedget_change_event_settings
    • Removedget_change_history_for_a_direct_issuing
    • Removedget_change_history_for_a_material
    • Removedget_change_history_for_a_purchase_order
    • Removedget_change_history_for_a_shipment
    • Removedget_change_history_for_a_transfer
    • Removedget_change_history_for_an_adjustment
    • Removedget_client_configuration_for_specification_sections
    • Removedget_company_assignments
    • Removedget_company_currency_configuration
    • Removedget_company_exchange_rates
    • Removedget_company_level_context_by_id
    • Removedget_company_level_contexts
    • Removedget_company_level_groups
    • Removedget_company_level_layer_structure
    • Removedget_company_level_layers
    • Removedget_company_naming_standard_rules
    • Removedget_company_part_upload_url
    • Removedget_company_snapshots_summary
    • Removedget_company_upload_status
    • Removedget_company_workflowable_object_instance_histories
    • Removedget_complete_layer_structure
    • Removedget_configurable_field_sets_company
    • Removedget_configuration_for_uom_master_list
    • Removedget_context_by_id
    • Removedget_contexts
    • Removedget_contract_compliance_document
    • Removedget_contracts_invoice_configuration
    • Removedget_contributing_behavior_filter_options
    • Removedget_contributing_condition_filter_options
    • Removedget_cost_item
    • Removedget_cost_items
    • Removedget_current_company_assignments
    • Removedget_custom_field_data_types
    • Removedget_daily_log_headers_for_the_project
    • Removedget_defect_by_id
    • Removedget_defect_header_by_id
    • Removedget_defect_line_items_by_defect_id
    • Removedget_details_of_a_single_attachment_for_a_defect_resource
    • Removedget_details_of_an_attachment_for_a_direct_issue
    • Removedget_details_of_an_attachment_for_a_material
    • Removedget_details_of_an_attachment_for_a_purchase_order
    • Removedget_details_of_an_attachment_for_a_shipment
    • Removedget_details_of_an_attachment_for_a_transfer
    • Removedget_details_of_an_attachment_for_an_adjustment
    • Removedget_details_of_an_attachment_for_an_inter_project_transfer
    • Removedget_details_of_attachments_for_a_direct_issue
    • Removedget_details_of_attachments_for_a_material
    • Removedget_details_of_attachments_for_a_purchase_order
    • Removedget_details_of_attachments_for_a_shipment
    • Removedget_details_of_attachments_for_a_transfer
    • Removedget_details_of_attachments_for_an_adjustment
    • Removedget_details_of_attachments_for_an_inter_project_transfer
    • Removedget_details_of_issuing_records_summary
    • Removedget_details_of_one_or_more_attachments_for_a_defect_resource
    • Removedget_divisions_and_sets_options_for_specification_sections
    • Removedget_environmental_type_filter_options
    • Removedget_equipment_by_id_company
    • Removedget_equipment_by_id_project
    • Removedget_equipment_by_project_project
    • Removedget_equipment_change_history_company
    • Removedget_equipment_ids_by_project_project
    • Removedget_equipment_maintenance_record_by_its_id_company
    • Removedget_equipment_maintenance_record_by_its_id_project
    • Removedget_equipment_projects_company
    • Removedget_estimating_project_data_by_procore_project_id
    • Removedget_estimating_settings
    • Removedget_export_options_for_existing_rfi
    • Removedget_file_by_its_uuid
    • Removedget_filing_type_filter_options
    • Removedget_filing_types
    • Removedget_group_assignments
    • Removedget_group_by_id
    • Removedget_groups
    • Removedget_groups_for_layer
    • Removedget_harm_source_filter_options_injuries
    • Removedget_harm_source_filter_options_near_misses
    • Removedget_hazard_filter_options
    • Removedget_import_logs
    • Removedget_import_status
    • Removedget_incident_statuses
    • Removedget_information_of_a_budget_change
    • Removedget_issuing_line_items
    • Removedget_layer_by_id
    • Removedget_layers
    • Removedget_layers_for_context
    • Removedget_line_items_for_a_transfer
    • Removedget_list_of_deleted_specification_sections_for_a_project
    • Removedget_list_of_deleted_specification_sections_specification_areas
    • Removedget_location_filter_options
    • Removedget_look_ahead_data
    • Removedget_managed_equipment_filter_options_environmentals
    • Removedget_managed_equipment_filter_options_injuries
    • Removedget_managed_equipment_filter_options_near_misses
    • Removedget_managed_equipment_filter_options_property_damages
    • Removedget_markup_stamp
    • Removedget_markups_by_groups
    • Removedget_material_details_by_id
    • Removedget_meeting_change_history
    • Removedget_my_open_items_statistics
    • Removedget_next_available_number
    • Removedget_next_available_number_by_spec_section
    • Removedget_observation_item_pdf_url
    • Removedget_one_coordination_issue_viewpoint_model_manager_or_legacy
    • Removedget_open_items_statistics
    • Removedget_operation_details
    • Removedget_or_create_company_level_context_with_hierarchy
    • Removedget_or_create_context_with_hierarchy
    • Removedget_or_create_document_info
    • Removedget_paginated_receipt_details
    • Removedget_paginated_receipt_line_items
    • Removedget_paginated_receipt_line_items_for_a_receipt_with_specified_id
    • Removedget_permission_level_options
    • Removedget_permissions_and_feature_flags_for_specification_sections
    • Removedget_person_assignments
    • Removedget_persons_assignment_history_data
    • Removedget_procore_default_fieldsets_configuration_company
    • Removedget_procore_default_fieldsets_configuration_project
    • Removedget_project_assignments
    • Removedget_project_budget_view_options
    • Removedget_project_currency_configuration
    • Removedget_project_exchange_rates
    • Removedget_project_incidents_configuration
    • Removedget_project_naming_standard_rules
    • Removedget_project_task_by_id
    • Removedget_project_task_by_id_company
    • Removedget_project_tasks
    • Removedget_project_tasks_company
    • Removedget_project_workflowable_object_instance_histories
    • Removedget_projects_assignment_history_data
    • Removedget_purchase_order_header_details
    • Removedget_receipt_change_history
    • Removedget_receipt_header_details_by_id
    • Removedget_receipt_properties
    • Removedget_requisition_compliance_document
    • Removedget_resource_planning_notification_profiles
    • Removedget_responsible_company_filter_options
    • Removedget_revisions
    • Removedget_schedule_by_id
    • Removedget_schedule_import_processing_state
    • Removedget_schedule_metadata
    • Removedget_shipment_header_details
    • Removedget_single_custom_field
    • Removedget_single_time_off_record
    • Removedget_stamps
    • Removedget_status_filter_options
    • Removedget_tags_requiring_action_report
    • Removedget_the_daily_log_header_via_date_or_id
    • Removedget_the_minutes_and_date_created_for_all_parent_topics
    • Removedget_the_minutes_and_date_created_for_all_parent_topics_project
    • Removedget_the_specifications_user_permissions
    • Removedget_timeline_event_by_id
    • Removedget_total_workers_and_man_hours
    • Removedget_unified_company_upload_url
    • Removedget_unified_part_upload_url
    • Removedget_unified_upload_status
    • Removedget_unified_upload_url
    • Removedget_units_of_measure
    • Removedget_unmanaged_equipment_project
    • Removedget_unreviewed_uploads_for_specification_areas
    • Removedget_unreviewed_uploads_for_specification_sections_for_a_project
    • Removedget_vendors_for_a_company
    • Removedget_work_activity_filter_options_environmentals
    • Removedget_work_activity_filter_options_injuries
    • Removedget_work_activity_filter_options_near_misses
    • Removedget_work_activity_filter_options_property_damages
    • Removedget_workflow_data
    • Removedget_workflow_instance_history_company
    • Removedget_workflow_instance_history_project
    • Removedget_workflow_preset_company
    • Removedget_workflow_preset_project
    • Removedgets_a_direct_issue_record_by_id
    • Removedgets_a_paginated_list_of_adjustment_documents
    • Removedgets_a_paginated_list_of_adjustment_line_items
    • Removedgets_a_paginated_list_of_inter_project_transfer_line_items
    • Removedgets_a_paginated_list_of_inter_project_transfer_summaries
    • Removedgets_a_paginated_list_of_transfer_line_items_across_all
    • Removedgets_a_paginated_list_of_transfers_for_the_project
    • Removedgets_all_available_resource_types_in_the_system
    • Removedgets_all_line_items_for_a_direct_issue_record
    • Removedgets_all_material_requirements_line_items
    • Removedgets_associated_documents_for_a_purchase_order
    • Removedgets_change_history_for_a_defect
    • Removedgets_change_history_for_a_material_requirement
    • Removedgets_configurable_columns_for_inter_project_transfers
    • Removedgets_configurable_columns_for_the_issuing_resource
    • Removedgets_configurable_columns_for_the_receipt_view
    • Removedgets_details_of_a_single_attachment_for_a_material_requirements
    • Removedgets_details_of_a_single_attachment_for_a_receipt_resource
    • Removedgets_details_of_a_specific_material_requirements_header
    • Removedgets_details_of_attachments_for_a_material_requirements_resource
    • Removedgets_details_of_attachments_for_a_receipt_resource
    • Removedgets_documents_attached_to_bid_package
    • Removedgets_line_items_for_a_specific_adjustment_document
    • Removedgets_line_items_for_a_specific_inter_project_transfer
    • Removedgets_line_items_for_a_specific_material_requirements_document
    • Removedgets_material_requirements_based_on_the_specified_view_type
    • Removedgets_materials_with_name_and_unit_of_measure
    • Removedgets_properties_for_inter_project_transfers
    • Removedgets_related_documents_for_a_defect
    • Removedgets_related_documents_for_a_material
    • Removedgets_related_documents_for_a_material_requirement
    • Removedgets_related_documents_for_a_purchase_order
    • Removedgets_related_documents_for_a_receipt
    • Removedgets_related_documents_for_a_shipment
    • Removedgets_related_documents_for_receipts_by_dashboard_type
    • Removedgets_related_documents_for_shipments_by_dashboard_type
    • Removedgets_the_change_history_for_a_specific_inter_project_transfer
    • Removedgets_the_header_details_for_a_specific_adjustment_document
    • Removedgets_the_header_details_for_a_specific_inter_project_transfer
    • Removedgets_transfer_details_by_id_based_on_the_specified_view_type
    • Removedheader_info_for_specification_section_revision
    • Removedindex_bid_forms
    • Removedinitiate_schedule_import
    • Removeditem_scoped_document_markup_permissions
    • Removedlink_sub_assets_to_a_parent_asset_company
    • Removedlink_sub_assets_to_a_parent_asset_project
    • Removedlist_accepted_weather_conditions_daily_logs
    • Removedlist_accepted_weather_conditions_weather_logs
    • Removedlist_accident_logs
    • Removedlist_action_plan_approvers
    • Removedlist_action_plan_item_assignees
    • Removedlist_action_plan_items
    • Removedlist_action_plan_parties
    • Removedlist_action_plan_receivers
    • Removedlist_action_plan_references
    • Removedlist_action_plan_sections
    • Removedlist_action_plan_template_approvers
    • Removedlist_action_plan_template_item_assignees
    • Removedlist_action_plan_template_receivers
    • Removedlist_action_plan_test_record_requests
    • Removedlist_action_plan_test_records
    • Removedlist_action_plan_verification_methods
    • Removedlist_action_plans
    • Removedlist_actions
    • Removedlist_activities
    • Removedlist_activity_links
    • Removedlist_affliction_types
    • Removedlist_all_actual_production_quantities
    • Removedlist_all_attachments_company
    • Removedlist_all_attachments_project_v1_0
    • Removedlist_all_attachments_project_v2_0
    • Removedlist_all_available_permission_templates_for_a_project
    • Removedlist_all_classification
    • Removedlist_all_classifications
    • Removedlist_all_company_managed_equipment_user_permissions
    • Removedlist_all_connection_statuses_for_external_rfis_filter_options
    • Removedlist_all_direct_cost_line_items
    • Removedlist_all_equipment_categories
    • Removedlist_all_equipment_company
    • Removedlist_all_equipment_logs
    • Removedlist_all_equipment_makes
    • Removedlist_all_equipment_models
    • Removedlist_all_equipment_project
    • Removedlist_all_equipment_types
    • Removedlist_all_maintenance_logs_attachment
    • Removedlist_all_prime_contracts
    • Removedlist_all_project_budgeted_production_quantities
    • Removedlist_all_project_budgeted_production_quantity_ids
    • Removedlist_all_project_crew_ids
    • Removedlist_all_project_crews
    • Removedlist_all_project_equipment_ids
    • Removedlist_all_submittal_attachments_with_download_urls
    • Removedlist_all_time_and_material_entry
    • Removedlist_all_time_and_material_entry_configurable_field_sets
    • Removedlist_all_time_and_material_entry_matching_the_search_keyword
    • Removedlist_all_timesheets
    • Removedlist_alternative_response_sets
    • Removedlist_app_configurations
    • Removedlist_app_installations_app_installations
    • Removedlist_app_installations_installation_requests
    • Removedlist_asset_statuses_company
    • Removedlist_asset_statuses_project
    • Removedlist_asset_system_states
    • Removedlist_asset_types_company
    • Removedlist_asset_types_project
    • Removedlist_assets_company
    • Removedlist_assets_project
    • Removedlist_assignable_users
    • Removedlist_assignee_company_filter_options
    • Removedlist_assignee_filter_options
    • Removedlist_assignees_for_accessible_tasks
    • Removedlist_attachments_company
    • Removedlist_attachments_for_project_asset_type
    • Removedlist_attachments_project
    • Removedlist_available_checklist_item_types
    • Removedlist_available_external_rfi_filter_options
    • Removedlist_available_fields_for_rule_configuration
    • Removedlist_available_fields_for_rule_configuration_project_scope
    • Removedlist_available_filters_for_coordination_issues
    • Removedlist_available_observation_item_statuses_with_localized_labels
    • Removedlist_available_rfi_assigned_id_filter_options
    • Removedlist_available_rfi_ball_in_court_filter_options
    • Removedlist_available_rfi_cost_code_options
    • Removedlist_available_rfi_filters
    • Removedlist_available_rfi_prefix_stage_filter_options
    • Removedlist_available_rfi_priority_filter_options
    • Removedlist_available_rfi_received_from_filter_options
    • Removedlist_available_rfi_responsible_contractor_filter_options
    • Removedlist_available_rfi_rfi_manager_filter_options
    • Removedlist_available_rfi_status_filter_options
    • Removedlist_available_rfi_sub_job_filter_options
    • Removedlist_available_rfis_locations
    • Removedlist_available_status_transitions
    • Removedlist_available_statuses_for_external_rfis_filter_options
    • Removedlist_available_submittal_filters
    • Removedlist_bid_contacts
    • Removedlist_bid_packages_company
    • Removedlist_bid_packages_project
    • Removedlist_bid_uploads
    • Removedlist_bids_within_a_bid_package
    • Removedlist_bids_within_a_company
    • Removedlist_bids_within_a_project_v1_0
    • Removedlist_bids_within_a_project_v2_0
    • Removedlist_billing_periods
    • Removedlist_bim_file_extractions
    • Removedlist_bim_files
    • Removedlist_bim_levels
    • Removedlist_bim_model_change_history
    • Removedlist_bim_model_revision_objects
    • Removedlist_bim_model_revision_plans
    • Removedlist_bim_model_revision_properties
    • Removedlist_bim_model_revision_viewpoints
    • Removedlist_bim_model_revisions
    • Removedlist_bim_models
    • Removedlist_bim_plans
    • Removedlist_bim_property_file_objects
    • Removedlist_bim_property_file_properties
    • Removedlist_bim_view_folders
    • Removedlist_body_parts
    • Removedlist_budget_change_summaries
    • Removedlist_budget_detail_columns
    • Removedlist_budget_detail_filter_options
    • Removedlist_budget_details
    • Removedlist_budget_modifications
    • Removedlist_budget_view_detail_rows
    • Removedlist_budget_view_snapshot_detail_rows
    • Removedlist_budget_view_snapshot_summary_rows
    • Removedlist_budget_view_snapshots
    • Removedlist_budget_view_summary_rows
    • Removedlist_budget_views
    • Removedlist_calendar_events
    • Removedlist_calendar_items
    • Removedlist_calendars_v2_1
    • Removedlist_call_logs
    • Removedlist_change_event_comments
    • Removedlist_change_event_production_quantities
    • Removedlist_change_event_statuses
    • Removedlist_change_event_statuses_company
    • Removedlist_change_event_types
    • Removedlist_change_events
    • Removedlist_change_history_company
    • Removedlist_change_history_for_a_generic_tool_item
    • Removedlist_change_history_for_timesheet
    • Removedlist_change_history_project
    • Removedlist_change_order_change_reasons
    • Removedlist_change_order_change_reasons_company
    • Removedlist_change_order_packages
    • Removedlist_change_order_requests
    • Removedlist_change_order_statuses
    • Removedlist_change_type_filter_options_company
    • Removedlist_change_type_filter_options_project
    • Removedlist_change_types
    • Removedlist_checklist_inspection_comments
    • Removedlist_checklist_inspection_schedules
    • Removedlist_checklist_inspection_sections
    • Removedlist_checklist_inspections_item_attachments
    • Removedlist_checklist_inspections_items
    • Removedlist_checklist_item_observations
    • Removedlist_checklist_list_assigned_company_filter_options
    • Removedlist_checklist_list_closed_by_contact_filter_options_v1_0
    • Removedlist_checklist_list_closed_by_contact_filter_options_v2_0
    • Removedlist_checklist_list_created_by_contact_filter_options
    • Removedlist_checklist_list_equipment_filter_options
    • Removedlist_checklist_list_inspection_type_filter_options
    • Removedlist_checklist_list_inspector_filter_options_v1_0
    • Removedlist_checklist_list_inspector_filter_options_v2_0
    • Removedlist_checklist_list_location_filter_options_v1_0
    • Removedlist_checklist_list_location_filter_options_v2_0
    • Removedlist_checklist_list_point_of_contact_filter_options_v1_0
    • Removedlist_checklist_list_point_of_contact_filter_options_v2_0
    • Removedlist_checklist_list_responsible_contractor_filter_options_v1_0
    • Removedlist_checklist_list_responsible_contractor_filter_options_v2_0
    • Removedlist_checklist_list_specification_section_filter_options_v1_0
    • Removedlist_checklist_list_specification_section_filter_options_v2_0
    • Removedlist_checklist_list_status_filter_options
    • Removedlist_checklist_list_template_filter_options_v1_0
    • Removedlist_checklist_list_template_filter_options_v2_0
    • Removedlist_checklist_list_trade_filter_options_v1_0
    • Removedlist_checklist_list_trade_filter_options_v2_0
    • Removedlist_checklist_list_type_filter_options
    • Removedlist_checklist_schedule_assignee_filter_options
    • Removedlist_checklist_schedule_attachments
    • Removedlist_checklist_schedule_change_histories
    • Removedlist_checklist_schedule_inspection_template_filter_options
    • Removedlist_checklist_schedule_inspection_type_filter_options
    • Removedlist_checklist_signature_requests
    • Removedlist_checklist_templates
    • Removedlist_checklists
    • Removedlist_checklists_inspections
    • Removedlist_commitment_change_order_line_items
    • Removedlist_commitment_contract_attachments
    • Removedlist_commitment_contract_line_items
    • Removedlist_commitment_contracts
    • Removedlist_commitments
    • Removedlist_communication_tags
    • Removedlist_communication_threads
    • Removedlist_companies
    • Removedlist_company_action_plan_template_item_assignees
    • Removedlist_company_action_plan_template_items
    • Removedlist_company_action_plan_template_references
    • Removedlist_company_action_plan_template_requests
    • Removedlist_company_action_plan_types
    • Removedlist_company_checklist_sections
    • Removedlist_company_checklist_template_sections
    • Removedlist_company_checklist_templates
    • Removedlist_company_form_templates
    • Removedlist_company_form_templates_from_project
    • Removedlist_company_inactive_users
    • Removedlist_company_inactive_vendors
    • Removedlist_company_inspection_template_item_reference
    • Removedlist_company_inspection_template_items
    • Removedlist_company_insurances
    • Removedlist_company_observation_types
    • Removedlist_company_offices
    • Removedlist_company_people
    • Removedlist_company_project_status_snapshots
    • Removedlist_company_projects
    • Removedlist_company_roles
    • Removedlist_company_root_folder_children
    • Removedlist_company_segment_items
    • Removedlist_company_users
    • Removedlist_company_users_2
    • Removedlist_company_vendor_comments
    • Removedlist_company_vendor_insurances
    • Removedlist_company_vendors
    • Removedlist_company_wbs_patterns
    • Removedlist_company_wbs_segment_item_lists
    • Removedlist_company_wbs_segments
    • Removedlist_company_webhooks_deliveries
    • Removedlist_company_webhooks_hooks
    • Removedlist_company_webhooks_resources
    • Removedlist_company_webhooks_triggers
    • Removedlist_companys_projects
    • Removedlist_configurable_field_set_project_options
    • Removedlist_configurable_field_set_sections
    • Removedlist_configurable_field_sets
    • Removedlist_contract_compliance_documents
    • Removedlist_contract_payments
    • Removedlist_contributing_behaviors
    • Removedlist_contributing_conditions
    • Removedlist_coordination_issue_activities
    • Removedlist_coordination_issue_activity_feed_items
    • Removedlist_coordination_issue_assignable_users
    • Removedlist_coordination_issue_change_history
    • Removedlist_coordination_issue_file_filter_options
    • Removedlist_coordination_issue_viewpoints_legacy_model_manager_rest_v2
    • Removedlist_coordination_issues
    • Removedlist_coordination_issues_for_a_project_rest_v2_0
    • Removedlist_coordination_issues_in_recycle_bin
    • Removedlist_coordination_issues_in_recycle_bin_post
    • Removedlist_coordination_issues_post
    • Removedlist_coordination_issues_workflow_issues
    • Removedlist_correspondence_type_defaults
    • Removedlist_correspondence_type_items
    • Removedlist_correspondence_type_permissions
    • Removedlist_correspondence_type_users
    • Removedlist_correspondences_company
    • Removedlist_correspondences_project
    • Removedlist_cost_codes
    • Removedlist_cost_codes_for_timesheets
    • Removedlist_cost_codes_ids_for_timesheets
    • Removedlist_counts_of_daily_logs_v1_0
    • Removedlist_counts_of_daily_logs_v1_1
    • Removedlist_created_by_company_filter_options
    • Removedlist_creation_source_filter_options
    • Removedlist_creator_filter_options
    • Removedlist_current_revision_for_external_rfis_filter_options
    • Removedlist_custom_field_definitions
    • Removedlist_custom_field_definitions_company
    • Removedlist_custom_field_definitions_configurable_field_sets
    • Removedlist_custom_field_lov_entries
    • Removedlist_custom_field_lov_entries_company
    • Removedlist_custom_field_metadata
    • Removedlist_custom_field_metadata_company
    • Removedlist_custom_field_sections
    • Removedlist_custom_fields_user_options
    • Removedlist_custom_tool_users
    • Removedlist_daily_construction_report_logs
    • Removedlist_daily_construction_report_logs_vendor_options
    • Removedlist_default_correspondence_types
    • Removedlist_default_distribution_members
    • Removedlist_default_field_values_company
    • Removedlist_default_field_values_project
    • Removedlist_default_task_items_project_distribution_members
    • Removedlist_delay_log_types
    • Removedlist_delay_logs
    • Removedlist_deleted_punch_items
    • Removedlist_delivery_logs
    • Removedlist_delivery_methods
    • Removedlist_departments
    • Removedlist_direct_cost_items
    • Removedlist_direct_cost_line_items
    • Removedlist_distinct_material_ids_for_a_direct_issue_pick_document
    • Removedlist_distribution_groups
    • Removedlist_distribution_groups_for_specifications
    • Removedlist_document_snapshots_for_a_coordination_issue_rest_v2_0
    • Removedlist_document_uploads_v2
    • Removedlist_drawing_areas
    • Removedlist_drawing_disciplines
    • Removedlist_drawing_revision_terms
    • Removedlist_drawing_revisions
    • Removedlist_drawing_sets
    • Removedlist_drawing_tiles
    • Removedlist_drawing_uploads
    • Removedlist_drawings
    • Removedlist_dumpster_logs
    • Removedlist_ecrion_xml_and_template_for_meetings
    • Removedlist_ecrion_xml_and_template_for_meetings_project
    • Removedlist_environmental_types
    • Removedlist_environmentals
    • Removedlist_equipment
    • Removedlist_equipment_logs
    • Removedlist_equipment_maintenance_logs
    • Removedlist_equipment_timecard_entries_project
    • Removedlist_existing_received_from_login_information_for_external_rfis
    • Removedlist_existing_responsible_contractors_for_external_rfis_filter
    • Removedlist_existing_rfi_managers_for_external_rfis_filter_options
    • Removedlist_existing_sync_statuses_for_external_rfis_filter_options
    • Removedlist_external_rfi_revisions
    • Removedlist_external_rfis
    • Removedlist_field_production_report_summary
    • Removedlist_field_rules_for_an_asset_type
    • Removedlist_field_rules_for_an_asset_type_project_scope
    • Removedlist_filter_options_for_approvers
    • Removedlist_filter_options_for_attachments
    • Removedlist_filter_options_for_ball_in_court
    • Removedlist_filter_options_for_ball_in_court_company
    • Removedlist_filter_options_for_buffer_time
    • Removedlist_filter_options_for_cost_code
    • Removedlist_filter_options_for_created_by
    • Removedlist_filter_options_for_created_via
    • Removedlist_filter_options_for_current_revision
    • Removedlist_filter_options_for_design_team_review_time
    • Removedlist_filter_options_for_for_record_only
    • Removedlist_filter_options_for_internal_review_time
    • Removedlist_filter_options_for_is_rejected
    • Removedlist_filter_options_for_lead_time
    • Removedlist_filter_options_for_location
    • Removedlist_filter_options_for_prepare_time
    • Removedlist_filter_options_for_private
    • Removedlist_filter_options_for_received_from
    • Removedlist_filter_options_for_responsible_contractor
    • Removedlist_filter_options_for_specification_area
    • Removedlist_filter_options_for_specification_division
    • Removedlist_filter_options_for_specification_section
    • Removedlist_filter_options_for_submittal_manager
    • Removedlist_filter_options_for_submittal_package
    • Removedlist_filter_options_for_submittal_response
    • Removedlist_filter_options_for_submittal_revision
    • Removedlist_filter_options_for_submittal_scheduled_task
    • Removedlist_filter_options_for_submittal_status
    • Removedlist_filter_options_for_submittal_sub_job
    • Removedlist_filter_options_for_submittal_unpackaged
    • Removedlist_filter_options_for_submittal_workflow_template
    • Removedlist_filter_options_for_type
    • Removedlist_filters_company
    • Removedlist_filters_project
    • Removedlist_forms_on_a_project
    • Removedlist_generic_tool_items
    • Removedlist_generic_tools
    • Removedlist_gps_positions
    • Removedlist_grouped_checklists_inspections
    • Removedlist_grouped_coordination_issue_status_count
    • Removedlist_grouped_recycled_checklists_inspections
    • Removedlist_harm_sources
    • Removedlist_hazards
    • Removedlist_image_categories
    • Removedlist_image_category_ids_that_contain_images
    • Removedlist_images
    • Removedlist_inactive_company_people
    • Removedlist_inactive_project_people
    • Removedlist_incident_action_types
    • Removedlist_incident_alert_recipients
    • Removedlist_incident_alerts
    • Removedlist_incident_filing_types
    • Removedlist_incident_severity_levels
    • Removedlist_incidents
    • Removedlist_injuries
    • Removedlist_inspection_item_references
    • Removedlist_inspection_logs
    • Removedlist_inspection_types
    • Removedlist_inspection_users
    • Removedlist_inspectors
    • Removedlist_instruction_types_on_a_project
    • Removedlist_instructions_on_a_project
    • Removedlist_item_response_sets
    • Removedlist_lien_waivers
    • Removedlist_line_item_type_categories
    • Removedlist_line_item_types
    • Removedlist_links
    • Removedlist_location_filter_options
    • Removedlist_locations
    • Removedlist_lookaheads
    • Removedlist_lov_codes_for_a_field_company
    • Removedlist_lov_codes_for_a_field_project
    • Removedlist_manpower_logs
    • Removedlist_manpower_logs_contact_options
    • Removedlist_manpower_logs_vendor_options
    • Removedlist_manual_forecast_line_items
    • Removedlist_manual_holds_for_a_given_invoice
    • Removedlist_materials
    • Removedlist_meeting_categories
    • Removedlist_meeting_templates
    • Removedlist_meetings
    • Removedlist_meetings_project
    • Removedlist_monitoring_resources
    • Removedlist_near_misses
    • Removedlist_notes_logs
    • Removedlist_observation_assignee_options
    • Removedlist_observation_category_configurable_field_sets
    • Removedlist_observation_default_distribution_members
    • Removedlist_observation_item_response_logs
    • Removedlist_observation_items
    • Removedlist_observation_potential_distribution_members
    • Removedlist_observation_types
    • Removedlist_observations_response_logs
    • Removedlist_of_actual_production_quantity_ids
    • Removedlist_of_all_time_and_material_equipment_logs
    • Removedlist_of_budget_change_histories
    • Removedlist_of_change_history_events_for_an_action_plan
    • Removedlist_of_company_action_plan_templates
    • Removedlist_of_company_level_emails
    • Removedlist_of_deleted_submittals
    • Removedlist_of_document_revisions_company
    • Removedlist_of_document_revisions_project
    • Removedlist_of_emails
    • Removedlist_of_number_filter_options
    • Removedlist_of_project_action_plan_templates
    • Removedlist_of_punch_list_assignee_filter_options
    • Removedlist_of_punch_list_vendor_filter_options
    • Removedlist_of_purchase_order_contracts
    • Removedlist_operations
    • Removedlist_payment_applications_owner_invoices_for_a_project
    • Removedlist_payment_applications_owner_invoices_for_prime_contract
    • Removedlist_payments_subtier_waivers
    • Removedlist_payments_subtiers_for_the_commitment
    • Removedlist_payments_subtiers_for_the_requisition
    • Removedlist_pdf_template_configs
    • Removedlist_permission_templates
    • Removedlist_permission_templates_for_a_company_user
    • Removedlist_plan_revision_logs
    • Removedlist_possible_assignees_company
    • Removedlist_possible_assignees_project
    • Removedlist_possible_tool_filter_values
    • Removedlist_potential_change_order_line_items
    • Removedlist_potential_change_orders
    • Removedlist_potential_distribution_members_for_specifications
    • Removedlist_potential_points_of_contact
    • Removedlist_prime_change_order_line_items
    • Removedlist_prime_contract_attachments
    • Removedlist_prime_contract_line_items
    • Removedlist_prime_contract_line_items_project
    • Removedlist_prime_contracts
    • Removedlist_productivity_logs
    • Removedlist_programs
    • Removedlist_programs_for_a_company_user
    • Removedlist_project_action_plan_template_items
    • Removedlist_project_action_plan_template_references
    • Removedlist_project_action_plan_template_sections
    • Removedlist_project_action_plan_template_test_record_requests
    • Removedlist_project_assignments_for_a_company_user
    • Removedlist_project_bid_types
    • Removedlist_project_checklist_templates
    • Removedlist_project_configurable_field_sets_v1_0
    • Removedlist_project_configurable_field_sets_v2_1
    • Removedlist_project_cost_codes
    • Removedlist_project_country_codes
    • Removedlist_project_dates_v1_0
    • Removedlist_project_dates_v1_0_2
    • Removedlist_project_dates_v2_0
    • Removedlist_project_distribution_groups_distribution_groups
    • Removedlist_project_distribution_groups_with_ancestors
    • Removedlist_project_document_custom_tags
    • Removedlist_project_equipment_logs
    • Removedlist_project_equipment_maintenance_logs
    • Removedlist_project_fields
    • Removedlist_project_folders_and_files
    • Removedlist_project_inactive_users
    • Removedlist_project_inactive_vendors
    • Removedlist_project_inspection_template_item_reference
    • Removedlist_project_insurances
    • Removedlist_project_job_titles
    • Removedlist_project_links
    • Removedlist_project_locations
    • Removedlist_project_memberships
    • Removedlist_project_metadata_values
    • Removedlist_project_names_for_a_company_user
    • Removedlist_project_numbers_for_a_company_user
    • Removedlist_project_observation_types
    • Removedlist_project_owner_types
    • Removedlist_project_people
    • Removedlist_project_permission_templates
    • Removedlist_project_punch_item_templates
    • Removedlist_project_regions
    • Removedlist_project_roles
    • Removedlist_project_root_folder_children_company_scoped
    • Removedlist_project_segment_items
    • Removedlist_project_stages
    • Removedlist_project_stages_for_a_company_user
    • Removedlist_project_state_codes
    • Removedlist_project_status_snapshots
    • Removedlist_project_templates
    • Removedlist_project_tools
    • Removedlist_project_tools_2
    • Removedlist_project_trades
    • Removedlist_project_types
    • Removedlist_project_types_for_a_company_user
    • Removedlist_project_upload_requirements
    • Removedlist_project_users
    • Removedlist_project_vendor_insurances
    • Removedlist_project_vendors
    • Removedlist_project_wbs_codes
    • Removedlist_project_wbs_patterns
    • Removedlist_project_wbs_segments
    • Removedlist_project_wbs_task_codes
    • Removedlist_project_webhooks_deliveries
    • Removedlist_project_webhooks_hooks
    • Removedlist_project_webhooks_resources
    • Removedlist_project_webhooks_triggers
    • Removedlist_projects
    • Removedlist_property_damages
    • Removedlist_punch_item_activities
    • Removedlist_punch_item_assignee_company_filter_options
    • Removedlist_punch_item_assignee_filter_options
    • Removedlist_punch_item_ball_in_court_filter_options
    • Removedlist_punch_item_closed_by_contact_filter_options
    • Removedlist_punch_item_creator_filter_options
    • Removedlist_punch_item_default_distribution_list
    • Removedlist_punch_item_final_approver_filter_options
    • Removedlist_punch_item_location_filter_options
    • Removedlist_punch_item_manager_filter_options
    • Removedlist_punch_item_trade_filter_options
    • Removedlist_punch_item_type_filter_options
    • Removedlist_punch_item_types
    • Removedlist_punch_items
    • Removedlist_punch_list_assignee_options
    • Removedlist_punch_list_manager_options
    • Removedlist_punch_list_read_user_options
    • Removedlist_purchase_order_contract_detail_line_items
    • Removedlist_purchase_order_contract_line_items
    • Removedlist_quantity_logs
    • Removedlist_recent_activity_items
    • Removedlist_recycled_action_plan
    • Removedlist_recycled_action_plan_item_assignees
    • Removedlist_recycled_action_plan_items
    • Removedlist_recycled_action_plan_references
    • Removedlist_recycled_action_plan_sections
    • Removedlist_recycled_action_plan_template_approvers
    • Removedlist_recycled_action_plan_template_items
    • Removedlist_recycled_action_plan_template_receivers
    • Removedlist_recycled_action_plan_template_sections
    • Removedlist_recycled_action_plan_test_record_requests
    • Removedlist_recycled_action_plan_test_records
    • Removedlist_recycled_actions
    • Removedlist_recycled_checklist_inspection_comments
    • Removedlist_recycled_checklist_inspection_sections
    • Removedlist_recycled_checklist_inspections_item_attachments
    • Removedlist_recycled_checklist_templates
    • Removedlist_recycled_checklists_inspections
    • Removedlist_recycled_company_action_plan_template_items_assignees
    • Removedlist_recycled_company_action_plan_template_references
    • Removedlist_recycled_company_action_plan_template_test_record_requests
    • Removedlist_recycled_company_action_plan_templates
    • Removedlist_recycled_company_checklist_templates
    • Removedlist_recycled_company_form_templates
    • Removedlist_recycled_environmentals
    • Removedlist_recycled_incidents
    • Removedlist_recycled_injuries
    • Removedlist_recycled_links
    • Removedlist_recycled_near_misses
    • Removedlist_recycled_observation_items
    • Removedlist_recycled_project_action_plan_template_references
    • Removedlist_recycled_project_forms
    • Removedlist_recycled_property_damages
    • Removedlist_recycled_rfis
    • Removedlist_recycled_witness_statements
    • Removedlist_regions_for_a_company_user
    • Removedlist_requested_changes
    • Removedlist_requested_changes_for_a_schedule_or_a_task
    • Removedlist_requisition_compliance_attachments
    • Removedlist_requisition_compliance_documents
    • Removedlist_requisition_subcontractor_invoice_change_histories
    • Removedlist_requisition_subcontractor_invoice_change_order_items
    • Removedlist_requisition_subcontractor_invoice_contract_detail_items
    • Removedlist_requisition_subcontractor_invoice_contract_items
    • Removedlist_requisitions_subcontractor_invoices_for_project
    • Removedlist_resources
    • Removedlist_resources_project
    • Removedlist_responses
    • Removedlist_responses_for_a_generic_tool_item
    • Removedlist_responses_in_the_specified_item_response_set
    • Removedlist_rfi_default_distribution
    • Removedlist_rfi_replies
    • Removedlist_rfis
    • Removedlist_rfq_quotes
    • Removedlist_rfq_responses
    • Removedlist_rfqs
    • Removedlist_roles_for_a_company_user
    • Removedlist_safety_violation_logs
    • Removedlist_schedule_imports
    • Removedlist_schedule_resources
    • Removedlist_schedules
    • Removedlist_signatures_time_and_material_entries
    • Removedlist_signatures_timesheets
    • Removedlist_specification_areas_for_a_project
    • Removedlist_specification_configurations
    • Removedlist_specification_section_divisions
    • Removedlist_specification_section_divisions_for_a_project
    • Removedlist_specification_section_revisions_for_a_specification
    • Removedlist_specification_section_terms
    • Removedlist_specification_sections
    • Removedlist_specification_sections_for_a_project
    • Removedlist_specification_sections_for_a_project_specification_areas
    • Removedlist_specification_sections_revisions_for_a_project
    • Removedlist_specification_sections_revisions_specification_areas
    • Removedlist_specification_sets
    • Removedlist_specification_sets_for_a_project
    • Removedlist_specification_uploads
    • Removedlist_standard_cost_code_lists
    • Removedlist_standard_cost_codes
    • Removedlist_status_change_history_for_a_coordination_issue
    • Removedlist_status_filter_options
    • Removedlist_statuses_available_for_a_generic_tool
    • Removedlist_statuses_for_a_generic_tool
    • Removedlist_sub_jobs
    • Removedlist_submittal_associated_attachments
    • Removedlist_submittal_packages_on_a_project
    • Removedlist_submittal_responses
    • Removedlist_submittal_responses_project
    • Removedlist_submittal_statuses
    • Removedlist_submittal_types
    • Removedlist_submittals
    • Removedlist_submittals_on_a_project
    • Removedlist_task_item_categories
    • Removedlist_task_item_comments
    • Removedlist_task_items
    • Removedlist_task_items_assignee_options
    • Removedlist_task_items_distribution_member_options
    • Removedlist_tasks
    • Removedlist_tax_codes
    • Removedlist_tax_types
    • Removedlist_time_and_material_timecards
    • Removedlist_timecard_data
    • Removedlist_timecard_entries
    • Removedlist_timecard_entries_company
    • Removedlist_timecard_entries_project
    • Removedlist_timecard_time_types
    • Removedlist_timecard_time_types_company
    • Removedlist_timeline_events
    • Removedlist_tools_enabled_for_workflows
    • Removedlist_trades
    • Removedlist_unit_of_measure_categories
    • Removedlist_units_of_measure
    • Removedlist_uom_categories_for_project_bids
    • Removedlist_user_filter_options_company
    • Removedlist_user_filter_options_project
    • Removedlist_user_permissions_company
    • Removedlist_user_permissions_project
    • Removedlist_users_with_access_to_a_generic_tool
    • Removedlist_users_with_access_to_a_generic_tool_item
    • Removedlist_visitor_logs
    • Removedlist_waste_logs
    • Removedlist_watcher_filter_options
    • Removedlist_wbs_attribute_items
    • Removedlist_wbs_attributes
    • Removedlist_wbs_code_ids
    • Removedlist_wbs_codes
    • Removedlist_wbs_codes_filter_options
    • Removedlist_wbs_codes_filters
    • Removedlist_weather_logs_v1_0
    • Removedlist_weather_logs_v1_1
    • Removedlist_webhooks_deliveries
    • Removedlist_webhooks_hooks
    • Removedlist_webhooks_resources
    • Removedlist_webhooks_resources_api_versions
    • Removedlist_webhooks_triggers
    • Removedlist_witness_statements
    • Removedlist_work_activities
    • Removedlist_work_logs
    • Removedlist_work_order_contract_detail_line_items
    • Removedlist_work_order_contract_line_items
    • Removedlist_work_order_contracts
    • Removedlist_work_scopes
    • Removedlist_workflow_activity_histories
    • Removedlist_workflow_bulk_replace_requests
    • Removedlist_workflow_instances
    • Removedlist_workflow_instances_company
    • Removedlist_workflow_instances_project
    • Removedlist_workflow_managers_company
    • Removedlist_workflow_managers_project
    • Removedlist_workflow_permanent_logs_company
    • Removedlist_workflow_permanent_logs_project
    • Removedlist_workflow_presets_company
    • Removedlist_workflow_presets_project
    • Removedlist_workflow_templates
    • Removedlists_the_app_and_tool_level_permissions_for_the_user
    • Removedmake_job_title_available_to_group
    • Removedmake_tag_available_to_group
    • Removedmerges_one_or_more_pdfs_of_a_requisition_into_a_single_pdf
    • Removedmodify_an_existing_markup
    • Removedmodify_markups
    • Removedmove_action_plan_back_into_draft
    • Removedmove_action_plan_into_in_progress
    • Removedmove_action_plan_item_within_or_across_sections
    • Removedmove_action_plan_section
    • Removedmove_catalog
    • Removedmove_company_action_plan_template_into_in_revision
    • Removedmove_company_action_plan_template_into_published
    • Removedpartially_updates_a_line_item_on_an_inter_project_transfer
    • Removedpartially_updates_an_inter_project_transfer_header
    • Removedpatch_company_role
    • Removedpost_company_role
    • Removedpreview_asset_deletion_company
    • Removedpreview_asset_deletion_project
    • Changedprocore_api_call8 fields changed
      • changedInput schema / properties / body / description
        Previous 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."
      • changedInput schema / properties / company_id / description
        Previous 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"
      • changedInput schema / properties / method / description
        Previous value: -"HTTP method"New value: +"HTTP method for the endpoint, exactly as reported by the discovery tools"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated endpoints"New value: +"1-indexed page number for paginated endpoints (default 1)"
      • changedInput schema / properties / path / description
        Previous 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."
      • changedInput schema / properties / path_params / description
        Previous 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."
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Items per page, 1-100 (default 100)"
      • changedInput schema / properties / query_params / description
        Previous 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]."
    • Changedprocore_discover_endpoints4 fields changed
      • changedInput schema / properties / category / description
        Previous 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'"
      • changedInput schema / properties / method_filter / description
        Previous 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"
      • changedInput schema / properties / module / description
        Previous 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."
      • changedInput schema / properties / search / description
        Previous 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"
    • Changedprocore_get_endpoint_details1 field changed
      • changedInput schema / properties / operation_id / description
        Previous 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."
    • Changedprocore_search_endpoints1 field changed
      • changedInput schema / properties / query / description
        Previous 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."
    • Changedprocore_set_config3 fields changed
      • changedInput schema / properties / key / description
        Previous 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."
      • addedInput schema / properties / key / enum
        Added value: +[
        +  "company_id",
        +  "project_id"
        +]
      • changedInput schema / properties / value / description
        Previous 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."
    • Removedproject_folder_and_file_index
    • Removedproject_folder_and_file_index_company_scoped
    • Removedproject_markup_indicators_by_items
    • Removedpublish_drawing_revisions
    • Removedpunch_list_available_final_approvers
    • Removedreactivate_company_user
    • Removedreactivate_company_vendor
    • Removedreactivate_project_user
    • Removedreactivate_project_vendor
    • Removedrecycle_materials_in_bulk
    • Removedrecycle_rfi
    • Removedrecycles_a_direct_issue_document_soft_delete
    • Removedrecycles_a_material
    • Removedrecycles_a_material_requirement
    • Removedrecycles_a_receipt
    • Removedrecycles_a_shipment_by_marking_it_as_recycled
    • Removedrecycles_a_transfer_document
    • Removedrecycles_an_adjustment_document
    • Removedrecycles_an_inter_project_transfer_document
    • Removedrefresh_a_workflow_instance_company
    • Removedrefresh_a_workflow_instance_project
    • Removedremove_a_person_from_a_group
    • Removedremove_a_response_from_an_item_response_set
    • Removedremove_a_user_from_the_project
    • Removedremove_alternative_response_set_from_project_checklist_template
    • Removedremove_an_existing_markup
    • Removedremove_change_order_package_from_a_requisition_subcontractor
    • Removedremove_checklist_template_alternative_response_set
    • Removedremove_company_checklist_template_alternative_response_set
    • Removedremove_current_project_company
    • Removedremove_current_project_project
    • Removedremove_existing_labels_to_specified_resources
    • Removedremove_job_title_from_being_available_to_group
    • Removedremove_project_from_group
    • Removedremove_role_from_project
    • Removedremove_segment_from_the_project_pattern
    • Removedremove_signature_from_timecard_entry_project
    • Removedremove_tag_availability_to_group
    • Removedremove_tag_instance_from_person
    • Removedremove_tag_instance_from_project
    • Removedremove_values_from_custom_field
    • Removedremove_viewpoint_association_from_issue_rest_v2_0_mm_soft
    • Removedreopen_checklist_inspection
    • Removedreorder_company_role
    • Removedresolve_scene_id_to_bim_model_id_for_viewpoint_deep_linking
    • Removedrespond_to_a_workflow_instance_company
    • Removedrespond_to_a_workflow_instance_project
    • Removedrestart_a_workflow_instance_company
    • Removedrestart_a_workflow_instance_project
    • Removedrestore_a_recycled_company_checklist_template
    • Removedrestore_a_soft_deleted_coordination_issue_rest_v2_0
    • Removedrestore_a_time_and_material_entry
    • Removedrestore_change_event
    • Removedrestore_company_form_template
    • Removedrestore_coordination_issue_from_recycle_bin
    • Removedrestore_deleted_checklist_inspection
    • Removedrestore_environmental
    • Removedrestore_equipment
    • Removedrestore_equipment_company
    • Removedrestore_materials_in_bulk
    • Removedrestore_project_form
    • Removedrestore_property_damage
    • Removedrestore_recycled_action
    • Removedrestore_recycled_action_plan
    • Removedrestore_recycled_checklist_template
    • Removedrestore_recycled_company_action_plan_template
    • Removedrestore_recycled_incident
    • Removedrestore_recycled_injury
    • Removedrestore_recycled_link
    • Removedrestore_recycled_near_miss
    • Removedrestore_recycled_observation
    • Removedrestore_recycled_witness_statement
    • Removedrestoring_an_equipment
    • Removedretrieve_a_line_item_by_id_company
    • Removedretrieve_a_line_item_by_id_project
    • Removedretrieve_a_line_item_group_by_id_company
    • Removedretrieve_a_line_item_group_by_id_project
    • Removedretrieve_a_list_of_markups
    • Removedretrieve_a_note_by_id_in_the_project
    • Removedretrieve_a_note_by_id_in_the_project_company
    • Removedretrieve_a_project_proposal_by_id
    • Removedretrieve_a_project_proposal_by_id_company
    • Removedretrieve_a_single_webhook_for_company
    • Removedretrieve_a_single_webhook_for_project
    • Removedretrieve_all_line_item_groups_of_a_proposal_company
    • Removedretrieve_all_line_item_groups_of_a_proposal_project
    • Removedretrieve_all_line_items_of_a_proposal_company
    • Removedretrieve_all_line_items_of_a_proposal_project
    • Removedretrieve_all_notes_in_the_project
    • Removedretrieve_all_notes_in_the_project_company
    • Removedretrieve_all_project_proposals
    • Removedretrieve_all_project_proposals_company
    • Removedretrieve_details_for_the_markup
    • Removedretrieve_pre_processed_file_metadata_company_scope_v2
    • Removedretrieve_pre_processed_file_metadata_project_scope_v2
    • Removedretrieve_recycled_rfi
    • Removedretrieve_thumbnails_for_a_file_company_scope
    • Removedretrieve_thumbnails_for_a_file_project_scope
    • Removedretrieve_thumbnails_for_multiple_files_company_scope
    • Removedretrieve_thumbnails_for_multiple_files_project_scope
    • Removedretrieves_recycled_resources_matching_the_specified_filter
    • Removedreturn_a_filter
    • Removedreturn_a_list_of_all_submittals
    • Removedreturn_a_pdf_template_config
    • Removedreturn_company_schedule_summary
    • Removedreturns_a_paginated_list_of_labels_for_the_specified_company
    • Removedreturns_avatar_of_the_current_user
    • Removedreturns_specific_template
    • Removedreview_requested_changes
    • Removedreview_requested_changes_project
    • Removedrevoke_a_persons_login
    • Removedsave_aemp_2_0_telematics_data
    • Removedsave_markups
    • Removedsave_stamp
    • Removedsave_telematics_stats_data
    • Removedsearch_all_equipment_company
    • Removedsearch_all_equipment_project
    • Removedsearch_purchase_order_lines_linked_to_a_shipment
    • Removedsend_a_response_from_a_generic_tool_item_and_then_update
    • Removedsend_all_unsent_punch_item_emails
    • Removedsend_checklist_inspection_email
    • Removedsend_email_drawing_revision_emails
    • Removedsend_email_for_file_sharing
    • Removedsend_email_specification_section_revision_emails
    • Removedsend_invite
    • Removedsend_observation_item_email
    • Removedsend_punch_item_email
    • Removedsend_unsent_observation_items
    • Removedsend_unsent_punch_items
    • Removedsend_unsent_task_items
    • Removedsend_urgent_error
    • Removedset_current_project_project
    • Removedsets_a_modifier_on_shipment_line_items
    • Removedsetup_managed_equipment_taxonomy
    • Removedshow_a_bid_within_a_company
    • Removedshow_a_bid_within_a_project
    • Removedshow_a_budgeted_production_quantity
    • Removedshow_a_commitment_contract
    • Removedshow_a_company_inspection_template_item_evidence_configuration
    • Removedshow_a_compliance_document_purchase_order_contracts
    • Removedshow_a_compliance_document_work_order_contracts
    • Removedshow_a_coordination_issue_rest_v2_0
    • Removedshow_a_crew
    • Removedshow_a_inspection_item_signature_request
    • Removedshow_a_meeting_template
    • Removedshow_a_project_inspection_template_item_evidence_configuration
    • Removedshow_a_signature_company
    • Removedshow_a_signature_project_time_and_material_entries
    • Removedshow_a_signature_project_timesheets
    • Removedshow_a_timesheet
    • Removedshow_accident_logs
    • Removedshow_action
    • Removedshow_action_plan
    • Removedshow_action_plan_approver_signature
    • Removedshow_action_plan_item
    • Removedshow_action_plan_item_assignee
    • Removedshow_action_plan_item_assignee_signature
    • Removedshow_action_plan_receiver_signature
    • Removedshow_action_plan_reference
    • Removedshow_action_plan_section
    • Removedshow_action_plan_template_approver
    • Removedshow_action_plan_template_receiver
    • Removedshow_action_plan_test_record_request
    • Removedshow_action_plan_verification_method
    • Removedshow_actual_production_quantity
    • Removedshow_advanced_export_options_for_external_rfi
    • Removedshow_affliction_type
    • Removedshow_all_commitment_change_order_batches
    • Removedshow_all_commitment_change_orders
    • Removedshow_all_prime_change_order_batches
    • Removedshow_all_prime_change_orders
    • Removedshow_alternative_response_set
    • Removedshow_an_async_job_for_a_company
    • Removedshow_an_equipment_category
    • Removedshow_an_equipment_log
    • Removedshow_an_equipment_make
    • Removedshow_an_equipment_model
    • Removedshow_an_equipment_type
    • Removedshow_an_individual_managed_equipment_maintenance_log_attachment
    • Removedshow_an_individual_time_and_material_attachment
    • Removedshow_an_project_equipment_log
    • Removedshow_app_configuration
    • Removedshow_app_installation
    • Removedshow_asset_by_code_company
    • Removedshow_asset_by_code_project
    • Removedshow_asset_company
    • Removedshow_asset_project
    • Removedshow_attachment_company
    • Removedshow_attachment_project
    • Removedshow_bid_package_company
    • Removedshow_bid_package_project
    • Removedshow_bid_within_a_bid_package
    • Removedshow_billing_period_for_project
    • Removedshow_bim_file
    • Removedshow_bim_file_extraction
    • Removedshow_bim_geometry_file_bundle
    • Removedshow_bim_level
    • Removedshow_bim_model
    • Removedshow_bim_model_revision
    • Removedshow_bim_model_revision_plan
    • Removedshow_bim_plan
    • Removedshow_bim_viewpoint
    • Removedshow_budget_line_item
    • Removedshow_budget_meta_data
    • Removedshow_budget_modification
    • Removedshow_calendar_item
    • Removedshow_call_logs
    • Removedshow_change_event
    • Removedshow_change_history
    • Removedshow_change_order_package
    • Removedshow_change_order_request
    • Removedshow_checklist
    • Removedshow_checklist_comment
    • Removedshow_checklist_inspection
    • Removedshow_checklist_item
    • Removedshow_checklist_item_response
    • Removedshow_checklist_item_type
    • Removedshow_checklist_schedule
    • Removedshow_checklist_section
    • Removedshow_checklist_signature_request
    • Removedshow_checklist_template
    • Removedshow_classification_company
    • Removedshow_classification_project
    • Removedshow_commitment_change_order
    • Removedshow_commitment_change_order_batch
    • Removedshow_commitment_change_order_line_item
    • Removedshow_commitment_contract
    • Removedshow_commitment_contract_line_item
    • Removedshow_commitment_contract_summary
    • Removedshow_communication
    • Removedshow_communication_thread
    • Removedshow_company_action_plan_template
    • Removedshow_company_action_plan_template_item_assignee
    • Removedshow_company_action_plan_template_reference
    • Removedshow_company_action_plan_template_test_record_request
    • Removedshow_company_action_plan_type
    • Removedshow_company_checklist_section
    • Removedshow_company_checklist_template
    • Removedshow_company_configuration
    • Removedshow_company_file
    • Removedshow_company_file_version
    • Removedshow_company_folder
    • Removedshow_company_form_template
    • Removedshow_company_form_template_from_project
    • Removedshow_company_inspection_template_item
    • Removedshow_company_inspection_template_item_reference
    • Removedshow_company_insurance
    • Removedshow_company_level_email_communication
    • Removedshow_company_office
    • Removedshow_company_security_settings
    • Removedshow_company_segment_item
    • Removedshow_company_upload
    • Removedshow_company_user
    • Removedshow_company_user_2
    • Removedshow_company_vendor
    • Removedshow_company_vendor_insurance
    • Removedshow_company_wbs_segment
    • Removedshow_compliance_documents_for_a_contract_work_order_contracts
    • Removedshow_compliance_documents_purchase_order_contracts
    • Removedshow_compliance_information_for_a_purchase_order_contract
    • Removedshow_compliance_information_for_a_work_order_contract
    • Removedshow_configurable_field_set
    • Removedshow_contract_payment
    • Removedshow_contributing_behavior
    • Removedshow_contributing_condition
    • Removedshow_coordination_issue
    • Removedshow_coordination_issue_count_by_status
    • Removedshow_coordination_issue_in_recycle_bin
    • Removedshow_coordination_issue_workflow_issue
    • Removedshow_correspondence_company
    • Removedshow_correspondence_project
    • Removedshow_cost_code
    • Removedshow_current_company_user
    • Removedshow_custom_field_definition
    • Removedshow_custom_field_definition_company
    • Removedshow_custom_field_lov_entry
    • Removedshow_custom_field_metadatum
    • Removedshow_custom_field_metadatum_company
    • Removedshow_custom_fields_section
    • Removedshow_daily_construction_report_logs
    • Removedshow_delay_logs
    • Removedshow_delivery_log
    • Removedshow_department
    • Removedshow_detail_for_requisition_subcontractor_invoice
    • Removedshow_direct_cost_item
    • Removedshow_direct_cost_line_item
    • Removedshow_document_upload
    • Removedshow_drawing_revision
    • Removedshow_drawing_upload
    • Removedshow_dumpster_logs
    • Removedshow_email_communication
    • Removedshow_environmental
    • Removedshow_equipment_change_history
    • Removedshow_equipment_company
    • Removedshow_equipment_logs
    • Removedshow_equipment_maintenance_log
    • Removedshow_equipment_project
    • Removedshow_equipment_timecard_entry_project
    • Removedshow_external_rfi
    • Removedshow_fieldset
    • Removedshow_filing_type
    • Removedshow_first_prime_contract
    • Removedshow_form
    • Removedshow_generic_tool_item
    • Removedshow_generic_tool_item_project
    • Removedshow_gps_position
    • Removedshow_harm_source
    • Removedshow_hazard
    • Removedshow_image
    • Removedshow_image_category
    • Removedshow_incident
    • Removedshow_incident_action_type
    • Removedshow_incident_alert
    • Removedshow_incident_alert_recipient
    • Removedshow_incident_severity_level
    • Removedshow_injury
    • Removedshow_inspection_logs
    • Removedshow_inspection_type
    • Removedshow_instruction
    • Removedshow_instruction_type
    • Removedshow_item_response_set
    • Removedshow_item_response_set_response
    • Removedshow_line_item_type
    • Removedshow_link
    • Removedshow_location
    • Removedshow_lookahead
    • Removedshow_manpower_logs
    • Removedshow_material
    • Removedshow_meeting
    • Removedshow_meeting_project
    • Removedshow_near_miss
    • Removedshow_new_change_event
    • Removedshow_next_available_number_for_observation_items
    • Removedshow_notes_logs
    • Removedshow_observation_item
    • Removedshow_or_create_document_markup_downloadable_pdf
    • Removedshow_payment_application_owner_invoice
    • Removedshow_permission_manifest
    • Removedshow_plan_revision_logs
    • Removedshow_potential_change_order_line_item
    • Removedshow_potential_change_orders
    • Removedshow_prime_change_order
    • Removedshow_prime_change_order_batch
    • Removedshow_prime_change_order_line_item
    • Removedshow_prime_contract
    • Removedshow_prime_contract_line_item
    • Removedshow_prime_contract_line_item_project
    • Removedshow_prime_contract_project
    • Removedshow_prime_contract_summary
    • Removedshow_productivity_logs
    • Removedshow_program
    • Removedshow_project
    • Removedshow_project_action_plan_template_reference
    • Removedshow_project_bid_type
    • Removedshow_project_checklist_template
    • Removedshow_project_date
    • Removedshow_project_date_2
    • Removedshow_project_distribution_group_distribution_groups
    • Removedshow_project_distribution_groups_with_ancestors
    • Removedshow_project_equipment_maintenance_log
    • Removedshow_project_file
    • Removedshow_project_file_version
    • Removedshow_project_folder
    • Removedshow_project_folder_company_scoped
    • Removedshow_project_inspection_template_item_reference
    • Removedshow_project_insurance
    • Removedshow_project_location
    • Removedshow_project_owner_type
    • Removedshow_project_region
    • Removedshow_project_schedule_settings
    • Removedshow_project_stage
    • Removedshow_project_type
    • Removedshow_project_upload
    • Removedshow_project_user
    • Removedshow_project_vendor
    • Removedshow_project_vendor_insurance
    • Removedshow_project_wbs_segment
    • Removedshow_property_damage
    • Removedshow_punch_assignment
    • Removedshow_punch_item
    • Removedshow_punch_item_type
    • Removedshow_purchase_order_contract
    • Removedshow_purchase_order_contract_detail_line_item
    • Removedshow_purchase_order_contract_line_item
    • Removedshow_quantity_logs
    • Removedshow_recent_timecard_entry_wbs_code_ids_deprecated
    • Removedshow_recycled_action
    • Removedshow_recycled_action_plan
    • Removedshow_recycled_action_plan_item
    • Removedshow_recycled_action_plan_item_assignee
    • Removedshow_recycled_action_plan_reference
    • Removedshow_recycled_action_plan_section
    • Removedshow_recycled_action_plan_template_approver
    • Removedshow_recycled_action_plan_template_items
    • Removedshow_recycled_action_plan_template_receiver
    • Removedshow_recycled_action_plan_template_section
    • Removedshow_recycled_action_plan_test_record
    • Removedshow_recycled_action_plan_test_record_request
    • Removedshow_recycled_checklist_inspection
    • Removedshow_recycled_checklist_template
    • Removedshow_recycled_company_action_plan_template
    • Removedshow_recycled_company_action_plan_template_items_assignee
    • Removedshow_recycled_company_action_plan_template_reference
    • Removedshow_recycled_company_action_plan_template_test_record_request
    • Removedshow_recycled_company_checklist_template
    • Removedshow_recycled_company_form_template
    • Removedshow_recycled_environmental
    • Removedshow_recycled_incident
    • Removedshow_recycled_injury
    • Removedshow_recycled_near_miss
    • Removedshow_recycled_observation
    • Removedshow_recycled_project_action_plan_template_reference
    • Removedshow_recycled_project_form
    • Removedshow_recycled_property_damage
    • Removedshow_recycled_witness_statement
    • Removedshow_requisition_subcontractor_invoice
    • Removedshow_requisition_subcontractor_invoice_change_order_item
    • Removedshow_requisition_subcontractor_invoice_contract_detail_item
    • Removedshow_requisition_subcontractor_invoice_contract_item
    • Removedshow_resource
    • Removedshow_resource_assignment
    • Removedshow_resource_project
    • Removedshow_response
    • Removedshow_rfi
    • Removedshow_rfi_in_pdf_format
    • Removedshow_rfi_reply
    • Removedshow_rfq
    • Removedshow_rfq_quote
    • Removedshow_rfq_response
    • Removedshow_rounding_configuration
    • Removedshow_safety_violation_logs
    • Removedshow_specification_section_revision
    • Removedshow_specification_section_revision_project
    • Removedshow_specification_set
    • Removedshow_standard_cost_code
    • Removedshow_standard_cost_code_list
    • Removedshow_sub_job
    • Removedshow_submittal
    • Removedshow_submittal_in_pdf_format
    • Removedshow_submittal_project
    • Removedshow_task
    • Removedshow_task_item
    • Removedshow_tax_code
    • Removedshow_tax_type
    • Removedshow_the_schedule_integration_type_for_a_project
    • Removedshow_time_and_material_entry
    • Removedshow_time_and_material_equipment_log
    • Removedshow_time_and_material_notification
    • Removedshow_time_and_material_timecard
    • Removedshow_timecard_entry
    • Removedshow_timecard_entry_change_history_company
    • Removedshow_timecard_entry_company
    • Removedshow_timecard_entry_project
    • Removedshow_timesheet_approval_status_filters
    • Removedshow_timesheet_billable_filters
    • Removedshow_timesheet_created_by_filters
    • Removedshow_timesheet_crews_filters
    • Removedshow_timesheet_department_filters
    • Removedshow_timesheet_employee_filters
    • Removedshow_timesheet_employee_id_filters
    • Removedshow_timesheet_location_filters
    • Removedshow_timesheet_office_filters
    • Removedshow_timesheet_project_filters
    • Removedshow_timesheet_region_filters
    • Removedshow_timesheet_sub_job_filters
    • Removedshow_timesheet_time_type_filters
    • Removedshow_timesheet_to_budget_configuration
    • Removedshow_timesheet_wbs_code_filters
    • Removedshow_timesheet_work_classification_filters
    • Removedshow_todo
    • Removedshow_trade
    • Removedshow_unit_of_measure
    • Removedshow_user_info
    • Removedshow_visitor_logs
    • Removedshow_waste_logs
    • Removedshow_weather_log
    • Removedshow_weather_logs
    • Removedshow_witness_statement
    • Removedshow_work_activity
    • Removedshow_work_logs
    • Removedshow_work_order_contract
    • Removedshow_work_order_contract_detail_line_item
    • Removedshow_work_order_contract_line_item
    • Removedshow_workflow_activity_history
    • Removedshow_workflow_bulk_replace_request
    • Removedshow_workflow_instance
    • Removedstop_temporary_workflow_bulk_replace_request
    • Removedsync_budget_line_items
    • Removedsync_calendar_items
    • Removedsync_change_order_requests
    • Removedsync_company_insurances
    • Removedsync_company_insurances_alternative
    • Removedsync_company_users
    • Removedsync_company_vendor_insurances
    • Removedsync_company_vendors
    • Removedsync_cost_codes
    • Removedsync_direct_cost_items
    • Removedsync_direct_cost_line_items
    • Removedsync_line_item_types
    • Removedsync_material_requirements_headers
    • Removedsync_material_requirements_lines
    • Removedsync_potential_change_order_line_items
    • Removedsync_potential_change_orders
    • Removedsync_prime_contract_line_items
    • Removedsync_project_insurances
    • Removedsync_project_vendor_insurances
    • Removedsync_projects
    • Removedsync_purchase_order_contract_line_items
    • Removedsync_purchase_order_contracts
    • Removedsync_purchase_order_headers
    • Removedsync_purchase_order_lines
    • Removedsync_standard_cost_codes
    • Removedsync_sub_jobs
    • Removedsync_tasks
    • Removedsync_tax_codes
    • Removedsync_tax_types
    • Removedsync_todos
    • Removedsync_units_of_measure
    • Removedsync_work_order_contract_line_items
    • Removedsync_work_order_contracts
    • Removedsyncs_materials
    • Removedterminate_a_workflow_instance_company_public
    • Removedterminate_a_workflow_instance_project_public
    • Removedtoggle_checklist_section_not_applicable_status_patch
    • Removedtoggle_checklist_section_not_applicable_status_put
    • Removedtrigger_pre_processing_for_a_file_company_scope_v2
    • Removedtrigger_pre_processing_for_a_file_project_scope_v2
    • Removedtriggers_a_recalculation_of_cached_data_for_the_specified
    • Removedunassign_sensors_from_materials
    • Removedunassign_the_attribute_items_from_the_wbs_codes
    • Removedupdate_a_bid_from_a_bid_package
    • Removedupdate_a_bid_within_a_company
    • Removedupdate_a_budgeted_production_quantity
    • Removedupdate_a_change_event_status
    • Removedupdate_a_change_event_type
    • Removedupdate_a_change_order_change_reason
    • Removedupdate_a_checklist_inspection_schedule
    • Removedupdate_a_classification
    • Removedupdate_a_company_action_plan_template
    • Removedupdate_a_compliance_document_purchase_order_contracts
    • Removedupdate_a_compliance_document_work_order_contracts
    • Removedupdate_a_coordination_issue_rest_v2_0
    • Removedupdate_a_crew
    • Removedupdate_a_delay_log_type
    • Removedupdate_a_document_snapshot_on_a_coordination_issue_rest_v2_0
    • Removedupdate_a_drawing_area
    • Removedupdate_a_job_title
    • Removedupdate_a_line_item_group_of_the_proposal_company
    • Removedupdate_a_line_item_group_of_the_proposal_project
    • Removedupdate_a_maintenance_record
    • Removedupdate_a_maintenance_record_project
    • Removedupdate_a_manual_forecast_line_item
    • Removedupdate_a_manual_hold
    • Removedupdate_a_note_of_the_project
    • Removedupdate_a_note_of_the_project_company
    • Removedupdate_a_pdf_template_config
    • Removedupdate_a_pdf_template_config_update_default_project
    • Removedupdate_a_permission_template_assignment_for_a_user_on_a_project
    • Removedupdate_a_person
    • Removedupdate_a_private_field_in_company_level_email_communication
    • Removedupdate_a_private_field_in_email_communication
    • Removedupdate_a_proposal_of_the_project
    • Removedupdate_a_proposal_of_the_project_company
    • Removedupdate_a_purchase_order
    • Removedupdate_a_response
    • Removedupdate_a_single_group
    • Removedupdate_a_single_project
    • Removedupdate_a_single_resource_request
    • Removedupdate_a_task_item_comment
    • Removedupdate_a_time_and_material_entry
    • Removedupdate_a_time_and_material_equipment_log
    • Removedupdate_a_time_and_material_notification
    • Removedupdate_a_time_off_record
    • Removedupdate_a_wbs_code
    • Removedupdate_accident_log
    • Removedupdate_action
    • Removedupdate_action_plan
    • Removedupdate_action_plan_item
    • Removedupdate_action_plan_item_assignee
    • Removedupdate_action_plan_section
    • Removedupdate_action_plan_verification_method
    • Removedupdate_actual_production_quantity
    • Removedupdate_advance_ball_in_court
    • Removedupdate_advanced_forecasting_rows
    • Removedupdate_affliction_type
    • Removedupdate_all_classification
    • Removedupdate_all_company_segment_items
    • Removedupdate_all_project_segment_items
    • Removedupdate_an_attachments_metadata
    • Removedupdate_an_equipment
    • Removedupdate_an_equipment_make
    • Removedupdate_an_equipment_model
    • Removedupdate_an_equipment_type
    • Removedupdate_an_estimate_line_item_of_the_proposal_company
    • Removedupdate_an_estimate_line_item_of_the_proposal_project
    • Removedupdate_an_project_equipment_log
    • Removedupdate_app_configuration
    • Removedupdate_asset_company
    • Removedupdate_asset_project
    • Removedupdate_assignees_and_workflow_manager_company
    • Removedupdate_assignees_and_workflow_manager_project
    • Removedupdate_attachment_company
    • Removedupdate_attachment_project
    • Removedupdate_bid_board_project
    • Removedupdate_bid_board_project_custom_field
    • Removedupdate_bid_form
    • Removedupdate_bid_package
    • Removedupdate_billing_period
    • Removedupdate_bim_file
    • Removedupdate_bim_level
    • Removedupdate_bim_model
    • Removedupdate_bim_model_revision
    • Removedupdate_bim_plan
    • Removedupdate_budget_line_item
    • Removedupdate_budget_modification
    • Removedupdate_calendar_item
    • Removedupdate_call_log
    • Removedupdate_catalog
    • Removedupdate_category_name
    • Removedupdate_change_event
    • Removedupdate_change_event_production_quantity
    • Removedupdate_change_order_package
    • Removedupdate_change_order_request
    • Removedupdate_checklist
    • Removedupdate_checklist_inspection
    • Removedupdate_checklist_item
    • Removedupdate_checklist_section
    • Removedupdate_classification
    • Removedupdate_commitment_change_order
    • Removedupdate_commitment_change_order_batch
    • Removedupdate_commitment_change_order_line_item
    • Removedupdate_commitment_contract
    • Removedupdate_commitment_contract_line_item
    • Removedupdate_company_action_plan_template_item_assignee
    • Removedupdate_company_action_plan_type
    • Removedupdate_company_checklist_section
    • Removedupdate_company_checklist_template
    • Removedupdate_company_currency_configuration
    • Removedupdate_company_exchange_rates
    • Removedupdate_company_file
    • Removedupdate_company_folder
    • Removedupdate_company_form_template
    • Removedupdate_company_inspection_template_item
    • Removedupdate_company_insurance
    • Removedupdate_company_level_context
    • Removedupdate_company_naming_standard_rule
    • Removedupdate_company_office
    • Removedupdate_company_patterns_segment_order
    • Removedupdate_company_person
    • Removedupdate_company_segment_item
    • Removedupdate_company_tag
    • Removedupdate_company_upload
    • Removedupdate_company_user
    • Removedupdate_company_vendor
    • Removedupdate_company_vendor_business_register
    • Removedupdate_company_vendor_insurance
    • Removedupdate_company_wbs_segment
    • Removedupdate_company_webhooks_hook
    • Removedupdate_companys_logo
    • Removedupdate_concierge_parameters
    • Removedupdate_configurable_field_set
    • Removedupdate_context
    • Removedupdate_contract_compliance_document
    • Removedupdate_contract_payment
    • Removedupdate_contracts_invoice_configuration
    • Removedupdate_contributing_behavior
    • Removedupdate_contributing_condition
    • Removedupdate_coordination_issue
    • Removedupdate_coordination_issue_workflow_issue
    • Removedupdate_cost_code
    • Removedupdate_cost_item
    • Removedupdate_current_project_company
    • Removedupdate_current_project_project
    • Removedupdate_custom_field
    • Removedupdate_custom_field_definition
    • Removedupdate_custom_field_metadatum
    • Removedupdate_daily_construction_report_log
    • Removedupdate_delay_log
    • Removedupdate_deleted_equipment_serial_number
    • Removedupdate_delivery_log
    • Removedupdate_department
    • Removedupdate_direct_cost_item
    • Removedupdate_direct_cost_line_item
    • Removedupdate_drawing
    • Removedupdate_drawing_discipline_v1_0
    • Removedupdate_drawing_discipline_v1_1
    • Removedupdate_drawing_revision
    • Removedupdate_drawing_set
    • Removedupdate_dumpster_log
    • Removedupdate_environmental
    • Removedupdate_equipment
    • Removedupdate_equipment_attachment_company
    • Removedupdate_equipment_attachment_project
    • Removedupdate_equipment_category
    • Removedupdate_equipment_category_company
    • Removedupdate_equipment_company_v2_0
    • Removedupdate_equipment_company_v2_1
    • Removedupdate_equipment_log
    • Removedupdate_equipment_maintenance_log
    • Removedupdate_equipment_make_company
    • Removedupdate_equipment_model_company
    • Removedupdate_equipment_project
    • Removedupdate_equipment_project_bulk_update
    • Removedupdate_equipment_status_company
    • Removedupdate_equipment_timecard_entry_approval_status
    • Removedupdate_equipment_timecard_entry_project
    • Removedupdate_equipment_type_company
    • Removedupdate_estimating_settings
    • Removedupdate_field_rule
    • Removedupdate_field_rule_project_scope
    • Removedupdate_filing_type
    • Removedupdate_form
    • Removedupdate_forward_for_review
    • Removedupdate_generic_tool
    • Removedupdate_generic_tool_item
    • Removedupdate_generic_tool_item_response
    • Removedupdate_group
    • Removedupdate_group_order_rank
    • Removedupdate_harm_source
    • Removedupdate_hazard
    • Removedupdate_image
    • Removedupdate_image_category
    • Removedupdate_incident
    • Removedupdate_incident_action_type
    • Removedupdate_incident_severity_level
    • Removedupdate_information_of_a_budget_change
    • Removedupdate_injury
    • Removedupdate_inspection_log
    • Removedupdate_inspection_type
    • Removedupdate_instruction
    • Removedupdate_instruction_type
    • Removedupdate_item_response_set
    • Removedupdate_layer
    • Removedupdate_layer_order_rank
    • Removedupdate_line_item
    • Removedupdate_line_item_type
    • Removedupdate_link
    • Removedupdate_linked_local_rfis_for_an_external_rfi
    • Removedupdate_location
    • Removedupdate_lookahead_task
    • Removedupdate_manpower_log
    • Removedupdate_material
    • Removedupdate_meeting
    • Removedupdate_meeting_attendee_record
    • Removedupdate_meeting_category
    • Removedupdate_meeting_project
    • Removedupdate_meeting_topic
    • Removedupdate_meeting_topic_project
    • Removedupdate_monitoring_resource
    • Removedupdate_multiple_time_and_material_entries
    • Removedupdate_near_miss
    • Removedupdate_notes_log
    • Removedupdate_observation_item
    • Removedupdate_payment_application_owner_invoice_for_prime_contract
    • Removedupdate_payment_application_owner_invoice_line_item_for_prime
    • Removedupdate_payment_application_owner_invoice_markup_line_item
    • Removedupdate_plan_revision_log
    • Removedupdate_potential_change_order
    • Removedupdate_potential_change_order_line_item
    • Removedupdate_prime_change_order
    • Removedupdate_prime_change_order_batch
    • Removedupdate_prime_change_order_line_item
    • Removedupdate_prime_contract
    • Removedupdate_prime_contract_line_item
    • Removedupdate_prime_contract_line_item_project
    • Removedupdate_prime_contract_project
    • Removedupdate_productivity_log
    • Removedupdate_program
    • Removedupdate_project
    • Removedupdate_project_asset_type_attachment
    • Removedupdate_project_bid_type
    • Removedupdate_project_checklist_template
    • Removedupdate_project_currency_configuration
    • Removedupdate_project_distribution_group
    • Removedupdate_project_equipment_maintenance_log
    • Removedupdate_project_exchange_rates
    • Removedupdate_project_file
    • Removedupdate_project_folder
    • Removedupdate_project_incidents_configuration
    • Removedupdate_project_insurance
    • Removedupdate_project_location
    • Removedupdate_project_naming_standard_rule
    • Removedupdate_project_observation_type
    • Removedupdate_project_owner_type
    • Removedupdate_project_patterns_segment_order
    • Removedupdate_project_person
    • Removedupdate_project_region
    • Removedupdate_project_segment_item
    • Removedupdate_project_stage
    • Removedupdate_project_task
    • Removedupdate_project_task_company
    • Removedupdate_project_tools
    • Removedupdate_project_type
    • Removedupdate_project_upload
    • Removedupdate_project_user
    • Removedupdate_project_vendor
    • Removedupdate_project_vendor_insurance
    • Removedupdate_project_webhooks_hook
    • Removedupdate_property_damage
    • Removedupdate_punch_item
    • Removedupdate_punch_item_assignment
    • Removedupdate_punch_item_type
    • Removedupdate_purchase_order_contract
    • Removedupdate_purchase_order_contract_detail_line_item
    • Removedupdate_purchase_order_contract_line_item
    • Removedupdate_purchase_order_contract_subcontractor_sov_status
    • Removedupdate_quantity_log
    • Removedupdate_requisition_compliance_document
    • Removedupdate_requisition_subcontractor_invoice
    • Removedupdate_requisition_subcontractor_invoice_change_order_item
    • Removedupdate_requisition_subcontractor_invoice_contract_detail_item
    • Removedupdate_requisition_subcontractor_invoice_contract_item
    • Removedupdate_requisition_subcontractor_invoice_whole_change_order_item
    • Removedupdate_resource
    • Removedupdate_resource_project
    • Removedupdate_rfi
    • Removedupdate_rfi_reply
    • Removedupdate_rfq
    • Removedupdate_rfq_quote
    • Removedupdate_rfq_response
    • Removedupdate_rounding_configuration
    • Removedupdate_safety_violation_log
    • Removedupdate_schedule_integration_type
    • Removedupdate_schedule_metadata
    • Removedupdate_specification_area
    • Removedupdate_specification_configurations
    • Removedupdate_specification_section_divisions
    • Removedupdate_specification_section_revision
    • Removedupdate_stamp
    • Removedupdate_standard_cost_code
    • Removedupdate_standard_cost_code_list
    • Removedupdate_status_of_equipment_company
    • Removedupdate_status_of_equipment_project
    • Removedupdate_sub_job
    • Removedupdate_subcategory_name
    • Removedupdate_submittal
    • Removedupdate_submittal_approver
    • Removedupdate_submittal_response
    • Removedupdate_task
    • Removedupdate_task_item
    • Removedupdate_tax_code
    • Removedupdate_tax_type
    • Removedupdate_the_change_event_settings_for_the_project
    • Removedupdate_the_compliance_information_for_a_purchase_order_contract
    • Removedupdate_the_compliance_information_for_a_work_order_contract
    • Removedupdate_the_due_date_for_a_requisition_subcontractor_invoice
    • Removedupdate_the_specifications_user_permissions
    • Removedupdate_the_state_of_a_daily_log_header
    • Removedupdate_time_and_material_timecard
    • Removedupdate_timecard_entries
    • Removedupdate_timecard_entry
    • Removedupdate_timecard_entry_company
    • Removedupdate_timecard_entry_project
    • Removedupdate_timecard_entry_signature_project
    • Removedupdate_timecard_time_type
    • Removedupdate_timeline_event
    • Removedupdate_timesheet_status
    • Removedupdate_timesheet_to_budget_configuration
    • Removedupdate_timesheet_v1_0
    • Removedupdate_timesheet_v1_1
    • Removedupdate_todo
    • Removedupdate_unit_of_measure
    • Removedupdate_unmanaged_equipment_project
    • Removedupdate_user_permission
    • Removedupdate_user_project_roles
    • Removedupdate_vendor_project_roles
    • Removedupdate_viewpoint_mapping_and_or_model_manager_viewpoint_content
    • Removedupdate_visitor_log
    • Removedupdate_waste_log
    • Removedupdate_wbs_attribute_item
    • Removedupdate_wbs_attributes
    • Removedupdate_weather_log_v1_0
    • Removedupdate_weather_log_v1_1
    • Removedupdate_webhooks_hook
    • Removedupdate_witness_statement
    • Removedupdate_work_activity
    • Removedupdate_work_log
    • Removedupdate_work_order_contract
    • Removedupdate_work_order_contract_detail_line_item
    • Removedupdate_work_order_contract_line_item
    • Removedupdate_work_order_contract_subcontractor_sov_status
    • Removedupdate_workflow_bulk_replace_request
    • Removedupdate_workflow_preset_company
    • Removedupdate_workflow_preset_project
    • Removedupdates_a_company_inspection_template_item_evidence
    • Removedupdates_a_defect_resource
    • Removedupdates_a_line_item_for_a_defect
    • Removedupdates_a_line_item_of_a_shipment
    • Removedupdates_a_line_item_on_an_adjustment_document
    • Removedupdates_a_material_requirements_document_header
    • Removedupdates_a_project_inspection_template_item_evidence
    • Removedupdates_a_receipt_header
    • Removedupdates_a_single_purchase_order_line_item
    • Removedupdates_a_single_receipt_line_item
    • Removedupdates_a_transfer_document_header
    • Removedupdates_an_adjustment_document_header
    • Removedupdates_an_attachment_for_a_direct_issue
    • Removedupdates_an_attachment_for_a_material_requirements_resource
    • Removedupdates_an_attachment_for_a_purchase_order_resource
    • Removedupdates_an_attachment_for_a_receipt_resource
    • Removedupdates_an_attachment_for_a_transfer
    • Removedupdates_an_attachment_for_an_adjustment_resource
    • Removedupdates_an_attachment_for_an_inter_project_transfer
    • Removedupdates_an_existing_condition_for_a_specific_line_item
    • Removedupdates_attachment_for_a_defect_resource
    • Removedupdates_attachment_for_a_material_resource
    • Removedupdates_header_fields_of_a_direct_issue_document
    • Removedupdates_material_header_information
    • Removedupdates_multiple_line_items_for_a_defect
    • Removedupdates_notes_on_a_direct_issue_line_item
    • Removedupdates_properties_on_a_single_shipment
    • Removedupdates_properties_on_multiple_purchase_order_line_items
    • Removedupdates_properties_on_multiple_shipment_line_items
    • Removedupdates_quantity_on_a_direct_issue_line_item_location
    • Removedupdates_the_specified_transfer_line_item
    • Removedupload_schedule_file_patch
    • Removedupload_schedule_file_put
    • Removedvalidate_custom_fields_values_with_configurable_field_set
    • Removedverifies_if_a_material_can_be_deleted_by_checking_for_connected
    • Removedverifies_if_a_purchase_order_can_be_deleted
    • Removedverifies_if_a_shipment_can_be_deleted_by_checking_for_connected
    • Removedverify_if_the_material_requirement_items_can_be_deleted
    • Removedview_an_action_plan_test_record
    • Removedview_an_electronic_signature
    • Removedview_bid_form_company
    • Removedview_bid_form_project
    • Removedwithdraw_an_electronic_signature
  2. 507 tool updatesv1.3.0
    • Addedbulk_create_equipment_timecard_entries
    • Removedbulk_create_project
    • Addedbulk_create_project_timecard_entries
    • Removedbulk_create_project_v1_0
    • Changedbulk_delete_attachments_project3 fields changed
      • addedInput schema / properties / asset_id
        Added value: +{
        +  "description": "URL path parameter — unique identifier for the Asset",
        +  "type": "string"
        +}
      • removedInput schema / properties / asset_type_id
        Removed value: -{
        -  "description": "URL path parameter — unique identifier for the Asset Type",
        -  "type": "string"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "company_id",
        -  "project_id",
        -  "asset_type_id"
        -]New value: +[
        +  "company_id",
        +  "project_id",
        +  "asset_id"
        +]
    • Addedbulk_delete_attachments_project_asset_types
    • Removedbulk_delete_attachments_project_v2_0
    • Addedbulk_delete_project_tasks
    • Changedbulk_delete_project_tasks_company3 fields changed
      • addedInput schema / properties / bid_board_project_id
        Added value: +{
        +  "description": "URL path parameter — unique BidBoard project identifier",
        +  "type": "string"
        +}
      • removedInput schema / properties / project_id
        Removed value: -{
        -  "description": "URL path parameter — unique project identifier",
        -  "type": "string"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "company_id",
        -  "project_id"
        -]New value: +[
        +  "company_id",
        +  "bid_board_project_id"
        +]
    • Removedbulk_delete_project_tasks_company_v2_0
    • Addedcheck_pdf_generation_status_commitment_change_order_batches
    • Addedcheck_pdf_generation_status_commitment_change_orders
    • Addedcheck_pdf_generation_status_commitment_contracts
    • Addedcheck_pdf_generation_status_prime_change_order_batches
    • Addedcheck_pdf_generation_status_prime_change_orders
    • Addedcheck_pdf_generation_status_prime_contracts
    • Removedcheck_pdf_generation_status_project
    • Removedcheck_pdf_generation_status_project_v2_0
    • Removedcheck_pdf_generation_status_project_v2_0_2
    • Removedcheck_pdf_generation_status_project_v2_0_4
    • Removedcheck_pdf_generation_status_project_v2_0_5
    • Removedcheck_pdf_generation_status_project_v2_0_6
    • Removedcreate_a_compliance_document_project
    • Removedcreate_a_compliance_document_project_v1_0
    • Addedcreate_a_compliance_document_purchase_order_contracts
    • Addedcreate_a_compliance_document_work_order_contracts
    • Addedcreate_a_copy_of_the_action_plan_section_in_the_action_plan
    • Removedcreate_a_copy_of_the_action_plan_section_in_the_action_plan_of
    • Addedcreate_a_copy_of_the_action_plan_template_item_company
    • Removedcreate_a_copy_of_the_action_plan_template_item_in_the_items
    • Removedcreate_a_copy_of_the_action_plan_template_item_in_the_items_2
    • Addedcreate_a_copy_of_the_action_plan_template_item_project
    • Addedcreate_a_copy_of_the_action_plan_template_section_company
    • Removedcreate_a_copy_of_the_action_plan_template_section_in_the_company
    • Removedcreate_a_copy_of_the_action_plan_template_section_in_the_project
    • Addedcreate_a_copy_of_the_action_plan_template_section_project
    • Addedcreate_a_note_in_the_project
    • Changedcreate_a_note_in_the_project_company3 fields changed
      • addedInput schema / properties / bid_board_project_id
        Added value: +{
        +  "description": "URL path parameter — unique BidBoard project identifier",
        +  "type": "string"
        +}
      • removedInput schema / properties / project_id
        Removed value: -{
        -  "description": "URL path parameter — unique project identifier",
        -  "type": "string"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "company_id",
        -  "project_id",
        -  "value"
        -]New value: +[
        +  "company_id",
        +  "bid_board_project_id",
        +  "value"
        +]
    • Removedcreate_a_note_in_the_project_company_v2_0
    • Addedcreate_a_proposal_in_the_project
    • Changedcreate_a_proposal_in_the_project_company8 fields changed
      • addedInput schema / properties / bid_board_project_id
        Added value: +{
        +  "description": "URL path parameter — unique BidBoard project identifier",
        +  "type": "string"
        +}
      • changedInput schema / properties / exclusions / description
        Previous value: -"JSON request body field — the exclusions for this Estimating operation"New value: +"JSON request body field — the exclusions for this Bid Board operation"
      • changedInput schema / properties / inclusions / description
        Previous value: -"JSON request body field — the inclusions for this Estimating operation"New value: +"JSON request body field — the inclusions for this Bid Board operation"
      • changedInput schema / properties / name / description
        Previous value: -"JSON request body field — the name for this Estimating operation"New value: +"JSON request body field — the name for this Bid Board operation"
      • changedInput schema / properties / notes / description
        Previous value: -"JSON request body field — the notes for this Estimating operation"New value: +"JSON request body field — the notes for this Bid Board operation"
      • removedInput schema / properties / project_id
        Removed value: -{
        -  "description": "URL path parameter — unique project identifier",
        -  "type": "string"
        -}
      • changedInput schema / properties / scope_of_work / description
        Previous 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"
      • changedInput schema / required
        Previous value: -[
        -  "company_id",
        -  "project_id",
        -  "name",
        -  "type"
        -]New value: +[
        +  "company_id",
        +  "bid_board_project_id",
        +  "name",
        +  "type"
        +]
    • Removedcreate_a_proposal_in_the_project_company_v2_0
    • Addedcreate_attachment
    • Addedcreate_attachment_actions
    • Addedcreate_attachment_lists
    • Removedcreate_attachment_project
    • Removedcreate_attachment_project_v1_0
    • Removedcreate_attachment_project_v1_0_2
    • Removedcreate_attachment_project_v1_0_4
    • Removedcreate_attachment_project_v1_0_5
    • Addedcreate_attachment_time_and_material_entry_attachments
    • Addedcreate_attachment_witness_statements
    • Addedcreate_line_items_and_line_item_groups_in_bulk_company
    • Removedcreate_line_items_and_line_item_groups_in_bulk_to_the_project_2
    • Addedcreate_meeting
    • Addedcreate_meeting_topic
    • Removedcreate_meeting_topic_v1_0
    • Removedcreate_meeting_v1_0
    • Addedcreate_prime_contract
    • Addedcreate_prime_contract_line_item
    • Removedcreate_prime_contract_line_item_v1_0
    • Removedcreate_prime_contract_v1_0
    • Addedcreate_project_task
    • Changedcreate_project_task_company3 fields changed
      • addedInput schema / properties / bid_board_project_id
        Added value: +{
        +  "description": "URL path parameter — unique BidBoard project identifier",
        +  "type": "string"
        +}
      • removedInput schema / properties / project_id
        Removed value: -{
        -  "description": "URL path parameter — unique project identifier",
        -  "type": "string"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "company_id",
        -  "project_id",
        -  "value"
        -]New value: +[
        +  "company_id",
        +  "bid_board_project_id",
        +  "value"
        +]
    • Removedcreate_project_task_company_v2_0
    • Addedcreate_resource
    • Removedcreate_resource_v1_0
    • Addedcreate_timecard_entry
    • Removedcreate_timecard_entry_v1_0
    • Removedcreate_weather_log_project
    • Removedcreate_weather_log_project_v1_0
    • Addedcreate_weather_log_v1_0
    • Addedcreate_weather_log_v1_1
    • Addedcreates_a_inspection_item_signature_request
    • Removedcreates_a_inspection_item_signature_request_project
    • Removedcreates_a_inspection_item_signature_request_project_v2_0
    • Addedcreates_a_inspection_item_signature_request_signature
    • Removeddelete_a_compliance_document_project
    • Removeddelete_a_compliance_document_project_v1_0
    • Addeddelete_a_compliance_document_purchase_order_contracts
    • Addeddelete_a_compliance_document_work_order_contracts
    • Addeddelete_a_note_from_the_project
    • Changeddelete_a_note_from_the_project_company3 fields changed
      • addedInput schema / properties / bid_board_project_id
        Added value: +{
        +  "description": "URL path parameter — unique BidBoard project identifier",
        +  "type": "string"
        +}
      • removedInput schema / properties / project_id
        Removed value: -{
        -  "description": "URL path parameter — unique project identifier",
        -  "type": "string"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "note_id",
        -  "company_id",
        -  "project_id"
        -]New value: +[
        +  "note_id",
        +  "company_id",
        +  "bid_board_project_id"
        +]
    • Removeddelete_a_note_from_the_project_company_v2_0
    • Addeddelete_a_proposal_from_the_project
    • Changeddelete_a_proposal_from_the_project_company3 fields changed
      • addedInput schema / properties / bid_board_project_id
        Added value: +{
        +  "description": "URL path parameter — unique BidBoard project identifier",
        +  "type": "string"
        +}
      • removedInput schema / properties / project_id
        Removed value: -{
        -  "description": "URL path parameter — unique project identifier",
        -  "type": "string"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "proposal_id",
        -  "company_id",
        -  "project_id"
        -]New value: +[
        +  "proposal_id",
        +  "company_id",
        +  "bid_board_project_id"
        +]
    • Removeddelete_a_proposal_from_the_project_company_v2_0
    • Addeddelete_meeting
    • Removeddelete_meeting_v1_0
    • Addeddelete_prime_contract
    • Removeddelete_prime_contract_v1_0
    • Addeddelete_project_task
    • Changeddelete_project_task_company3 fields changed
      • addedInput schema / properties / bid_board_project_id
        Added value: +{
        +  "description": "URL path parameter — unique BidBoard project identifier",
        +  "type": "string"
        +}
      • removedInput schema / properties / project_id
        Removed value: -{
        -  "description": "URL path parameter — unique project identifier",
        -  "type": "string"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "task_id",
        -  "company_id",
        -  "project_id"
        -]New value: +[
        +  "task_id",
        +  "company_id",
        +  "bid_board_project_id"
        +]
    • Removeddelete_project_task_company_v2_0
    • Addeddelete_resource
    • Removeddelete_resource_v1_0
    • Removeddelete_signature_project
    • Removeddelete_signature_project_v1_0
    • Addeddelete_signature_time_and_material_entries
    • Addeddelete_signature_timesheets
    • Removeddelete_weather_log_project
    • Removeddelete_weather_log_project_v1_0
    • Addeddelete_weather_log_v1_0
    • Addeddelete_weather_log_v1_1
    • Addedget_affected_company_filter_options_environmentals
    • Addedget_affected_company_filter_options_injuries
    • Addedget_affected_company_filter_options_near_misses
    • Removedget_affected_company_filter_options_project
    • Removedget_affected_company_filter_options_project_v1_0
    • Removedget_affected_company_filter_options_project_v1_0_2
    • Removedget_affected_company_filter_options_project_v1_0_4
    • Addedget_affected_company_filter_options_property_damages
    • Addedget_affected_parties_filter_options_injuries
    • Addedget_affected_parties_filter_options_near_misses
    • Removedget_affected_parties_filter_options_project
    • Removedget_affected_parties_filter_options_project_v1_0
    • Addedget_affected_persons_filter_options_injuries
    • Addedget_affected_persons_filter_options_near_misses
    • Removedget_affected_persons_filter_options_project
    • Removedget_affected_persons_filter_options_project_v1_0
    • Changedget_all_attachments_for_equipment_company2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedget_all_attachments_for_equipment_project2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedget_all_configurable_columns_for_adjustments2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedget_all_configurable_columns_for_defects2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedget_all_configurable_columns_for_materials2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Addedget_all_configurable_columns_material_requirements
    • Removedget_all_configurable_columns_project
    • Removedget_all_configurable_columns_project_v2_0
    • Removedget_all_configurable_columns_project_v2_0_2
    • Removedget_all_configurable_columns_project_v2_0_4
    • Addedget_all_configurable_columns_purchase_orders
    • Addedget_all_configurable_columns_shipments
    • Addedget_all_configurable_columns_transfers
    • Changedget_all_properties_for_a_resource_company2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Addedget_all_properties_for_a_resource_inter_project_transfers
    • Removedget_all_properties_for_a_resource_project
    • Addedget_all_properties_for_a_resource_project_adjustments
    • Addedget_all_properties_for_a_resource_project_defects
    • Addedget_all_properties_for_a_resource_project_issuing
    • Addedget_all_properties_for_a_resource_project_material_requirements
    • Addedget_all_properties_for_a_resource_project_materials
    • Addedget_all_properties_for_a_resource_project_purchase_orders
    • Addedget_all_properties_for_a_resource_project_receipts
    • Addedget_all_properties_for_a_resource_project_shipments
    • Addedget_all_properties_for_a_resource_project_transfers
    • Removedget_all_properties_for_a_resource_project_v2_0
    • Removedget_all_properties_for_a_resource_project_v2_0_10
    • Removedget_all_properties_for_a_resource_project_v2_0_11
    • Removedget_all_properties_for_a_resource_project_v2_0_2
    • Removedget_all_properties_for_a_resource_project_v2_0_4
    • Removedget_all_properties_for_a_resource_project_v2_0_6
    • Removedget_all_properties_for_a_resource_project_v2_0_7
    • Removedget_all_properties_for_a_resource_project_v2_0_8
    • Removedget_all_properties_for_a_resource_project_v2_0_9
    • Changedget_all_properties_for_adjustments2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedget_all_properties_for_defects2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedget_all_properties_for_issuing2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedget_all_properties_for_materials2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Addedget_all_properties_material_requirements
    • Removedget_all_properties_project
    • Removedget_all_properties_project_v2_0
    • Removedget_all_properties_project_v2_0_2
    • Removedget_all_properties_project_v2_0_4
    • Addedget_all_properties_purchase_orders
    • Addedget_all_properties_shipments
    • Addedget_all_properties_transfers
    • Changedget_all_resource_requests_for_a_single_project1 field changed
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedget_all_resource_requests_for_projects_in_a_single_group1 field changed
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedget_all_resource_requests_in_a_company1 field changed
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedget_all_time_off_for_a_single_person2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedget_asset_naming_fields_company2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedget_asset_naming_fields_project2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Addedget_budget_note
    • Addedget_bulk_users_async_job_status
    • Changedget_company_naming_standard_rules2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedget_company_workflowable_object_instance_histories2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Addedget_divisions_and_sets_options_for_specification_sections
    • Removedget_divisions_and_sets_options_for_specification_sections_for_a
    • Changedget_equipment_by_id_project2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedget_equipment_projects_company1 field changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
    • Addedget_harm_source_filter_options_injuries
    • Addedget_harm_source_filter_options_near_misses
    • Removedget_harm_source_filter_options_project
    • Removedget_harm_source_filter_options_project_v1_0
    • Changedget_import_logs2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Addedget_list_of_deleted_specification_sections_for_a_project
    • Removedget_list_of_deleted_specification_sections_for_a_project_company
    • Removedget_list_of_deleted_specification_sections_for_a_project_v2_1
    • Addedget_list_of_deleted_specification_sections_specification_areas
    • Addedget_managed_equipment_filter_options_environmentals
    • Addedget_managed_equipment_filter_options_injuries
    • Addedget_managed_equipment_filter_options_near_misses
    • Removedget_managed_equipment_filter_options_project
    • Removedget_managed_equipment_filter_options_project_v1_0
    • Removedget_managed_equipment_filter_options_project_v1_0_2
    • Removedget_managed_equipment_filter_options_project_v1_0_4
    • Addedget_managed_equipment_filter_options_property_damages
    • Changedget_project_naming_standard_rules2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Addedget_project_task_by_id
    • Changedget_project_task_by_id_company3 fields changed
      • addedInput schema / properties / bid_board_project_id
        Added value: +{
        +  "description": "URL path parameter — unique BidBoard project identifier",
        +  "type": "string"
        +}
      • removedInput schema / properties / project_id
        Removed value: -{
        -  "description": "URL path parameter — unique project identifier",
        -  "type": "string"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "task_id",
        -  "company_id",
        -  "project_id"
        -]New value: +[
        +  "task_id",
        +  "company_id",
        +  "bid_board_project_id"
        +]
    • Removedget_project_task_by_id_company_v2_0
    • Addedget_project_tasks
    • Changedget_project_tasks_company3 fields changed
      • addedInput schema / properties / bid_board_project_id
        Added value: +{
        +  "description": "URL path parameter — unique BidBoard project identifier",
        +  "type": "string"
        +}
      • removedInput schema / properties / project_id
        Removed value: -{
        -  "description": "URL path parameter — unique project identifier",
        -  "type": "string"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "company_id",
        -  "project_id"
        -]New value: +[
        +  "company_id",
        +  "bid_board_project_id"
        +]
    • Removedget_project_tasks_company_v2_0
    • Changedget_project_workflowable_object_instance_histories2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedget_receipt_properties2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedget_resource_planning_notification_profiles2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Addedget_the_minutes_and_date_created_for_all_parent_topics
    • Removedget_the_minutes_and_date_created_for_all_parent_topics_v1_0
    • Addedget_unreviewed_uploads_for_specification_areas
    • Removedget_unreviewed_uploads_for_specification_sections_for_a_2
    • Changedget_vendors_for_a_company1 field changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
    • Addedget_work_activity_filter_options_environmentals
    • Addedget_work_activity_filter_options_injuries
    • Addedget_work_activity_filter_options_near_misses
    • Removedget_work_activity_filter_options_project
    • Removedget_work_activity_filter_options_project_v1_0
    • Removedget_work_activity_filter_options_project_v1_0_2
    • Removedget_work_activity_filter_options_project_v1_0_4
    • Addedget_work_activity_filter_options_property_damages
    • Addedgets_details_of_a_specific_material_requirements_header
    • Removedgets_details_of_a_specific_material_requirements_header_by_its
    • Changedgets_properties_for_inter_project_transfers2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedgets_related_documents_for_receipts_by_dashboard_type1 field changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
    • Changedgets_related_documents_for_shipments_by_dashboard_type1 field changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
    • Removedit_fetches_a_budget_note
    • Addedlist_accepted_weather_conditions_daily_logs
    • Removedlist_accepted_weather_conditions_project
    • Removedlist_accepted_weather_conditions_project_v1_0
    • Addedlist_accepted_weather_conditions_weather_logs
    • Removedlist_all_attachments_project
    • Addedlist_all_attachments_project_v1_0
    • Changedlist_all_connection_statuses_for_external_rfis_filter_options2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Addedlist_app_installations_app_installations
    • Addedlist_app_installations_installation_requests
    • Removedlist_app_installations_v1_0
    • Removedlist_app_installations_v1_0_2
    • Changedlist_asset_statuses_company2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedlist_asset_statuses_project2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedlist_asset_system_states2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedlist_asset_types_company2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedlist_asset_types_project2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedlist_available_external_rfi_filter_options2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedlist_available_fields_for_rule_configuration2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedlist_available_fields_for_rule_configuration_project_scope2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedlist_available_status_transitions2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedlist_available_statuses_for_external_rfis_filter_options2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Removedlist_bids_within_a_project_company
    • Addedlist_bids_within_a_project_v2_0
    • Changedlist_budget_change_summaries2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedlist_change_event_comments2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Addedlist_change_event_statuses
    • Removedlist_change_event_statuses_v1_0
    • Addedlist_change_order_change_reasons
    • Removedlist_change_order_change_reasons_v1_0
    • Changedlist_change_type_filter_options_company2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedlist_change_type_filter_options_project2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Removedlist_checklist_list_closed_by_contact_filter_options_project
    • Addedlist_checklist_list_closed_by_contact_filter_options_v2_0
    • Removedlist_checklist_list_inspector_filter_options_project
    • Removedlist_checklist_list_inspector_filter_options_project_v1_0
    • Addedlist_checklist_list_inspector_filter_options_v1_0
    • Addedlist_checklist_list_inspector_filter_options_v2_0
    • Removedlist_checklist_list_location_filter_options_project
    • Removedlist_checklist_list_location_filter_options_project_v1_0
    • Addedlist_checklist_list_location_filter_options_v1_0
    • Addedlist_checklist_list_location_filter_options_v2_0
    • Removedlist_checklist_list_point_of_contact_filter_options_project
    • Removedlist_checklist_list_point_of_contact_filter_options_project_v1_0
    • Addedlist_checklist_list_point_of_contact_filter_options_v1_0
    • Addedlist_checklist_list_point_of_contact_filter_options_v2_0
    • Removedlist_checklist_list_responsible_contractor_filter_options
    • Removedlist_checklist_list_responsible_contractor_filter_options_2
    • Addedlist_checklist_list_responsible_contractor_filter_options_v1_0
    • Addedlist_checklist_list_responsible_contractor_filter_options_v2_0
    • Removedlist_checklist_list_specification_section_filter_options_project
    • Addedlist_checklist_list_specification_section_filter_options_v2_0
    • Removedlist_checklist_list_template_filter_options_project
    • Removedlist_checklist_list_template_filter_options_project_v1_0
    • Addedlist_checklist_list_template_filter_options_v1_0
    • Addedlist_checklist_list_template_filter_options_v2_0
    • Removedlist_checklist_list_trade_filter_options_project
    • Removedlist_checklist_list_trade_filter_options_project_v1_0
    • Addedlist_checklist_list_trade_filter_options_v1_0
    • Addedlist_checklist_list_trade_filter_options_v2_0
    • Addedlist_company_users
    • Addedlist_company_users_2
    • Removedlist_company_users_v1_3
    • Removedlist_company_users_v1_3_2
    • Removedlist_counts_of_daily_logs_project
    • Removedlist_counts_of_daily_logs_project_v1_1
    • Addedlist_counts_of_daily_logs_v1_0
    • Addedlist_counts_of_daily_logs_v1_1
    • Changedlist_current_revision_for_external_rfis_filter_options2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Addedlist_custom_field_definitions
    • Removedlist_custom_field_definitions_v1_0
    • Addedlist_custom_field_lov_entries
    • Removedlist_custom_field_lov_entries_v1_0
    • Addedlist_custom_field_metadata
    • Removedlist_custom_field_metadata_v1_0
    • Changedlist_default_correspondence_types2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedlist_default_field_values_company2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedlist_default_field_values_project2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedlist_default_task_items_project_distribution_members2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedlist_document_snapshots_for_a_coordination_issue_rest_v2_02 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Addedlist_ecrion_xml_and_template_for_meetings
    • Removedlist_ecrion_xml_and_template_for_meetings_v1_0
    • Changedlist_existing_sync_statuses_for_external_rfis_filter_options2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedlist_field_rules_for_an_asset_type2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedlist_field_rules_for_an_asset_type_project_scope2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedlist_line_item_type_categories2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedlist_lov_codes_for_a_field_company2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedlist_lov_codes_for_a_field_project2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Addedlist_meetings
    • Removedlist_meetings_v1_0
    • Changedlist_of_document_revisions_company2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedlist_of_document_revisions_project2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Addedlist_prime_contract_line_items
    • Removedlist_prime_contract_line_items_v1_0
    • Removedlist_project_configurable_field_sets_company
    • Addedlist_project_configurable_field_sets_v2_1
    • Removedlist_project_dates_company
    • Addedlist_project_dates_v2_0
    • Addedlist_project_distribution_groups_distribution_groups
    • Removedlist_project_distribution_groups_v1_0
    • Removedlist_project_distribution_groups_v1_0_2
    • Addedlist_project_distribution_groups_with_ancestors
    • Addedlist_project_tools
    • Addedlist_project_tools_2
    • Removedlist_project_tools_v1_0
    • Removedlist_project_tools_v1_0_2
    • Addedlist_recycled_action_plan_test_records
    • Removedlist_recyled_action_plan_test_records
    • Addedlist_resources
    • Removedlist_resources_v1_0
    • Removedlist_signatures_project
    • Removedlist_signatures_project_v1_0
    • Addedlist_signatures_time_and_material_entries
    • Addedlist_signatures_timesheets
    • Changedlist_specification_configurations2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Addedlist_specification_sections_for_a_project
    • Removedlist_specification_sections_for_a_project_company
    • Removedlist_specification_sections_for_a_project_company_v2_1
    • Addedlist_specification_sections_for_a_project_specification_areas
    • Addedlist_specification_sections_revisions_for_a_project
    • Removedlist_specification_sections_revisions_for_a_project_company
    • Removedlist_specification_sections_revisions_for_a_project_company_v2_1
    • Addedlist_specification_sections_revisions_specification_areas
    • Addedlist_submittal_responses
    • Removedlist_submittal_responses_v1_0
    • Addedlist_timecard_time_types
    • Removedlist_timecard_time_types_v1_0
    • Changedlist_tools_enabled_for_workflows2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedlist_user_filter_options_company2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedlist_user_filter_options_project2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedlist_user_permissions_company2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedlist_user_permissions_project2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Removedlist_weather_logs_project
    • Removedlist_weather_logs_project_v1_0
    • Addedlist_weather_logs_v1_0
    • Addedlist_weather_logs_v1_1
    • Changedlist_workflow_presets_company1 field changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
    • Changedlist_workflow_presets_project1 field changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
    • Addedmake_tag_available_to_group
    • Removedmake_tag_from_being_available_to_group
    • Addedremove_tag_availability_to_group
    • Removedremove_tag_availablility_to_group
    • Addedrestore_equipment
    • Addedrestore_property_damage
    • Addedrestore_recycled_action
    • Addedrestore_recycled_incident
    • Addedrestore_recycled_injury
    • Addedrestore_recycled_link
    • Addedrestore_recycled_near_miss
    • Addedrestore_recycled_observation
    • Addedrestore_recycled_witness_statement
    • Addedretrieve_a_note_by_id_in_the_project
    • Changedretrieve_a_note_by_id_in_the_project_company3 fields changed
      • addedInput schema / properties / bid_board_project_id
        Added value: +{
        +  "description": "URL path parameter — unique BidBoard project identifier",
        +  "type": "string"
        +}
      • removedInput schema / properties / project_id
        Removed value: -{
        -  "description": "URL path parameter — unique project identifier",
        -  "type": "string"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "note_id",
        -  "company_id",
        -  "project_id"
        -]New value: +[
        +  "note_id",
        +  "company_id",
        +  "bid_board_project_id"
        +]
    • Removedretrieve_a_note_by_id_in_the_project_company_v2_0
    • Addedretrieve_a_project_proposal_by_id
    • Changedretrieve_a_project_proposal_by_id_company3 fields changed
      • addedInput schema / properties / bid_board_project_id
        Added value: +{
        +  "description": "URL path parameter — unique BidBoard project identifier",
        +  "type": "string"
        +}
      • removedInput schema / properties / project_id
        Removed value: -{
        -  "description": "URL path parameter — unique project identifier",
        -  "type": "string"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "proposal_id",
        -  "company_id",
        -  "project_id"
        -]New value: +[
        +  "proposal_id",
        +  "company_id",
        +  "bid_board_project_id"
        +]
    • Removedretrieve_a_project_proposal_by_id_company_v2_0
    • Addedretrieve_all_notes_in_the_project
    • Changedretrieve_all_notes_in_the_project_company3 fields changed
      • addedInput schema / properties / bid_board_project_id
        Added value: +{
        +  "description": "URL path parameter — unique BidBoard project identifier",
        +  "type": "string"
        +}
      • removedInput schema / properties / project_id
        Removed value: -{
        -  "description": "URL path parameter — unique project identifier",
        -  "type": "string"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "company_id",
        -  "project_id"
        -]New value: +[
        +  "company_id",
        +  "bid_board_project_id"
        +]
    • Removedretrieve_all_notes_in_the_project_company_v2_0
    • Addedretrieve_all_project_proposals
    • Changedretrieve_all_project_proposals_company3 fields changed
      • addedInput schema / properties / bid_board_project_id
        Added value: +{
        +  "description": "URL path parameter — unique BidBoard project identifier",
        +  "type": "string"
        +}
      • removedInput schema / properties / project_id
        Removed value: -{
        -  "description": "URL path parameter — unique project identifier",
        -  "type": "string"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "company_id",
        -  "project_id"
        -]New value: +[
        +  "company_id",
        +  "bid_board_project_id"
        +]
    • Removedretrieve_all_project_proposals_company_v2_0
    • Removedretrieve_equipment
    • Removedretrieve_property_damage
    • Removedretrieve_recycled_action
    • Removedretrieve_recycled_incident
    • Removedretrieve_recycled_injury
    • Removedretrieve_recycled_link
    • Removedretrieve_recycled_near_miss
    • Removedretrieve_recycled_observation
    • Removedretrieve_recycled_witness_statement
    • Removedretrieves_the_status_of_the_asyncronous_job_that_a_bulk_users
    • Changedreturn_company_schedule_summary2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Changedreturns_a_paginated_list_of_labels_for_the_specified_company1 field changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
    • Addedreview_requested_changes
    • Removedreview_requested_changes_v1_0
    • Addedsend_a_response_from_a_generic_tool_item_and_then_update
    • Removedsend_a_response_from_a_generic_tool_item_and_then_update_the
    • Addedsend_email_drawing_revision_emails
    • Removedsend_email_project
    • Removedsend_email_project_v1_0
    • Addedsend_email_specification_section_revision_emails
    • Removedshow_a_compliance_document_project
    • Removedshow_a_compliance_document_project_v1_0
    • Addedshow_a_compliance_document_purchase_order_contracts
    • Addedshow_a_compliance_document_work_order_contracts
    • Removedshow_a_signature_project
    • Addedshow_a_signature_project_time_and_material_entries
    • Addedshow_a_signature_project_timesheets
    • Removedshow_a_signature_project_v1_0
    • Changedshow_advanced_export_options_for_external_rfi2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Addedshow_company_user
    • Addedshow_company_user_2
    • Removedshow_company_user_v1_3
    • Removedshow_company_user_v1_3_2
    • Removedshow_compliance_documents_for_a_contract_project
    • Removedshow_compliance_documents_for_a_contract_project_v1_0
    • Addedshow_compliance_documents_for_a_contract_work_order_contracts
    • Addedshow_compliance_documents_purchase_order_contracts
    • Addedshow_custom_field_definition
    • Removedshow_custom_field_definition_v1_0
    • Addedshow_custom_field_metadatum
    • Removedshow_custom_field_metadatum_v1_0
    • Addedshow_generic_tool_item
    • Removedshow_generic_tool_item_v1_0
    • Addedshow_meeting
    • Removedshow_meeting_v1_0
    • Addedshow_prime_contract
    • Addedshow_prime_contract_line_item
    • Removedshow_prime_contract_line_item_v1_0
    • Removedshow_prime_contract_v1_0
    • Addedshow_project_date
    • Addedshow_project_date_2
    • Removedshow_project_date_v1_0
    • Removedshow_project_date_v1_0_2
    • Addedshow_project_distribution_group_distribution_groups
    • Removedshow_project_distribution_group_v1_0
    • Removedshow_project_distribution_group_v1_0_2
    • Addedshow_project_distribution_groups_with_ancestors
    • Changedshow_requisition_subcontractor_invoice2 fields changed
      • addedInput schema / properties / page
        Added value: +{
        +  "description": "Page number for paginated results (default: 1, 1-indexed)",
        +  "type": "number"
        +}
      • addedInput schema / properties / per_page
        Added value: +{
        +  "description": "Number of items per page (default: 100, max: 100)",
        +  "type": "number"
        +}
    • Addedshow_resource
    • Removedshow_resource_v1_0
    • Addedshow_specification_section_revision
    • Removedshow_specification_section_revision_v1_0
    • Addedshow_submittal
    • Removedshow_submittal_v1_0
    • Addedtoggle_checklist_section_not_applicable_status_patch
    • Addedtoggle_checklist_section_not_applicable_status_put
    • Removedtoggle_checklist_section_not_applicable_status_v1_0
    • Removedtoggle_checklist_section_not_applicable_status_v1_0_2
    • Removedupdate_a_compliance_document_project
    • Removedupdate_a_compliance_document_project_v1_0
    • Addedupdate_a_compliance_document_purchase_order_contracts
    • Addedupdate_a_compliance_document_work_order_contracts
    • Addedupdate_a_note_of_the_project
    • Changedupdate_a_note_of_the_project_company3 fields changed
      • addedInput schema / properties / bid_board_project_id
        Added value: +{
        +  "description": "URL path parameter — unique BidBoard project identifier",
        +  "type": "string"
        +}
      • removedInput schema / properties / project_id
        Removed value: -{
        -  "description": "URL path parameter — unique project identifier",
        -  "type": "string"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "note_id",
        -  "company_id",
        -  "project_id",
        -  "value"
        -]New value: +[
        +  "note_id",
        +  "company_id",
        +  "bid_board_project_id",
        +  "value"
        +]
    • Removedupdate_a_note_of_the_project_company_v2_0
    • Addedupdate_a_pdf_template_config
    • Removedupdate_a_pdf_template_config_company
    • Removedupdate_a_pdf_template_config_company_v1_0
    • Addedupdate_a_pdf_template_config_update_default_project
    • Addedupdate_a_proposal_of_the_project
    • Changedupdate_a_proposal_of_the_project_company3 fields changed
      • addedInput schema / properties / bid_board_project_id
        Added value: +{
        +  "description": "URL path parameter — unique BidBoard project identifier",
        +  "type": "string"
        +}
      • removedInput schema / properties / project_id
        Removed value: -{
        -  "description": "URL path parameter — unique project identifier",
        -  "type": "string"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "proposal_id",
        -  "company_id",
        -  "project_id"
        -]New value: +[
        +  "proposal_id",
        +  "company_id",
        +  "bid_board_project_id"
        +]
    • Removedupdate_a_proposal_of_the_project_company_v2_0
    • Removedupdate_drawing_discipline_project
    • Removedupdate_drawing_discipline_project_v1_0
    • Addedupdate_drawing_discipline_v1_0
    • Addedupdate_drawing_discipline_v1_1
    • Addedupdate_equipment_project
    • Addedupdate_equipment_project_bulk_update
    • Removedupdate_equipment_project_company
    • Removedupdate_equipment_project_company_v2_1
    • Addedupdate_meeting
    • Addedupdate_meeting_topic
    • Removedupdate_meeting_topic_v1_0
    • Removedupdate_meeting_v1_0
    • Addedupdate_payment_application_owner_invoice_markup_line_item
    • Removedupdate_payment_application_owner_invoice_markup_line_item_for
    • Addedupdate_prime_contract
    • Addedupdate_prime_contract_line_item
    • Removedupdate_prime_contract_line_item_v1_0
    • Removedupdate_prime_contract_v1_0
    • Addedupdate_project_task
    • Changedupdate_project_task_company3 fields changed
      • addedInput schema / properties / bid_board_project_id
        Added value: +{
        +  "description": "URL path parameter — unique BidBoard project identifier",
        +  "type": "string"
        +}
      • removedInput schema / properties / project_id
        Removed value: -{
        -  "description": "URL path parameter — unique project identifier",
        -  "type": "string"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "task_id",
        -  "company_id",
        -  "project_id"
        -]New value: +[
        +  "task_id",
        +  "company_id",
        +  "bid_board_project_id"
        +]
    • Removedupdate_project_task_company_v2_0
    • Addedupdate_resource
    • Removedupdate_resource_v1_0
    • Removedupdate_timesheet_project
    • Removedupdate_timesheet_project_v1_0
    • Addedupdate_timesheet_v1_0
    • Addedupdate_timesheet_v1_1
    • Removedupdate_weather_log_project
    • Removedupdate_weather_log_project_v1_0
    • Addedupdate_weather_log_v1_0
    • Addedupdate_weather_log_v1_1
    • Addedupdates_an_existing_condition_for_a_specific_line_item
    • Removedupdates_an_existing_condition_for_a_specific_line_item_in_a
    • Addedupload_schedule_file_patch
    • Addedupload_schedule_file_put
    • Removedupload_schedule_file_v1_0
    • Removedupload_schedule_file_v1_0_2
  3. 1455 tool updatesv1.2.0
    • Addedaccessible_tools
    • Changedadd_additional_assignees_to_a_workflow_instance_company1 field changed
      • addedInput schema / properties / role_type
        Added 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"
        +}
    • Changedadd_additional_assignees_to_a_workflow_instance_project1 field changed
      • addedInput schema / properties / role_type
        Added 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"
        +}
    • Addedadd_attachment_to_project_asset_type
    • Addedadd_comments_to_a_direct_issue
    • Addedadd_project_to_group
    • Addedadd_up_to_100_comments_to_a_material
    • Addedadd_up_to_100_comments_to_a_purchase_order
    • Addedadd_up_to_100_comments_to_a_receipt
    • Addedadd_up_to_100_comments_to_a_shipment
    • Addedadd_up_to_100_comments_to_a_transfer
    • Addedadd_up_to_100_comments_to_an_adjustment
    • Addedadds_a_line_item_to_an_inter_project_transfer
    • Addedadds_a_single_attachment_to_a_receipt_resource
    • Addedadds_a_single_line_item_to_a_draft_receipt
    • Addedadds_a_single_line_item_to_an_existing_transfer_document
    • Addedadds_attachment_s_to_a_direct_issue
    • Addedadds_attachments_to_a_defect_resource
    • Addedadds_attachments_to_a_material_requirements_resource
    • Addedadds_attachments_to_a_material_resource
    • Addedadds_attachments_to_a_purchase_order_resource
    • Addedadds_attachments_to_a_receipt_resource
    • Addedadds_attachments_to_a_shipment_resource
    • Addedadds_attachments_to_a_transfer
    • Addedadds_attachments_to_an_inter_project_transfer
    • Addedadds_bulk_line_items_to_a_shipment_from_a_purchase_order
    • Addedadds_comments_to_a_defect_resource
    • Addedadds_comments_to_a_material_requirements_resource
    • Addedadds_comments_to_an_inter_project_transfer
    • Addedadds_existing_labels_to_specified_resources
    • Addedadds_line_items_to_an_existing_direct_issue
    • Addedadds_multiple_line_items_to_a_draft_receipt_in_bulk
    • Addedadds_new_line_items_to_an_existing_adjustment_document
    • Addedadds_one_or_more_attachments_to_an_adjustment_document
    • Removedapprove_payments_beneficiary
    • Changedbatch_get_model_manager_viewpoints_by_uuid_rest_v2_0_issue1 field changed
      • addedInput schema / properties / viewpoint_format
        Added 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"
        +}
    • Changedbid_level_across_a_bid_form2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedbulk_create_action_plans_for_assets
    • Addedbulk_create_bid_forms
    • Addedbulk_create_document_revisions
    • Addedbulk_create_document_uploads
    • Addedbulk_create_field_rules
    • Addedbulk_create_field_rules_project_scope
    • Addedbulk_create_groups_in_a_layer
    • Changedbulk_create_workflow_instances_company_public1 field changed
      • addedInput schema / properties / Idempotency-Token
        Added value: +{
        +  "description": "JSON request body field — unique idempotent token",
        +  "type": "string"
        +}
    • Changedbulk_create_workflow_instances_project_public1 field changed
      • addedInput schema / properties / Idempotency-Token
        Added value: +{
        +  "description": "JSON request body field — unique idempotent token",
        +  "type": "string"
        +}
    • Addedbulk_delete_attachments_company
    • Addedbulk_delete_attachments_project
    • Addedbulk_delete_attachments_project_v2_0
    • Removedbulk_delete_payouts_by_invoice
    • Addedbulk_delete_specification_sections
    • Addedbulk_edit_specification_sections
    • Addedbulk_transition_defects_to_a_new_status
    • Changedbulk_update_company_observation_templates2 fields changed
      • changedInput schema / properties / observation_template_ids / description
        Previous 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."
      • changedInput schema / properties / trade_id / description
        Previous 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."
    • Addedbulk_update_document_uploads
    • Addedbulk_update_field_rules
    • Addedbulk_update_field_rules_project_scope
    • Addedbulk_update_for_specification_sets_for_a_project
    • Changedbulk_update_harm_sources1 field changed
      • changedInput schema / properties / active / description
        Previous 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."
    • Changedbulk_update_hazards1 field changed
      • changedInput schema / properties / active / description
        Previous 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."
    • Changedbulk_update_project_observation_templates4 fields changed
      • changedInput schema / properties / active / description
        Previous 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`."
      • changedInput schema / properties / assignee_id / description
        Previous 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`."
      • addedInput schema / properties / assignee_ids
        Added 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"
        +}
      • changedInput schema / properties / trade_id / description
        Previous 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`."
    • Addedbulk_update_specification_section_revisions
    • Addedbulk_updates_destination_for_multiple_line_items
    • Addedbulk_updates_line_items_on_a_single_shipment
    • Addedbulk_upsert_lov_codes_company
    • Addedbulk_upsert_lov_codes_project
    • Changedcalculate_number_of_inspections_to_create_based_on_schedule2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedcalculate_when_the_first_inspection_of_an_inspection_schedule2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedchange_history1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Addedchange_history_of_specification_section_revision
    • Changedcheck_company_zone3 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedcheck_csv_export_status_for_commitment_change_order_rows2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedcheck_csv_export_status_for_prime_change_order_rows2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedcheck_if_number_and_revision_entered_are_available_or_duplicated2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedcheck_pdf_generation_status_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedcheck_pdf_generation_status_project_v2_03 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
      • changedInput schema / properties / prime_change_order_id / description
        Previous 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"
    • Changedcheck_pdf_generation_status_project_v2_0_22 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedcheck_pdf_generation_status_project_v2_0_42 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedcheck_pdf_generation_status_project_v2_0_52 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedcheck_pdf_generation_status_project_v2_0_62 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedchecklist_schedule_assignee_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedchecklist_schedule_equipment_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedchecklist_schedule_inspection_template_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedchecklist_schedule_inspection_type_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedchecklist_schedule_location_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedclose_and_distribute_a_submittal_log4 fields changed
      • changedInput schema / properties / prostore_file_ids / description
        Previous 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)."
      • changedInput schema / properties / recipient_ids / description
        Previous 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`."
      • addedInput schema / properties / submittal_attachment_ids
        Added 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"
        +}
      • changedInput schema / properties / submittal_log_status_id / description
        Previous 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."
    • Addedclose_checklist_inspection
    • Addedcompany_markup_indicators_by_items
    • Addedcomplete_company_upload
    • Addedcomplete_unified_upload
    • Addedconsolidates_inventory_of_a_material_from_multiple_locations
    • Changedconvert_private_layer_to_public2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
    • Addedcopy_markups
    • Changedcreate_a_budget_view_snapshot4 fields changed
      • addedInput schema / properties / date_range_for_actuals
        Added 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"
        +}
      • addedInput schema / properties / financial_period_id
        Added 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"
        +}
      • addedInput schema / properties / only_actuals_with_dates
        Added 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"
        +}
      • addedInput schema / properties / reassign_financial_period
        Added 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"
        +}
    • Changedcreate_a_coordination_issue_rest_v2_06 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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."
      • addedInput schema / properties / is_private
        Added 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"
        +}
      • changedInput schema / properties / project_id / description
        Previous 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."
      • addedInput schema / properties / status
        Added 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"
        +}
      • addedInput schema / properties / watcher_ids
        Added value: +{
        +  "description": "JSON request body field — user ids to add as watchers on the new coordination issue.",
        +  "items": {},
        +  "type": "array"
        +}
      • changedInput schema / required
        Previous value: -[
        -  "title"
        -]New value: +[
        +  "company_id",
        +  "project_id",
        +  "title"
        +]
    • Addedcreate_a_document_snapshot_on_a_coordination_issue_rest_v2_0
    • Changedcreate_a_manual_forecast_line_item1 field changed
      • addedInput schema / properties / async
        Added 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"
        +}
    • Changedcreate_a_model_manager_viewpoint_and_link_it_to_the_issue_rest1 field changed
      • changedInput schema / properties / snapshot_upload_uuid / description
        Previous 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..."
    • Changedcreate_a_new_budgeted_production_quantity2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"JSON request body field — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier for the project."
      • addedInput schema / required
        Added value: +[
        +  "project_id"
        +]
    • Addedcreate_a_new_company_level_context
    • Changedcreate_a_new_context3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / context_type / enum
        Previous value: -[
        -  "document_revision",
        -  "document_container"
        -]New value: +[
        +  "document_revision",
        +  "document_container",
        +  "FileVersion",
        +  "folders_attachments",
        +  "specification_section_revision",
        +  "drawing_revision"
        +]
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
    • Changedcreate_a_new_group2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
    • Changedcreate_a_new_layer2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
    • Changedcreate_a_new_maintenance_record_company1 field changed
      • changedInput schema / properties / equipment_id / description
        Previous value: -"JSON request body field — the id of the equipment."New value: +"URL path parameter — unique identifier of the equipment"
    • Changedcreate_a_new_maintenance_record_project1 field changed
      • changedInput schema / properties / equipment_id / description
        Previous value: -"JSON request body field — the id of the equipment."New value: +"URL path parameter — unique identifier of the equipment"
    • Changedcreate_a_new_time_and_material_equipment_log1 field changed
      • addedInput schema / properties / idle_quantity
        Added value: +{
        +  "description": "JSON request body field — idle Quantity of Time And Material Equipment Log",
        +  "type": "number"
        +}
    • Changedcreate_a_note_in_the_project_company1 field changed
      • changedInput schema / properties / value / description
        Previous value: -"JSON request body field — the value for this Estimating operation"New value: +"JSON request body field — the content of the note."
    • Changedcreate_a_note_in_the_project_company_v2_01 field changed
      • changedInput schema / properties / value / description
        Previous value: -"JSON request body field — the value for this Bid Board operation"New value: +"JSON request body field — the content of the note."
    • Addedcreate_a_specification_section
    • Addedcreate_a_specification_section_division
    • Changedcreate_a_task_item_comment1 field changed
      • addedInput schema / properties / view
        Added value: +{
        +  "description": "Query string parameter — serialization view for the created comment (default **normal**).",
        +  "enum": [
        +    "compact",
        +    "normal",
        +    "extended"
        +  ],
        +  "type": "string"
        +}
    • Changedcreate_a_wbs_code1 field changed
      • addedInput schema / properties / default_uom_id
        Added 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"
        +}
    • Removedcreate_a_workflow_instance_company
    • Addedcreate_a_workflow_instance_company_public
    • Removedcreate_a_workflow_instance_project
    • Addedcreate_a_workflow_instance_project_public
    • Changedcreate_action8 fields changed
      • changedInput schema / properties / action_type_id / description
        Previous 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."
      • changedInput schema / properties / description / description
        Previous 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."
      • changedInput schema / properties / drawing_revision_ids / description
        Previous 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."
      • changedInput schema / properties / file_version_ids / description
        Previous 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."
      • changedInput schema / properties / form_ids / description
        Previous 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."
      • changedInput schema / properties / image_ids / description
        Previous 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."
      • changedInput schema / properties / incident_id / description
        Previous 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."
      • changedInput schema / properties / upload_ids / description
        Previous 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."
    • Changedcreate_action_plan1 field changed
      • addedInput schema / properties / asset_ids
        Added value: +{
        +  "description": "JSON request body field — asset IDs to be set on the Action Plan",
        +  "items": {},
        +  "type": "array"
        +}
    • Changedcreate_affliction_type1 field changed
      • changedInput schema / properties / name / description
        Previous 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."
    • Addedcreate_an_electronic_signature
    • Changedcreate_an_estimate_line_item_in_the_proposal_company5 fields changed
      • addedInput schema / properties / cost_item / additionalProperties
        Added value: +{}
      • changedInput schema / properties / cost_item / description
        Previous 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 ..."
      • changedInput schema / properties / cost_item / type
        Previous value: -"string"New value: +"object"
      • addedInput schema / properties / quantity
        Added value: +{
        +  "description": "JSON request body field — quantity from the estimating table (manual entry). Updated when using estimating or takeoff tab.",
        +  "type": "number"
        +}
      • addedInput schema / properties / type
        Added 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"
        +}
    • Changedcreate_an_estimate_line_item_in_the_proposal_project5 fields changed
      • addedInput schema / properties / cost_item / additionalProperties
        Added value: +{}
      • changedInput schema / properties / cost_item / description
        Previous 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 ..."
      • changedInput schema / properties / cost_item / type
        Previous value: -"string"New value: +"object"
      • addedInput schema / properties / quantity
        Added value: +{
        +  "description": "JSON request body field — quantity from the estimating table (manual entry). Updated when using estimating or takeoff tab.",
        +  "type": "number"
        +}
      • addedInput schema / properties / type
        Added 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"
        +}
    • Changedcreate_an_project_equipment_log2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"JSON request body field — iD of the project the equipment was logged for"New value: +"URL path parameter — unique identifier for the project."
      • addedInput schema / required
        Added value: +[
        +  "project_id"
        +]
    • Changedcreate_app_configuration1 field changed
      • changedInput schema / properties / company_id / description
        Previous value: -"JSON request body field — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier for the company."
    • Removedcreate_app_installation
    • Addedcreate_asset_company
    • Addedcreate_asset_project
    • Changedcreate_attachment_project_v1_0_22 fields changed
      • changedInput schema / properties / attachment / description
        Previous 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."
      • changedInput schema / properties / incident_id / description
        Previous 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."
    • Changedcreate_attachment_project_v1_0_51 field changed
      • changedInput schema / properties / action_id / description
        Previous 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."
    • Addedcreate_attachments_company
    • Addedcreate_attachments_project
    • Changedcreate_bid_board_project1 field changed
      • addedInput schema / properties / office_id
        Added 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"
        +}
    • Addedcreate_change_event_comment
    • Changedcreate_checklist_item_attachment2 fields changed
      • addedInput schema / properties / document_management_document_revision_id
        Added value: +{
        +  "description": "JSON request body field — pDM document revision ID to attach to the Checklist Item.",
        +  "type": "string"
        +}
      • changedInput schema / required
        Previous value: -[
        -  "list_id",
        -  "item_id",
        -  "project_id",
        -  "section_id",
        -  "attachment"
        -]New value: +[
        +  "list_id",
        +  "item_id",
        +  "project_id",
        +  "section_id"
        +]
    • Changedcreate_commitment_change_order4 fields changed
      • removedInput schema / properties / drawing_revision_ids
        Removed value: -{
        -  "description": "JSON request body field — drawing Revisions to attach to the response",
        -  "items": {},
        -  "type": "array"
        -}
      • removedInput schema / properties / file_version_ids
        Removed value: -{
        -  "description": "JSON request body field — file Versions to attach to the response",
        -  "items": {},
        -  "type": "array"
        -}
      • addedInput schema / properties / request_for_quote_attachment_ids
        Added 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"
        +}
      • addedInput schema / properties / revised_substantial_completion_date
        Added value: +{
        +  "description": "JSON request body field — revised substantial completion date, only supported for Prime Change Orders on single-tier projects.",
        +  "type": "string"
        +}
    • Changedcreate_commitment_change_order_batch1 field changed
      • addedInput schema / properties / request_for_quote_attachment_ids
        Added 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"
        +}
    • Changedcreate_commitment_change_order_line_item2 fields changed
      • changedInput schema / properties / commitment_line_item_id / description
        Previous 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..."
      • addedInput schema / properties / funding_rule_id
        Added 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"
        +}
    • Changedcreate_commitment_contract_line_item1 field changed
      • addedInput schema / properties / funding_rule_id
        Added 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"
        +}
    • Changedcreate_company_currency_configuration5 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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)."
      • changedInput schema / properties / currency_display / description
        Previous 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."
      • changedInput schema / properties / currency_iso_code / description
        Previous 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 ..."
      • changedInput schema / properties / multicurrency_enabled / description
        Previous 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..."
      • changedInput schema / required
        Previous value: -[
        -  "company_id"
        -]New value: +[
        +  "company_id",
        +  "currency_iso_code"
        +]
    • Changedcreate_company_exchange_rates3 fields changed
      • changedInput schema / properties / base_currency_iso_code / description
        Previous 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..."
      • changedInput schema / properties / company_id / description
        Previous 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."
      • changedInput schema / properties / exchange_rates / description
        Previous 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)."
    • Addedcreate_company_naming_standard_rule
    • Changedcreate_company_segment_item1 field changed
      • addedInput schema / properties / default_uom_id
        Added 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"
        +}
    • Changedcreate_company_tag2 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / company_id / type
        Previous value: -"number"New value: +"string"
    • Removedcreate_company_upload
    • Changedcreate_compliance_document9 fields changed
      • addedInput schema / properties / allow_vendor_submission
        Added value: +{
        +  "description": "JSON request body field — whether vendors are allowed to submit files against this compliance document.",
        +  "type": "boolean"
        +}
      • changedInput schema / properties / document_type / description
        Previous 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."
      • addedInput schema / properties / document_type / enum
        Added value: +[
        +  "bond",
        +  "project_insurance",
        +  "license",
        +  "master_agreement",
        +  "permit",
        +  "safety",
        +  "w9",
        +  "other",
        +  "payroll",
        +  "stored_material",
        +  "closeout"
        +]
      • changedInput schema / properties / effective_at / description
        Previous 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."
      • changedInput schema / properties / expires_at / description
        Previous 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."
      • changedInput schema / properties / name / description
        Previous value: -"JSON request body field — name of the compliance document"New value: +"JSON request body field — display name of the compliance document."
      • addedInput schema / properties / notes
        Added value: +{
        +  "description": "JSON request body field — general notes for the compliance document.",
        +  "type": "string"
        +}
      • changedInput schema / properties / prostore_file_ids / description
        Previous 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."
      • addedInput schema / properties / status
        Added 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"
        +}
    • Changedcreate_configurable_field_sets15 fields changed
      • removedInput schema / properties / action_plan_type_id
        Removed value: -{
        -  "description": "JSON request body field — action Plan Type unique identifier",
        -  "type": "number"
        -}
      • removedInput schema / properties / category
        Removed 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"
        -}
      • removedInput schema / properties / class_name
        Removed 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"
        -}
      • removedInput schema / properties / company_configurable_field_set_default_column_name
        Removed 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"
        -}
      • removedInput schema / properties / company_default
        Removed value: -{
        -  "description": "JSON request body field — if the Configurable Field Set is the company default for new projects",
        -  "type": "boolean"
        -}
      • changedInput schema / properties / company_id / type
        Previous value: -"number"New value: +"string"
      • addedInput schema / properties / configurable_field_set
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — configurable_field_set",
        +  "type": "object"
        +}
      • addedInput schema / properties / custom_field_sections
        Added value: +{
        +  "description": "JSON request body field — custom_field_sections",
        +  "items": {},
        +  "type": "array"
        +}
      • removedInput schema / properties / fields
        Removed value: -{
        -  "additionalProperties": {},
        -  "description": "JSON request body field — all fields that make up the form of the class name.",
        -  "type": "object"
        -}
      • removedInput schema / properties / generic_tool_id
        Removed value: -{
        -  "description": "JSON request body field — generic tool unique identifier",
        -  "type": "number"
        -}
      • removedInput schema / properties / include_lov_entries
        Removed value: -{
        -  "description": "Query string parameter — whether or not to include LOV entries in the response\n(defaults to true)",
        -  "type": "boolean"
        -}
      • removedInput schema / properties / inspection_type_id
        Removed value: -{
        -  "description": "JSON request body field — inspection type unique identifier",
        -  "type": "number"
        -}
      • removedInput schema / properties / name
        Removed value: -{
        -  "description": "JSON request body field — the name for this Custom - Configurable Tools operation",
        -  "type": "string"
        -}
      • removedInput schema / properties / project_ids
        Removed value: -{
        -  "description": "JSON request body field — array of project identifiers",
        -  "items": {},
        -  "type": "array"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "company_id",
        -  "name",
        -  "class_name",
        -  "fields"
        -]New value: +[
        +  "company_id",
        +  "configurable_field_set"
        +]
    • Addedcreate_contract_compliance_document
    • Changedcreate_contributing_behavior1 field changed
      • changedInput schema / properties / name / description
        Previous 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."
    • Changedcreate_contributing_condition1 field changed
      • changedInput schema / properties / name / description
        Previous 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."
    • Changedcreate_cost_item1 field changed
      • changedInput schema / properties / unit / description
        Previous 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)"
    • Addedcreate_custom_field_definitions
    • Addedcreate_custom_field_metadata
    • Changedcreate_direct_cost_line_item5 fields changed
      • changedInput schema / properties / amount / description
        Previous 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"
      • changedInput schema / properties / description / description
        Previous 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"
      • changedInput schema / properties / direct_cost_id / description
        Previous value: -"JSON request body field — unique identifier of the direct cost"New value: +"URL path parameter — unique identifier of the direct cost"
      • changedInput schema / properties / origin_data / description
        Previous 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"
      • changedInput schema / required
        Previous value: -[
        -  "project_id"
        -]New value: +[
        +  "project_id",
        +  "direct_cost_id"
        +]
    • Removedcreate_early_pay_program
    • Changedcreate_environmental6 fields changed
      • changedInput schema / properties / affected_company_id / description
        Previous 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."
      • changedInput schema / properties / environmental_type_id / description
        Previous 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."
      • changedInput schema / properties / estimated_cost_impact / description
        Previous 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."
      • changedInput schema / properties / incident_id / description
        Previous 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."
      • changedInput schema / properties / managed_equipment_id / description
        Previous 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."
      • changedInput schema / properties / work_activity_id / description
        Previous 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."
    • Changedcreate_equipment_company1 field changed
      • addedInput schema / properties / purchase_order
        Added value: +{
        +  "description": "JSON request body field — the purchase order number.",
        +  "type": "string"
        +}
    • Changedcreate_equipment_project1 field changed
      • addedInput schema / properties / purchase_order
        Added value: +{
        +  "description": "JSON request body field — the purchase order number.",
        +  "type": "string"
        +}
    • Addedcreate_field_rule
    • Addedcreate_field_rule_project_scope
    • Changedcreate_group_and_move_markups3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
      • changedInput schema / properties / viewer_doc_id / description
        Previous value: -"URL path parameter — unique identifier of the viewer doc"New value: +"URL path parameter — unique identifier of the viewer document"
    • Changedcreate_harm_source2 fields changed
      • changedInput schema / properties / active / description
        Previous 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."
      • changedInput schema / properties / name / description
        Previous 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."
    • Changedcreate_hazard2 fields changed
      • changedInput schema / properties / active / description
        Previous 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."
      • changedInput schema / properties / name / description
        Previous 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."
    • Changedcreate_incident_action_type1 field changed
      • changedInput schema / properties / name / description
        Previous 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."
    • Changedcreate_meeting_project1 field changed
      • changedInput schema / properties / project_id / description
        Previous value: -"JSON request body field — the ID of the Project the Meetings belongs to"New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_observation_item_response_log1 field changed
      • changedInput schema / properties / status / enum
        Previous value: -[
        -  "initiated",
        -  "ready_for_review",
        -  "not_accepted",
        -  "closed"
        -]New value: +[
        +  "initiated",
        +  "ready_for_review",
        +  "not_accepted",
        +  "closed",
        +  "draft"
        +]
    • Addedcreate_or_update_incident_alert_recipient
    • Changedcreate_pdf_export_for_a_prime_change_order1 field changed
      • changedInput schema / properties / prime_change_order_id / description
        Previous 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"
    • Changedcreate_permission_template2 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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."
      • addedInput schema / required
        Added value: +[
        +  "company_id"
        +]
    • Changedcreate_prime_change_order4 fields changed
      • removedInput schema / properties / drawing_revision_ids
        Removed value: -{
        -  "description": "JSON request body field — drawing Revisions to attach to the response",
        -  "items": {},
        -  "type": "array"
        -}
      • removedInput schema / properties / file_version_ids
        Removed value: -{
        -  "description": "JSON request body field — file Versions to attach to the response",
        -  "items": {},
        -  "type": "array"
        -}
      • addedInput schema / properties / request_for_quote_attachment_ids
        Added 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"
        +}
      • addedInput schema / properties / revised_substantial_completion_date
        Added value: +{
        +  "description": "JSON request body field — revised substantial completion date, only supported for Prime Change Orders on single-tier projects.",
        +  "type": "string"
        +}
    • Changedcreate_prime_change_order_batch1 field changed
      • addedInput schema / properties / request_for_quote_attachment_ids
        Added 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"
        +}
    • Changedcreate_prime_change_order_line_item3 fields changed
      • addedInput schema / properties / funding_rule_id
        Added 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"
        +}
      • changedInput schema / properties / prime_change_order_id / description
        Previous 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"
      • addedInput schema / properties / prime_line_item_id
        Added value: +{
        +  "description": "JSON request body field — iD of the prime contract line item associated with this line item",
        +  "type": "string"
        +}
    • Changedcreate_prime_contract_line_item_project1 field changed
      • addedInput schema / properties / funding_rule_id
        Added 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"
        +}
    • Changedcreate_prime_contract_line_item_v1_01 field changed
      • changedInput schema / properties / project_id / description
        Previous value: -"JSON request body field — unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedcreate_prime_contract_project2 fields changed
      • removedInput schema / properties / contract_start_date
        Removed value: -{
        -  "description": "JSON request body field — only applicable to Work Order Contracts.",
        -  "type": "string"
        -}
      • addedInput schema / properties / signature_required
        Added value: +{
        +  "description": "JSON request body field — if true, a signature is required to execute the contract; otherwise no signature is required.\n",
        +  "type": "boolean"
        +}
    • Changedcreate_project_currency_configuration6 fields changed
      • changedInput schema / properties / company_currency_exchange_rate_override / description
        Previous 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..."
      • changedInput schema / properties / company_id / description
        Previous 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."
      • changedInput schema / properties / currency_display / description
        Previous 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'."
      • changedInput schema / properties / currency_iso_code / description
        Previous 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..."
      • changedInput schema / properties / multicurrency_enabled / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous 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."
    • Changedcreate_project_exchange_rates4 fields changed
      • changedInput schema / properties / base_currency_iso_code / description
        Previous 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..."
      • changedInput schema / properties / company_id / description
        Previous 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."
      • changedInput schema / properties / exchange_rates / description
        Previous 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)."
      • changedInput schema / properties / project_id / description
        Previous 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."
    • Changedcreate_project_inspection_template_item_reference1 field changed
      • changedInput schema / properties / type / enum
        Previous value: -[
        -  "attachment",
        -  "document",
        -  "drawing",
        -  "form",
        -  "image"
        -]New value: +[
        +  "attachment",
        +  "document",
        +  "document_management_document_revision",
        +  "drawing",
        +  "form",
        +  "image"
        +]
    • Addedcreate_project_naming_standard_rule
    • Changedcreate_project_observation_type5 fields changed
      • changedInput schema / properties / active / description
        Previous 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."
      • changedInput schema / properties / category / description
        Previous 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."
      • changedInput schema / properties / name / description
        Previous 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."
      • changedInput schema / properties / observations_category_id / description
        Previous 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..."
      • changedInput schema / properties / parent_id / description
        Previous 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."
    • Changedcreate_requisition_subcontractor_invoices_for_commitment2 fields changed
      • changedInput schema / properties / view / description
        Previous 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..."
      • changedInput schema / properties / view / enum
        Previous value: -[
        -  "default",
        -  "extended",
        -  "items",
        -  "action_policy"
        -]New value: +[
        +  "default",
        +  "extended",
        +  "items",
        +  "action_policy",
        +  "header_only"
        +]
    • Changedcreate_resource_project1 field changed
      • changedInput schema / properties / project_id / description
        Previous value: -"JSON request body field — the ID of the Project the Resource belongs to"New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_submittal1 field changed
      • changedInput schema / properties / responsible_contractor_id / description
        Previous 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"
    • Addedcreate_submittals_from_specs
    • Changedcreate_task_item1 field changed
      • addedInput schema / properties / view
        Added 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"
        +}
    • Changedcreate_timecard_entry_project_21 field changed
      • addedInput schema / properties / serializer_view
        Added 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"
        +}
    • Addedcreate_unified_company_upload
    • Addedcreate_unified_upload
    • Changedcreate_unit_of_measure2 fields changed
      • changedInput schema / properties / name / description
        Previous 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."
      • changedInput schema / properties / uom_category_id / description
        Previous 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`."
    • Changedcreate_workflow_activity_history1 field changed
      • changedInput schema / properties / workflow_instance_id / description
        Previous value: -"JSON request body field — workflow Instance ID"New value: +"Query string parameter — workflow Instance ID"
    • Addedcreate_workflow_bulk_replace_request
    • Addedcreates_a_container_from_shipment_line_items
    • Addedcreates_a_new_adjustment_document
    • Addedcreates_a_new_condition_for_a_specific_line_item_in_a_receipt
    • Addedcreates_a_new_direct_issue_document
    • Addedcreates_a_new_inter_project_transfer
    • Addedcreates_a_new_receipt
    • Addedcreates_a_new_shipment
    • Addedcreates_a_new_stand_alone_transfer
    • Addedcreates_new_labels_in_the_specified_company_and_project
    • Removeddeactivate_early_pay_program
    • Changeddelete_a_budgeted_production_quantity2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"JSON request body field — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / required
        Previous value: -[
        -  "id"
        -]New value: +[
        +  "project_id",
        +  "id"
        +]
    • Addeddelete_a_document_snapshot_from_a_coordination_issue_rest_v2_0
    • Addeddelete_a_lov_code_company
    • Addeddelete_a_lov_code_project
    • Changeddelete_a_manual_forecast_line_item1 field changed
      • addedInput schema / properties / async
        Added 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"
        +}
    • Changeddelete_affliction_type1 field changed
      • changedInput schema / properties / id / description
        Previous value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the affliction type."
    • Addeddelete_an_attachment_for_a_project_asset_type
    • Addeddelete_asset_company
    • Addeddelete_asset_project
    • Removeddelete_attachment
    • Addeddelete_attachment_company
    • Addeddelete_attachment_project
    • Addeddelete_change_event_comment
    • Changeddelete_company_currency_configuration1 field changed
      • changedInput schema / properties / company_id / description
        Previous 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."
    • Addeddelete_company_level_context_by_id
    • Addeddelete_company_naming_standard_rule
    • Changeddelete_configurable_field_set2 fields changed
      • changedInput schema / properties / company_id / type
        Previous value: -"number"New value: +"string"
      • changedInput schema / properties / id / type
        Previous value: -"number"New value: +"string"
    • Changeddelete_context_by_id3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
      • changedInput schema / properties / skip_resource_deletion / description
        Previous value: -"Query string parameter — skip_resource_deletion"New value: +"Query string parameter — when true, skip deletion of associated resources (markups)"
    • Changeddelete_context_by_query_parameters7 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / context_type / description
        Previous value: -"Query string parameter — the context type for this Document Markup operation"New value: +"Query string parameter — context type to filter by"
      • changedInput schema / properties / context_type_id / description
        Previous value: -"Query string parameter — unique identifier of the context type"New value: +"Query string parameter — context type ID to filter by"
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
      • changedInput schema / properties / skip_resource_deletion / description
        Previous value: -"Query string parameter — skip_resource_deletion"New value: +"Query string parameter — when true, skip deletion of associated resources (markups)"
      • changedInput schema / properties / sub_context_type / description
        Previous value: -"Query string parameter — the sub context type for this Document Markup operation"New value: +"Query string parameter — sub-context type to filter by"
      • changedInput schema / properties / sub_context_type_id / description
        Previous value: -"Query string parameter — unique identifier of the sub context type"New value: +"Query string parameter — sub-context type ID to filter by"
    • Addeddelete_contract_compliance_document
    • Changeddelete_contributing_behavior1 field changed
      • changedInput schema / properties / id / description
        Previous 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."
    • Changeddelete_contributing_condition1 field changed
      • changedInput schema / properties / id / description
        Previous 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."
    • Addeddelete_custom_field_definition
    • Changeddelete_direct_cost_item1 field changed
      • changedInput schema / properties / id / description
        Previous 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"
    • Addeddelete_field_rule
    • Addeddelete_field_rule_project_scope
    • Changeddelete_group3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / delete_resources / description
        Previous value: -"Query string parameter — the delete resources for this Document Markup operation"New value: +"Query string parameter — when true, also delete associated resources (markups)"
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
    • Changeddelete_harm_source1 field changed
      • changedInput schema / properties / id / description
        Previous 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."
    • Changeddelete_hazard1 field changed
      • changedInput schema / properties / id / description
        Previous 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."
    • Changeddelete_incident1 field changed
      • changedInput schema / properties / id / description
        Previous 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."
    • Changeddelete_incident_action_type1 field changed
      • changedInput schema / properties / id / description
        Previous value: -"URL path parameter — incident Action Type ID"New value: +"URL path parameter — unique identifier of the incident action type."
    • Changeddelete_incident_alert_recipient1 field changed
      • changedInput schema / properties / id / description
        Previous value: -"URL path parameter — incident Alert Recipient's User ID"New value: +"URL path parameter — user ID of the incident alert recipient."
    • Changeddelete_layer2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
    • Changeddelete_markups3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
      • changedInput schema / properties / viewer_doc_id / description
        Previous value: -"URL path parameter — unique identifier of the viewer doc"New value: +"URL path parameter — unique identifier of the viewer document"
    • Removeddelete_payout
    • Changeddelete_prime_change_order_line_item1 field changed
      • changedInput schema / properties / prime_change_order_id / description
        Previous 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"
    • Changeddelete_project_currency_configuration2 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous 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."
    • Addeddelete_project_naming_standard_rule
    • Changeddelete_project_observation_type1 field changed
      • changedInput schema / properties / id / description
        Previous 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."
    • Addeddelete_specification_area_transfer
    • Addeddelete_specification_upload
    • Changeddelete_stamp3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — the unique identifier of the company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — the unique identifier of the project"New value: +"URL path parameter — unique identifier of the project"
      • changedInput schema / properties / stamp_id / description
        Previous value: -"URL path parameter — the unique identifier of the stamp to delete"New value: +"URL path parameter — unique identifier of the stamp to delete"
    • Addeddeletes_a_condition_from_a_receipt_line_item_and_adjusts_line
    • Addeddeletes_a_line_item_from_a_direct_issue_document
    • Addeddeletes_a_line_item_from_a_draft_shipment
    • Addeddeletes_a_line_item_from_a_draft_transfer
    • Addeddeletes_a_line_item_from_an_inter_project_transfer
    • Addeddeletes_a_material_requirement_line_item
    • Addeddeletes_a_purchase_order_and_optionally_its_resources
    • Addeddeletes_a_receipt_line_item
    • Addeddeletes_an_adjustment_line_item_from_an_adjustment_document
    • Addeddeletes_attachment_s_from_a_direct_issue
    • Addeddeletes_attachment_s_from_an_adjustment_resource
    • Addeddeletes_attachments_from_a_defect_resource
    • Addeddeletes_attachments_from_a_material_requirements_resource
    • Addeddeletes_attachments_from_a_material_resource
    • Addeddeletes_attachments_from_a_purchase_order_resource
    • Addeddeletes_attachments_from_a_receipt_resource
    • Addeddeletes_attachments_from_a_shipment_resource
    • Addeddeletes_attachments_from_a_transfer
    • Addeddeletes_attachments_from_an_inter_project_transfer
    • Changeddestroy_action1 field changed
      • changedInput schema / properties / id / description
        Previous value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the incident action."
    • Changeddestroy_environmental1 field changed
      • changedInput schema / properties / id / description
        Previous 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."
    • Changeddestroy_property_damage1 field changed
      • changedInput schema / properties / id / description
        Previous 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."
    • Addeddestroy_specification_section_revision
    • Changeddestroy_task_item1 field changed
      • addedInput schema / properties / view
        Added 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"
        +}
    • Removeddisable_payments
    • Changeddocument_markup_permissions4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
    • Changeddownload_all_company_level_email_attachments2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changeddownload_all_email_attachments2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addeddownload_all_generic_tool_item_attachments
    • Addeddownload_all_response_attachments
    • Addeddownload_bulk_replace_request_errors_csv
    • Changeddownload_coordination_issues3 fields changed
      • addedInput 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"
        +}
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addeddownload_external_rfi_and_responses_attachments
    • Addeddownload_external_rfi_pdf_export
    • Addeddownload_log_of_specification_section_revision
    • Changeddownload_rfis_list3 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
      • addedInput schema / properties / table_configuration_for_export
        Added 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"
        +}
    • Changeddownload_schedule_file2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addeddownload_single_pdf_of_specification_section_revisions
    • Addeddownload_specification_section_revision
    • Addeddownload_zip_of_specification_section_revisions
    • Removedenable_payments
    • Changedexport_company_level_email_communication2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedexport_email_communication_to_pdf2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedexport_forms_with_bids
    • Changedfetch_active_support_pin2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedfetch_attachment_by_id_company2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedfetch_attachment_by_id_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedfind_configurable_field_set_by_index3 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
      • addedInput schema / properties / scope__incident_type_id
        Added 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"
        +}
    • Addedfind_or_create_an_annotated_document
    • Removedfind_or_create_an_annotated_document_with_markup_context
    • Changedgenerates_pdf_document2 fields changed
      • removedInput schema / properties / filters__id
        Removed value: -{
        -  "description": "Query string parameter — returns users whose id attribute matches the parameter.",
        -  "type": "number"
        -}
      • addedInput schema / properties / filters__id__
        Added value: +{
        +  "description": "Query string parameter — returns users whose id attribute matches the parameter.",
        +  "items": {},
        +  "type": "array"
        +}
    • Changedget_a_list_of_possible_timesheet_creator_ids1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_a_single_group2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_a_single_job_title2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_a_single_person2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_a_single_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_a_single_resource_planning_tag2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_a_workflow_instance_company2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_a_workflow_instance_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_a_workflow_template_version2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_accessible_groups_for_authenticated_user_by_context7 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / context_type / description
        Previous value: -"URL path parameter — the context type for this Document Markup operation"New value: +"URL path parameter — context type (e.g. document_revision)"
      • changedInput schema / properties / context_type_id / description
        Previous value: -"URL path parameter — unique identifier of the context type"New value: +"URL path parameter — context type identifier"
      • changedInput schema / properties / layer_id / description
        Previous value: -"Query string parameter — unique identifier of the layer"New value: +"Query string parameter — optional layer ID to filter groups by"
      • changedInput schema / properties / page / description
        Previous value: -"Query string parameter — page number for paginated results (default: 1)"New value: +"Query string parameter — page number for pagination (1-based)"
      • changedInput schema / properties / per_page / description
        Previous 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)"
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
    • Changedget_accessible_layers_for_authenticated_user_by_context6 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / context_type / description
        Previous value: -"URL path parameter — the context type for this Document Markup operation"New value: +"URL path parameter — context type (e.g. document_revision)"
      • changedInput schema / properties / context_type_id / description
        Previous value: -"URL path parameter — unique identifier of the context type"New value: +"URL path parameter — context type identifier"
      • changedInput schema / properties / page / description
        Previous value: -"Query string parameter — page number for paginated results (default: 1)"New value: +"Query string parameter — page number for pagination (1-based)"
      • changedInput schema / properties / per_page / description
        Previous 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)"
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
    • Changedget_active_reinspection2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_activity_by_id2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_activity_link_by_id2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_affected_body_part_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_affected_body_parts1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_affected_company_filter_options_project1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_affected_company_filter_options_project_v1_01 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_affected_company_filter_options_project_v1_0_21 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_affected_company_filter_options_project_v1_0_41 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_affected_parties_filter_options_project1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_affected_parties_filter_options_project_v1_01 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_affected_persons_filter_options_project1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_affected_persons_filter_options_project_v1_01 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_affliction_type_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_all_attachments_for_equipment_company2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_all_attachments_for_equipment_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_all_company_groups1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Addedget_all_configurable_columns_for_adjustments
    • Addedget_all_configurable_columns_for_defects
    • Addedget_all_configurable_columns_for_materials
    • Addedget_all_configurable_columns_project
    • Addedget_all_configurable_columns_project_v2_0
    • Addedget_all_configurable_columns_project_v2_0_2
    • Addedget_all_configurable_columns_project_v2_0_4
    • Changedget_all_custom_fields1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Addedget_all_defect_line_items
    • Addedget_all_defects
    • Changedget_all_equipment_company2 fields changed
      • addedInput schema / properties / filters__exclude_equipment_in_project_ids
        Added value: +{
        +  "description": "Query string parameter — exclude equipment associated with these project ids",
        +  "type": "string"
        +}
      • addedInput schema / properties / filters__identification_numbers
        Added value: +{
        +  "description": "Query string parameter — filter identification_numbers",
        +  "type": "string"
        +}
    • Addedget_all_estimating_projects
    • Changedget_all_job_titles_belonging_to_a_group1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_all_job_titles_in_the_company1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Addedget_all_line_items_for_a_specific_purchase_order
    • Addedget_all_line_items_for_a_specific_shipment
    • Addedget_all_materials
    • Addedget_all_properties_for_a_resource_company
    • Addedget_all_properties_for_a_resource_project
    • Addedget_all_properties_for_a_resource_project_v2_0
    • Addedget_all_properties_for_a_resource_project_v2_0_10
    • Addedget_all_properties_for_a_resource_project_v2_0_11
    • Addedget_all_properties_for_a_resource_project_v2_0_2
    • Addedget_all_properties_for_a_resource_project_v2_0_4
    • Addedget_all_properties_for_a_resource_project_v2_0_6
    • Addedget_all_properties_for_a_resource_project_v2_0_7
    • Addedget_all_properties_for_a_resource_project_v2_0_8
    • Addedget_all_properties_for_a_resource_project_v2_0_9
    • Addedget_all_properties_for_adjustments
    • Addedget_all_properties_for_defects
    • Addedget_all_properties_for_issuing
    • Addedget_all_properties_for_materials
    • Addedget_all_properties_project
    • Addedget_all_properties_project_v2_0
    • Addedget_all_properties_project_v2_0_2
    • Addedget_all_properties_project_v2_0_4
    • Addedget_all_purchase_order_line_items
    • Addedget_all_purchase_orders
    • Changedget_all_resource_planning_tag_for_a_company1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_all_resource_planning_tag_for_a_group1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_all_resource_requests_for_a_single_project1 field changed
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_all_resource_requests_for_projects_in_a_single_group1 field changed
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_all_resource_requests_in_a_company1 field changed
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedget_all_shipment_line_items
    • Addedget_all_shipments
    • Changedget_all_time_off_for_a_single_person2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedget_asset_naming_fields_company
    • Addedget_asset_naming_fields_project
    • Changedget_assignee_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Addedget_attachment_for_project_asset_type
    • Changedget_bid_board_project_by_id2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_bid_board_project_custom_fields2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedget_bulk_company_workflowable_object_instance_histories
    • Addedget_bulk_project_workflowable_object_instance_histories
    • Removedget_calendar_by_id
    • Addedget_calendar_by_id_v2_1
    • Changedget_change_event_settings2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedget_change_history_for_a_direct_issuing
    • Addedget_change_history_for_a_material
    • Addedget_change_history_for_a_purchase_order
    • Addedget_change_history_for_a_shipment
    • Addedget_change_history_for_a_transfer
    • Addedget_change_history_for_an_adjustment
    • Addedget_client_configuration_for_specification_sections
    • Changedget_company_currency_configuration3 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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."
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_company_exchange_rates3 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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."
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedget_company_level_context_by_id
    • Addedget_company_level_contexts
    • Addedget_company_level_groups
    • Addedget_company_level_layer_structure
    • Addedget_company_level_layers
    • Addedget_company_naming_standard_rules
    • Addedget_company_part_upload_url
    • Changedget_company_snapshots_summary5 fields changed
      • addedInput schema / properties / comparison_financial_period_id
        Added 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"
        +}
      • addedInput 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"
        +}
      • addedInput schema / properties / filters__project_number__
        Added value: +{
        +  "description": "Query string parameter — filter snapshots by one or more project numbers",
        +  "items": {},
        +  "type": "array"
        +}
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedget_company_upload_status
    • Addedget_company_workflowable_object_instance_histories
    • Addedget_complete_layer_structure
    • Removedget_complete_layer_structure_by_context_type_and_type_id
    • Changedget_configuration_for_uom_master_list2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_context_by_id4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
    • Changedget_contexts10 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / filters__context_type_id / description
        Previous value: -"Query string parameter — filters[context_type_id]"New value: +"Query string parameter — context type ID to filter by"
      • changedInput schema / properties / filters__created_before / description
        Previous value: -"Query string parameter — filters[created_before]"New value: +"Query string parameter — filter contexts created before this ISO date-time"
      • changedInput schema / properties / filters__id / description
        Previous value: -"Query string parameter — filter results by id"New value: +"Query string parameter — jSON array of context IDs to filter by"
      • changedInput schema / properties / filters__subcontext_type_id / description
        Previous value: -"Query string parameter — filters[subcontext_type_id]"New value: +"Query string parameter — sub-context type ID to filter by"
      • changedInput schema / properties / filters__updated_at / description
        Previous value: -"Query string parameter — filter results by updated at"New value: +"Query string parameter — filter by updated_at range in ISO format (start...end)"
      • changedInput schema / properties / page / description
        Previous value: -"Query string parameter — page number for paginated results (default: 1)"New value: +"Query string parameter — page number for pagination (1-based)"
      • changedInput schema / properties / per_page / description
        Previous 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)"
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
      • removedInput schema / properties / view
        Removed value: -{
        -  "description": "Query string parameter — response detail level. Use 'normal' for standard fields or 'extended' for all fields",
        -  "type": "string"
        -}
    • Addedget_contract_compliance_document
    • Changedget_contracts_invoice_configuration2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_contributing_behavior_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_contributing_condition_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_cost_item2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_custom_field_data_types2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_daily_log_headers_for_the_project2 fields changed
      • changedInput schema / properties / end_date / description
        Previous 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..."
      • changedInput schema / properties / start_date / description
        Previous 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..."
    • Addedget_defect_by_id
    • Addedget_defect_header_by_id
    • Addedget_defect_line_items_by_defect_id
    • Addedget_details_of_a_single_attachment_for_a_defect_resource
    • Addedget_details_of_an_attachment_for_a_direct_issue
    • Addedget_details_of_an_attachment_for_a_material
    • Addedget_details_of_an_attachment_for_a_purchase_order
    • Addedget_details_of_an_attachment_for_a_shipment
    • Addedget_details_of_an_attachment_for_a_transfer
    • Addedget_details_of_an_attachment_for_an_adjustment
    • Addedget_details_of_an_attachment_for_an_inter_project_transfer
    • Addedget_details_of_attachments_for_a_direct_issue
    • Addedget_details_of_attachments_for_a_material
    • Addedget_details_of_attachments_for_a_purchase_order
    • Addedget_details_of_attachments_for_a_shipment
    • Addedget_details_of_attachments_for_a_transfer
    • Addedget_details_of_attachments_for_an_adjustment
    • Addedget_details_of_attachments_for_an_inter_project_transfer
    • Addedget_details_of_issuing_records_summary
    • Addedget_details_of_one_or_more_attachments_for_a_defect_resource
    • Addedget_divisions_and_sets_options_for_specification_sections_for_a
    • Changedget_environmental_type_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_equipment_by_id_company2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_equipment_by_id_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_equipment_by_project_project1 field changed
      • changedInput schema / properties / view / enum
        Previous value: -[
        -  "compact",
        -  "short",
        -  "normal",
        -  "ids"
        -]New value: +[
        +  "compact",
        +  "basic",
        +  "short",
        +  "normal",
        +  "ids"
        +]
    • Changedget_equipment_maintenance_record_by_its_id_company2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_equipment_maintenance_record_by_its_id_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_equipment_projects_company1 field changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
    • Addedget_estimating_project_data_by_procore_project_id
    • Addedget_estimating_settings
    • Changedget_export_options_for_existing_rfi1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_file_by_its_uuid2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_filing_type_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_filing_types1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_group_by_id4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
    • Changedget_groups11 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / filters__context_id / description
        Previous value: -"Query string parameter — filter results by context id"New value: +"Query string parameter — context ID to filter groups by"
      • changedInput schema / properties / filters__context_type_id / description
        Previous value: -"Query string parameter — filters[context_type_id]"New value: +"Query string parameter — context type ID to filter by"
      • changedInput schema / properties / filters__created_before / description
        Previous value: -"Query string parameter — filters[created_before]"New value: +"Query string parameter — filter groups created before this ISO date-time"
      • changedInput schema / properties / filters__id / description
        Previous value: -"Query string parameter — filter results by id"New value: +"Query string parameter — jSON array of group IDs to filter by"
      • changedInput schema / properties / filters__subcontext_type_id / description
        Previous value: -"Query string parameter — filters[subcontext_type_id]"New value: +"Query string parameter — sub-context type ID to filter by"
      • changedInput schema / properties / filters__updated_at / description
        Previous value: -"Query string parameter — filter results by updated at"New value: +"Query string parameter — filter by updated_at range in ISO format (start...end)"
      • changedInput schema / properties / page / description
        Previous value: -"Query string parameter — page number for paginated results (default: 1)"New value: +"Query string parameter — page number for pagination (1-based)"
      • changedInput schema / properties / per_page / description
        Previous 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)"
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
      • removedInput schema / properties / view
        Removed value: -{
        -  "description": "Query string parameter — response detail level. Use 'normal' for standard fields or 'extended' for all fields",
        -  "type": "string"
        -}
    • Changedget_groups_for_layer4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / page / description
        Previous value: -"Query string parameter — page number for paginated results (default: 1)"New value: +"Query string parameter — page number for pagination (1-based)"
      • changedInput schema / properties / per_page / description
        Previous 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)"
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
    • Changedget_harm_source_filter_options_project1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_harm_source_filter_options_project_v1_01 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_hazard_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_import_logs2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_import_status2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_incident_statuses1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_information_of_a_budget_change2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedget_issuing_line_items
    • Changedget_layer_by_id4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
    • Changedget_layers11 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / filters__context_id / description
        Previous value: -"Query string parameter — filter results by context id"New value: +"Query string parameter — context ID to filter layers by"
      • changedInput schema / properties / filters__context_type_id / description
        Previous value: -"Query string parameter — filters[context_type_id]"New value: +"Query string parameter — context type ID to filter by"
      • changedInput schema / properties / filters__created_before / description
        Previous value: -"Query string parameter — filters[created_before]"New value: +"Query string parameter — filter layers created before this ISO date-time"
      • changedInput schema / properties / filters__id / description
        Previous value: -"Query string parameter — filter results by id"New value: +"Query string parameter — jSON array of layer IDs to filter by"
      • changedInput schema / properties / filters__subcontext_type_id / description
        Previous value: -"Query string parameter — filters[subcontext_type_id]"New value: +"Query string parameter — sub-context type ID to filter by"
      • changedInput schema / properties / filters__updated_at / description
        Previous value: -"Query string parameter — filter results by updated at"New value: +"Query string parameter — filter by updated_at range in ISO format (start...end)"
      • changedInput schema / properties / page / description
        Previous value: -"Query string parameter — page number for paginated results (default: 1)"New value: +"Query string parameter — page number for pagination (1-based)"
      • changedInput schema / properties / per_page / description
        Previous 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)"
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
      • removedInput schema / properties / view
        Removed value: -{
        -  "description": "Query string parameter — response detail level. Use 'normal' for standard fields or 'extended' for all fields",
        -  "type": "string"
        -}
    • Changedget_layers_for_context4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / page / description
        Previous value: -"Query string parameter — page number for paginated results (default: 1)"New value: +"Query string parameter — page number for pagination (1-based)"
      • changedInput schema / properties / per_page / description
        Previous 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)"
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
    • Addedget_line_items_for_a_transfer
    • Addedget_list_of_deleted_specification_sections_for_a_project_company
    • Addedget_list_of_deleted_specification_sections_for_a_project_v2_1
    • Changedget_location_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_look_ahead_data1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_managed_equipment_filter_options_project1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_managed_equipment_filter_options_project_v1_01 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_managed_equipment_filter_options_project_v1_0_21 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_managed_equipment_filter_options_project_v1_0_41 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_markup_stamp5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
      • changedInput schema / properties / viewer_doc_id / description
        Previous value: -"URL path parameter — unique identifier of the viewer doc"New value: +"URL path parameter — unique identifier of the viewer document"
    • Addedget_markups_by_groups
    • Addedget_material_details_by_id
    • Addedget_meeting_change_history
    • Changedget_my_open_items_statistics2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_next_available_number2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_next_available_number_by_spec_section2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_observation_item_pdf_url2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_one_coordination_issue_viewpoint_model_manager_or_legacy4 fields changed
      • changedInput schema / properties / included / description
        Previous 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..."
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
      • addedInput schema / properties / viewpoint_format
        Added 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"
        +}
    • Changedget_open_items_statistics2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_operation_details2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedget_or_create_company_level_context_with_hierarchy
    • Changedget_or_create_context_with_hierarchy3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / context_type / enum
        Previous value: -[
        -  "document_revision",
        -  "document_container"
        -]New value: +[
        +  "document_revision",
        +  "document_container",
        +  "FileVersion",
        +  "folders_attachments",
        +  "specification_section_revision",
        +  "drawing_revision"
        +]
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
    • Addedget_or_create_document_info
    • Removedget_or_create_document_info_v1_1
    • Removedget_or_refresh_an_access_token
    • Addedget_paginated_receipt_details
    • Addedget_paginated_receipt_line_items
    • Addedget_paginated_receipt_line_items_for_a_receipt_with_specified_id
    • Changedget_permission_level_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Addedget_permissions_and_feature_flags_for_specification_sections
    • Changedget_person_assignments1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_persons_assignment_history_data1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Addedget_procore_default_fieldsets_configuration_company
    • Addedget_procore_default_fieldsets_configuration_project
    • Changedget_project_assignments1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_project_currency_configuration4 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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."
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
      • changedInput schema / properties / project_id / description
        Previous 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."
    • Changedget_project_exchange_rates5 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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."
      • changedInput schema / properties / include_inactive / description
        Previous 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...."
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
      • changedInput schema / properties / project_id / description
        Previous 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."
    • Removedget_project_incident_configuration
    • Addedget_project_incidents_configuration
    • Addedget_project_naming_standard_rules
    • Changedget_project_task_by_id_company2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_project_task_by_id_company_v2_02 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedget_project_workflowable_object_instance_histories
    • Changedget_projects_assignment_history_data1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Addedget_purchase_order_header_details
    • Addedget_receipt_change_history
    • Addedget_receipt_header_details_by_id
    • Addedget_receipt_properties
    • Changedget_requisition_compliance_document2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_resource_planning_notification_profiles2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_responsible_company_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_schedule_by_id2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_schedule_import_processing_state2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_schedule_metadata2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedget_shipment_header_details
    • Changedget_single_custom_field2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_single_time_off_record2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_stamps3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — the unique identifier of the company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / per_page / description
        Previous 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)"
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — the unique identifier of the project"New value: +"URL path parameter — unique identifier of the project"
    • Changedget_status_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_tags_requiring_action_report1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_the_daily_log_header_via_date_or_id2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_the_minutes_and_date_created_for_all_parent_topics_project1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_the_minutes_and_date_created_for_all_parent_topics_v1_01 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Addedget_the_specifications_user_permissions
    • Changedget_timeline_event_by_id2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Removedget_token_info
    • Changedget_total_workers_and_man_hours2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedget_unified_company_upload_url
    • Addedget_unified_part_upload_url
    • Addedget_unified_upload_status
    • Addedget_unified_upload_url
    • Changedget_units_of_measure1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Addedget_unreviewed_uploads_for_specification_sections_for_a_2
    • Addedget_unreviewed_uploads_for_specification_sections_for_a_project
    • Addedget_vendors_for_a_company
    • Changedget_work_activity_filter_options_project1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_work_activity_filter_options_project_v1_01 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_work_activity_filter_options_project_v1_0_21 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_work_activity_filter_options_project_v1_0_41 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedget_workflow_data2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_workflow_instance_history_company3 fields changed
      • addedInput 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"
        +}
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_workflow_instance_history_project3 fields changed
      • addedInput 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"
        +}
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_workflow_preset_company2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedget_workflow_preset_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedgets_a_direct_issue_record_by_id
    • Addedgets_a_paginated_list_of_adjustment_documents
    • Addedgets_a_paginated_list_of_adjustment_line_items
    • Addedgets_a_paginated_list_of_inter_project_transfer_line_items
    • Addedgets_a_paginated_list_of_inter_project_transfer_summaries
    • Addedgets_a_paginated_list_of_transfer_line_items_across_all
    • Addedgets_a_paginated_list_of_transfers_for_the_project
    • Addedgets_all_available_resource_types_in_the_system
    • Addedgets_all_line_items_for_a_direct_issue_record
    • Addedgets_all_material_requirements_line_items
    • Addedgets_associated_documents_for_a_purchase_order
    • Addedgets_change_history_for_a_defect
    • Addedgets_change_history_for_a_material_requirement
    • Addedgets_configurable_columns_for_inter_project_transfers
    • Addedgets_configurable_columns_for_the_issuing_resource
    • Addedgets_configurable_columns_for_the_receipt_view
    • Addedgets_details_of_a_single_attachment_for_a_material_requirements
    • Addedgets_details_of_a_single_attachment_for_a_receipt_resource
    • Addedgets_details_of_a_specific_material_requirements_header_by_its
    • Addedgets_details_of_attachments_for_a_material_requirements_resource
    • Addedgets_details_of_attachments_for_a_receipt_resource
    • Changedgets_documents_attached_to_bid_package2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedgets_line_items_for_a_specific_adjustment_document
    • Addedgets_line_items_for_a_specific_inter_project_transfer
    • Addedgets_line_items_for_a_specific_material_requirements_document
    • Addedgets_material_requirements_based_on_the_specified_view_type
    • Addedgets_materials_with_name_and_unit_of_measure
    • Addedgets_properties_for_inter_project_transfers
    • Addedgets_related_documents_for_a_defect
    • Addedgets_related_documents_for_a_material
    • Addedgets_related_documents_for_a_material_requirement
    • Addedgets_related_documents_for_a_purchase_order
    • Addedgets_related_documents_for_a_receipt
    • Addedgets_related_documents_for_a_shipment
    • Addedgets_related_documents_for_receipts_by_dashboard_type
    • Addedgets_related_documents_for_shipments_by_dashboard_type
    • Addedgets_the_change_history_for_a_specific_inter_project_transfer
    • Addedgets_the_header_details_for_a_specific_adjustment_document
    • Addedgets_the_header_details_for_a_specific_inter_project_transfer
    • Addedgets_transfer_details_by_id_based_on_the_specified_view_type
    • Removedgrant_app_authorization
    • Addedheader_info_for_specification_section_revision
    • Changedinitiate_schedule_import1 field changed
      • changedInput schema / properties / file / description
        Previous 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."
    • Changedit_fetches_a_budget_note2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addeditem_scoped_document_markup_permissions
    • Addedlink_sub_assets_to_a_parent_asset_company
    • Addedlink_sub_assets_to_a_parent_asset_project
    • Changedlist_accepted_weather_conditions_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedlist_accepted_weather_conditions_project_v1_02 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedlist_action_plan_parties1 field changed
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_activities4 fields changed
      • addedInput schema / properties / filters__finish_date__gte
        Added 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"
        +}
      • addedInput schema / properties / filters__finish_date__lte
        Added 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"
        +}
      • addedInput schema / properties / filters__start_date__gte
        Added 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"
        +}
      • addedInput schema / properties / filters__start_date__lte
        Added 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"
        +}
    • Changedlist_affliction_types2 fields changed
      • addedInput schema / properties / filters__query
        Added value: +{
        +  "description": "Query string parameter — return item(s) containing query.",
        +  "type": "string"
        +}
      • changedInput schema / properties / sort / description
        Previous value: -"Query string parameter — sort order for results. Prefix with '-' for descending order"New value: +"Query string parameter — sort results by the specified field."
    • Removedlist_all_attachments
    • Addedlist_all_attachments_company
    • Addedlist_all_attachments_project
    • Addedlist_all_attachments_project_v2_0
    • Changedlist_all_available_permission_templates_for_a_project1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Addedlist_all_connection_statuses_for_external_rfis_filter_options
    • Changedlist_all_maintenance_logs_attachment1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_all_project_crew_ids3 fields changed
      • addedInput schema / properties / filters__deleted_at
        Added value: +{
        +  "description": "Query string parameter — scope crew IDs by deleted_at datetime/date range.",
        +  "type": "string"
        +}
      • addedInput schema / properties / filters__id
        Added value: +{
        +  "description": "Query string parameter — scope crew IDs to the specified crew IDs.",
        +  "items": {},
        +  "type": "array"
        +}
      • addedInput schema / properties / filters__with_search
        Added value: +{
        +  "description": "Query string parameter — scope crew IDs by search text.",
        +  "type": "string"
        +}
    • Changedlist_all_project_crews4 fields changed
      • addedInput schema / properties / filters__deleted_at
        Added 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"
        +}
      • addedInput schema / properties / filters__id
        Added value: +{
        +  "description": "Query string parameter — return crew(s) with the specified IDs.",
        +  "items": {},
        +  "type": "array"
        +}
      • addedInput schema / properties / filters__with_search
        Added value: +{
        +  "description": "Query string parameter — filter crews by search text.",
        +  "type": "string"
        +}
      • addedInput schema / properties / serializer_view
        Added value: +{
        +  "description": "Query string parameter — changes what fields are included in the response.",
        +  "enum": [
        +    "ids_only"
        +  ],
        +  "type": "string"
        +}
    • Changedlist_alternative_response_sets1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_app_installations_v1_01 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Addedlist_asset_statuses_company
    • Addedlist_asset_statuses_project
    • Addedlist_asset_system_states
    • Addedlist_asset_types_company
    • Addedlist_asset_types_project
    • Addedlist_assets_company
    • Addedlist_assets_project
    • Changedlist_assignable_users1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_assignee_company_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_assignee_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Addedlist_attachments_company
    • Addedlist_attachments_for_project_asset_type
    • Addedlist_attachments_project
    • Addedlist_available_external_rfi_filter_options
    • Addedlist_available_fields_for_rule_configuration
    • Addedlist_available_fields_for_rule_configuration_project_scope
    • Changedlist_available_filters_for_coordination_issues1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_available_observation_item_statuses_with_localized_labels2 fields changed
      • changedInput schema / properties / id / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_available_rfi_assigned_id_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_available_rfi_ball_in_court_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_available_rfi_cost_code_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_available_rfi_filters2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedlist_available_rfi_prefix_stage_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_available_rfi_priority_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_available_rfi_received_from_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_available_rfi_responsible_contractor_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_available_rfi_rfi_manager_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_available_rfi_status_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_available_rfi_sub_job_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_available_rfis_locations1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_available_status_transitions2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedlist_available_statuses_for_external_rfis_filter_options
    • Changedlist_available_submittal_filters1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_bid_packages_project4 fields changed
      • addedInput schema / properties / filters__bid_due_date
        Added value: +{
        +  "description": "Query string parameter — return item(s) whose associated bid package has the specified bid due date (ISO 8601 date format)",
        +  "type": "string"
        +}
      • addedInput schema / properties / filters__created_at
        Added value: +{
        +  "description": "Query string parameter — return item(s) within a specific created at iso8601 datetime range",
        +  "type": "string"
        +}
      • addedInput schema / properties / filters__has_bid_forms
        Added 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"
        +}
      • addedInput schema / properties / filters__status
        Added 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"
        +}
    • Changedlist_bid_uploads1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_bids_within_a_company1 field changed
      • changedInput schema / properties / company_id / type
        Previous value: -"number"New value: +"string"
    • Removedlist_bids_within_a_project
    • Addedlist_bids_within_a_project_company
    • Addedlist_bids_within_a_project_v1_0
    • Changedlist_body_parts1 field changed
      • changedInput schema / properties / sort / description
        Previous value: -"Query string parameter — sort order for results. Prefix with '-' for descending order"New value: +"Query string parameter — sort results by the specified field."
    • Changedlist_budget_change_summaries2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedlist_budget_detail_columns1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_budget_detail_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Removedlist_calendars
    • Addedlist_calendars_v2_1
    • Addedlist_change_event_comments
    • Changedlist_change_event_production_quantities1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_change_events2 fields changed
      • addedInput schema / properties / filters__search
        Added value: +{
        +  "description": "Query string parameter — return item(s) matching the specified Search query.",
        +  "type": "string"
        +}
      • removedInput schema / properties / revenue_unit_cost_project_currency
        Removed value: -{
        -  "additionalProperties": {},
        -  "description": "JSON request body field — return Change Events with Change Items having the specified revenue unit cost in project currency",
        -  "type": "object"
        -}
    • Addedlist_change_history_company
    • Addedlist_change_history_project
    • Changedlist_change_order_requests1 field changed
      • addedInput schema / properties / view
        Added 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"
        +}
    • Addedlist_change_type_filter_options_company
    • Addedlist_change_type_filter_options_project
    • Changedlist_checklist_list_assigned_company_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Removedlist_checklist_list_closed_by_contact_filter_options_project_v1
    • Addedlist_checklist_list_closed_by_contact_filter_options_v1_0
    • Changedlist_checklist_list_created_by_contact_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_checklist_list_equipment_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_checklist_list_inspection_type_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_checklist_list_inspector_filter_options_project_v1_01 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_checklist_list_location_filter_options_project_v1_01 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_checklist_list_point_of_contact_filter_options_project_v1_01 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_checklist_list_responsible_contractor_filter_options_21 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Removedlist_checklist_list_specification_section_filter_options
    • Addedlist_checklist_list_specification_section_filter_options_v1_0
    • Changedlist_checklist_list_status_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_checklist_list_template_filter_options_project_v1_01 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_checklist_list_trade_filter_options_project_v1_01 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_checklist_signature_requests1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_checklists1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_commitment_change_order_line_items1 field changed
      • addedInput schema / properties / view
        Added 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"
        +}
    • Addedlist_commitment_contract_attachments
    • Changedlist_commitment_contract_line_items1 field changed
      • addedInput schema / properties / view
        Added 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"
        +}
    • Changedlist_commitment_contracts1 field changed
      • addedInput schema / properties / filters__search
        Added value: +{
        +  "description": "Query string parameter — returns item(s) matching the specified search query string.",
        +  "type": "string"
        +}
    • Changedlist_communication_threads2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedlist_company_checklist_sections1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_company_checklist_template_sections1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Removedlist_company_folders_and_files
    • Changedlist_company_project_status_snapshots5 fields changed
      • addedInput schema / properties / comparison_budget_column_ids
        Added value: +{
        +  "description": "Query string parameter — restrict comparison data to these budget column IDs. When omitted, comparison is returned for all columns.",
        +  "items": {},
        +  "type": "array"
        +}
      • addedInput schema / properties / comparison_financial_period_id
        Added 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"
        +}
      • addedInput 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"
        +}
      • addedInput schema / properties / filters__project_number__
        Added value: +{
        +  "description": "Query string parameter — filter snapshots by one or more project numbers",
        +  "items": {},
        +  "type": "array"
        +}
      • changedInput schema / properties / sort / enum
        Previous value: -[
        -  "created_at",
        -  "-created_at"
        -]New value: +[
        +  "created_at",
        +  "-created_at",
        +  "project_number",
        +  "-project_number",
        +  "status",
        +  "-status"
        +]
    • Addedlist_company_root_folder_children
    • Changedlist_company_vendors2 fields changed
      • changedInput schema / properties / view / description
        Previous 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..."
      • changedInput schema / properties / view / enum
        Previous value: -[
        -  "compact",
        -  "normal",
        -  "erp",
        -  "extended",
        -  "directory",
        -  "summary"
        -]New value: +[
        +  "compact",
        +  "directory",
        +  "erp",
        +  "extended",
        +  "minimal",
        +  "normal",
        +  "summary"
        +]
    • Changedlist_company_wbs_patterns2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedlist_company_wbs_segment_item_lists1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_company_wbs_segments1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_companys_projects1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Addedlist_configurable_field_set_sections
    • Changedlist_configurable_field_sets3 fields changed
      • changedInput schema / properties / company_id / type
        Previous value: -"number"New value: +"string"
      • addedInput 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"
        +}
      • removedInput schema / properties / include_lov_entries
        Removed value: -{
        -  "description": "Query string parameter — whether or not to include LOV entries in the response\n(defaults to true)",
        -  "type": "boolean"
        -}
    • Addedlist_contract_compliance_documents
    • Changedlist_contributing_behaviors1 field changed
      • addedInput schema / properties / sort
        Added 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"
        +}
    • Changedlist_contributing_conditions1 field changed
      • addedInput schema / properties / sort
        Added 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"
        +}
    • Changedlist_coordination_issue_assignable_users1 field changed
      • addedInput schema / properties / min_access_level
        Added 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"
        +}
    • Changedlist_coordination_issue_file_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_coordination_issue_viewpoints_legacy_model_manager_rest_v22 fields changed
      • changedInput schema / properties / included / description
        Previous 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..."
      • addedInput schema / properties / viewpoint_format
        Added 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"
        +}
    • Changedlist_coordination_issues1 field changed
      • addedInput 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"
        +}
    • Changedlist_coordination_issues_for_a_project_rest_v2_05 fields changed
      • addedInput 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"
        +}
      • addedInput schema / properties / filters__include_deleted
        Added 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"
        +}
      • addedInput schema / properties / filters__is_private
        Added 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"
        +}
      • changedInput schema / properties / included / description
        Previous 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"
      • removedInput schema / properties / sort / enum
        Removed value: -[
        -  "created_at",
        -  "-created_at",
        -  "updated_at",
        -  "-updated_at",
        -  "due_date",
        -  "-due_date",
        -  "title",
        -  "-title",
        -  "status",
        -  "-status",
        -  "assignee",
        -  "-assignee",
        -  "created_by",
        -  "-created_by"
        -]
    • Changedlist_coordination_issues_in_recycle_bin1 field changed
      • addedInput 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"
        +}
    • Changedlist_coordination_issues_workflow_issues2 fields changed
      • addedInput 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"
        +}
      • removedInput schema / properties / sort / enum
        Removed value: -[
        -  "created_at",
        -  "-created_at",
        -  "updated_at",
        -  "-updated_at",
        -  "due_date",
        -  "-due_date",
        -  "title",
        -  "-title",
        -  "status",
        -  "-status",
        -  "assignee",
        -  "-assignee",
        -  "created_by",
        -  "-created_by"
        -]
    • Changedlist_cost_codes_ids_for_timesheets1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_counts_of_daily_logs_project1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Addedlist_created_by_company_filter_options
    • Changedlist_creation_source_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_creator_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Addedlist_current_revision_for_external_rfis_filter_options
    • Changedlist_custom_field_definitions_company4 fields changed
      • changedInput schema / properties / company_id / type
        Previous value: -"number"New value: +"string"
      • changedInput schema / properties / per_page / description
        Previous 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)"
      • removedInput schema / properties / tool_name
        Removed 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"
        -}
      • addedInput schema / properties / view
        Added 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"
        +}
    • Changedlist_custom_field_definitions_configurable_field_sets1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Removedlist_custom_field_lov_entries
    • Addedlist_custom_field_lov_entries_company
    • Addedlist_custom_field_lov_entries_v1_0
    • Removedlist_custom_field_metadata
    • Addedlist_custom_field_metadata_company
    • Addedlist_custom_field_metadata_v1_0
    • Changedlist_daily_construction_report_logs_vendor_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_default_correspondence_types2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedlist_default_field_values_company
    • Addedlist_default_field_values_project
    • Changedlist_default_task_items_project_distribution_members2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Removedlist_deleted_payouts
    • Changedlist_deleted_punch_items2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedlist_delivery_methods
    • Addedlist_distinct_material_ids_for_a_direct_issue_pick_document
    • Addedlist_document_snapshots_for_a_coordination_issue_rest_v2_0
    • Addedlist_document_uploads_v2
    • Changedlist_drawing_areas1 field changed
      • addedInput schema / properties / filters__exclude_empty_connected
        Added value: +{
        +  "description": "Query string parameter — when `true`, excludes connected drawing areas with no active revisions.\nExample: `filters[exclude_empty_connected]=true`",
        +  "type": "boolean"
        +}
    • Changedlist_drawing_revision_terms1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_drawing_revisions2 fields changed
      • changedInput schema / properties / sort / description
        Previous 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..."
      • changedInput schema / properties / sort / enum
        Previous 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"
        +]
    • Changedlist_drawing_tiles2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Removedlist_early_pay_programs
    • Changedlist_environmental_types1 field changed
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_environmentals1 field changed
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_equipment_timecard_entries_project5 fields changed
      • addedInput schema / properties / filters__equipment_id
        Added value: +{
        +  "description": "Query string parameter — return item(s) matching the specified equipment identifier(s).",
        +  "items": {},
        +  "type": "array"
        +}
      • addedInput schema / properties / filters__party_id
        Added value: +{
        +  "description": "Query string parameter — return item(s) matching the specified party ID(s).",
        +  "items": {},
        +  "type": "array"
        +}
      • addedInput schema / properties / filters__timesheet_id
        Added value: +{
        +  "description": "Query string parameter — return item(s) matching the specified timesheet ID(s).",
        +  "items": {},
        +  "type": "array"
        +}
      • addedInput schema / properties / filters__wbs_code_id
        Added value: +{
        +  "description": "Query string parameter — return item(s) matching the specified WBS code ID(s).",
        +  "items": {},
        +  "type": "array"
        +}
      • addedInput schema / properties / serializer_view
        Added value: +{
        +  "description": "Query string parameter — optional response blueprint view. Defaults to `compact`.",
        +  "enum": [
        +    "default",
        +    "compact",
        +    "mobile"
        +  ],
        +  "type": "string"
        +}
    • Addedlist_existing_received_from_login_information_for_external_rfis
    • Addedlist_existing_responsible_contractors_for_external_rfis_filter
    • Addedlist_existing_rfi_managers_for_external_rfis_filter_options
    • Addedlist_existing_sync_statuses_for_external_rfis_filter_options
    • Addedlist_external_rfi_revisions
    • Addedlist_external_rfis
    • Addedlist_field_rules_for_an_asset_type
    • Addedlist_field_rules_for_an_asset_type_project_scope
    • Changedlist_filter_options_for_created_by1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_filter_options_for_location1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_filter_options_for_submittal_manager1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Query string parameter ��� page number for paginated results (default: 1)"New value: +"Query string parameter — page number for paginated results (default: 1)"
    • Changedlist_filter_options_for_submittal_package1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_filters_company2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedlist_filters_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedlist_harm_sources2 fields changed
      • changedInput schema / properties / all / description
        Previous 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."
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_hazards2 fields changed
      • changedInput schema / properties / all / description
        Previous 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."
      • addedInput schema / properties / sort
        Added 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"
        +}
    • Changedlist_image_category_ids_that_contain_images1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_incident_action_types1 field changed
      • changedInput schema / properties / sort / description
        Previous value: -"Query string parameter — sort order for results. Prefix with '-' for descending order"New value: +"Query string parameter — sort results by the specified field."
    • Changedlist_incident_alert_recipients1 field changed
      • changedInput schema / properties / sort / description
        Previous value: -"Query string parameter — sort order for results. Prefix with '-' for descending order"New value: +"Query string parameter — sort results by the specified field."
    • Changedlist_incident_alerts2 fields changed
      • addedInput schema / properties / filters__filing_type_id
        Added value: +{
        +  "description": "Query string parameter — return item(s) with the specified Incident Filing Type IDs.",
        +  "items": {},
        +  "type": "array"
        +}
      • changedInput schema / properties / sort / description
        Previous value: -"Query string parameter — sort order for results. Prefix with '-' for descending order"New value: +"Query string parameter — sort results by the specified field."
    • Changedlist_incident_filing_types2 fields changed
      • addedInput schema / properties / filters__active
        Added value: +{
        +  "description": "Query string parameter — if true, returns item(s) with a status of 'active'.",
        +  "type": "boolean"
        +}
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_incidents1 field changed
      • changedInput schema / properties / filters__query / description
        Previous 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..."
    • Changedlist_injuries2 fields changed
      • changedInput schema / properties / filters__query / description
        Previous 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."
      • changedInput schema / properties / incident_id / description
        Previous 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."
    • Changedlist_inspection_users4 fields changed
      • addedInput schema / properties / filters__inspection_id
        Added 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"
        +}
      • addedInput schema / properties / filters__potential_signatory
        Added value: +{
        +  "description": "Query string parameter — when true, returns only users eligible to sign an inspection.",
        +  "type": "boolean"
        +}
      • changedInput schema / properties / sort / description
        Previous 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."
      • addedInput schema / properties / view
        Added 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"
        +}
    • Changedlist_inspectors2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedlist_lien_waivers1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Addedlist_line_item_type_categories
    • Changedlist_location_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_lookaheads1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Addedlist_lov_codes_for_a_field_company
    • Addedlist_lov_codes_for_a_field_project
    • Changedlist_manpower_logs_contact_options1 field changed
      • addedInput schema / properties / filters__is_employee
        Added 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"
        +}
    • Changedlist_manual_forecast_line_items1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_manual_holds_for_a_given_invoice1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_monitoring_resources1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_near_misses2 fields changed
      • changedInput schema / properties / filters__query / description
        Previous 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."
      • changedInput schema / properties / incident_id / description
        Previous 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."
    • Changedlist_observation_items5 fields changed
      • addedInput schema / properties / filters__custom_fields
        Added 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"
        +}
      • changedInput schema / properties / filters__priority / description
        Previous 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[..."
      • changedInput schema / properties / filters__status / description
        Previous 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..."
      • addedInput schema / properties / sort
        Added 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"
        +}
      • addedInput schema / properties / view
        Added 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"
        +}
    • Changedlist_of_document_revisions_company2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedlist_of_document_revisions_project4 fields changed
      • addedInput schema / properties / company_id
        Added value: +{
        +  "description": "URL path parameter — unique identifier for the company.",
        +  "type": "string"
        +}
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "project_id",
        -  "document_id"
        -]New value: +[
        +  "company_id",
        +  "project_id",
        +  "document_id"
        +]
    • Changedlist_of_punch_list_assignee_filter_options2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedlist_of_punch_list_vendor_filter_options2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedlist_operations1 field changed
      • addedInput schema / properties / parent_id
        Added value: +{
        +  "description": "Query string parameter — return child operations of the specified parent operation.",
        +  "type": "string"
        +}
    • Removedlist_payee_bank_details
    • Removedlist_payment_project_configurations
    • Removedlist_payments_beneficiaries
    • Changedlist_payments_subtier_waivers3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
      • changedInput schema / properties / waiver_type / description
        Previous 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."
      • addedInput schema / properties / waiver_type / enum
        Added value: +[
        +  "unconditional",
        +  "conditional"
        +]
    • Changedlist_payments_subtiers_for_the_commitment1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_payments_subtiers_for_the_requisition1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_permission_templates1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_permission_templates_for_a_company_user1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_plan_revision_logs1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_possible_tool_filter_values1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_potential_points_of_contact1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_prime_change_order_line_items2 fields changed
      • changedInput schema / properties / prime_change_order_id / description
        Previous 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"
      • addedInput schema / properties / view
        Added 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"
        +}
    • Addedlist_prime_contract_attachments
    • Changedlist_prime_contract_line_items_project1 field changed
      • addedInput schema / properties / view
        Added 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"
        +}
    • Changedlist_programs_for_a_company_user1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Removedlist_project_configurable_field_sets
    • Addedlist_project_configurable_field_sets_company
    • Addedlist_project_configurable_field_sets_v1_0
    • Changedlist_project_cost_codes1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_project_country_codes1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_project_dates_company1 field changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
    • Addedlist_project_fields
    • Changedlist_project_folders_and_files2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedlist_project_job_titles1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Addedlist_project_metadata_values
    • Changedlist_project_names_for_a_company_user1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_project_numbers_for_a_company_user1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_project_observation_types1 field changed
      • changedInput schema / properties / filters__active / description
        Previous 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."
    • Changedlist_project_permission_templates1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Addedlist_project_root_folder_children_company_scoped
    • Changedlist_project_stages_for_a_company_user1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_project_state_codes1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_project_status_snapshots4 fields changed
      • changedInput schema / properties / comparison_budget_column_ids / description
        Previous 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."
      • addedInput 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"
        +}
      • changedInput schema / properties / sort / description
        Previous 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..."
      • changedInput schema / properties / sort / enum
        Previous value: -[
        -  "created_at",
        -  "-created_at"
        -]New value: +[
        +  "created_at",
        +  "-created_at",
        +  "financial_period",
        +  "-financial_period"
        +]
    • Changedlist_project_trades1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_project_types_for_a_company_user1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Addedlist_project_upload_requirements
    • Changedlist_project_users3 fields changed
      • removedInput schema / properties / filters__id
        Removed value: -{
        -  "description": "Query string parameter — returns users whose id attribute matches the parameter.",
        -  "type": "number"
        -}
      • addedInput schema / properties / filters__id__
        Added value: +{
        +  "description": "Query string parameter — returns users whose id attribute matches the parameter.",
        +  "items": {},
        +  "type": "array"
        +}
      • addedInput schema / properties / filters__search_by_full_name
        Added value: +{
        +  "description": "Query string parameter — returns users whose full_name matches the parameter.",
        +  "type": "string"
        +}
    • Changedlist_project_wbs_patterns2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedlist_project_wbs_segments1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_property_damages1 field changed
      • changedInput schema / properties / incident_id / description
        Previous 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."
    • Addedlist_punch_item_activities
    • Changedlist_purchase_order_contract_detail_line_items1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_recycled_environmentals1 field changed
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_recycled_incidents1 field changed
      • changedInput schema / properties / filters__query / description
        Previous 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..."
    • Changedlist_recycled_injuries2 fields changed
      • changedInput schema / properties / filters__query / description
        Previous 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."
      • changedInput schema / properties / incident_id / description
        Previous 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..."
    • Changedlist_recycled_near_misses2 fields changed
      • changedInput schema / properties / filters__query / description
        Previous 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."
      • changedInput schema / properties / incident_id / description
        Previous 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."
    • Changedlist_recycled_observation_items3 fields changed
      • changedInput schema / properties / filters__priority / description
        Previous 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[..."
      • changedInput schema / properties / filters__status / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_regions_for_a_company_user1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_requisition_subcontractor_invoice_change_histories1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_requisitions_subcontractor_invoices_for_project2 fields changed
      • changedInput schema / properties / view / description
        Previous 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..."
      • changedInput schema / properties / view / enum
        Previous value: -[
        -  "default",
        -  "extended",
        -  "items",
        -  "action_policy"
        -]New value: +[
        +  "default",
        +  "extended",
        +  "items",
        +  "action_policy",
        +  "header_only"
        +]
    • Changedlist_responses1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_responses_in_the_specified_item_response_set1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_rfis32 fields changed
      • addedInput schema / properties / as_datetimes
        Added value: +{
        +  "description": "Query string parameter — when true, returns date fields as datetime format",
        +  "type": "boolean"
        +}
      • changedInput schema / properties / filters__assigned_id / description
        Previous 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."
      • changedInput schema / properties / filters__ball_in_court_id / description
        Previous 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."
      • changedInput schema / properties / filters__ball_in_court_id / type
        Previous value: -"number"New value: +"string"
      • changedInput schema / properties / filters__cost_code_id / description
        Previous 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."
      • addedInput schema / properties / filters__current_revision
        Added value: +{
        +  "description": "Query string parameter — when true, excludes RFIs that are closed with a newer revision.",
        +  "type": "string"
        +}
      • addedInput schema / properties / filters__for_location_id_with_sublocations
        Added 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"
        +}
      • changedInput schema / properties / filters__id / description
        Previous 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."
      • removedInput schema / properties / filters__id / items
        Removed value: -{}
      • changedInput schema / properties / filters__id / type
        Previous value: -"array"New value: +"string"
      • addedInput schema / properties / filters__initiated_at
        Added 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"
        +}
      • addedInput schema / properties / filters__linked_to_connected_rfis
        Added 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"
        +}
      • addedInput schema / properties / filters__linked_to_external_rfis
        Added 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"
        +}
      • changedInput schema / properties / filters__location_id / description
        Previous 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."
      • removedInput schema / properties / filters__location_id / items
        Removed value: -{}
      • changedInput schema / properties / filters__location_id / type
        Previous value: -"array"New value: +"string"
      • changedInput schema / properties / filters__number / description
        Previous 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."
      • changedInput schema / properties / filters__number / type
        Previous value: -"number"New value: +"string"
      • addedInput schema / properties / filters__overdue
        Added 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"
        +}
      • changedInput schema / properties / filters__prefix_stage_id / description
        Previous 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."
      • addedInput schema / properties / filters__priority
        Added value: +{
        +  "description": "Query string parameter — return item(s) with the specified RFI priority or priorities.",
        +  "type": "string"
        +}
      • changedInput schema / properties / filters__received_from_login_information_id / description
        Previous 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."
      • changedInput schema / properties / filters__responsible_contractor_id / description
        Previous 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."
      • removedInput schema / properties / filters__responsible_contractor_id / items
        Removed value: -{}
      • changedInput schema / properties / filters__responsible_contractor_id / type
        Previous value: -"array"New value: +"string"
      • changedInput schema / properties / filters__rfi_manager_id / description
        Previous 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."
      • changedInput schema / properties / filters__rfi_manager_id / type
        Previous value: -"number"New value: +"string"
      • changedInput schema / properties / filters__status / description
        Previous 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."
      • removedInput schema / properties / filters__status / enum
        Removed value: -[
        -  "open",
        -  "closed",
        -  "draft"
        -]
      • addedInput schema / properties / filters__sub_job_id
        Added 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"
        +}
      • addedInput schema / properties / q
        Added value: +{
        +  "description": "Query string parameter — alias for `search`. Search for RFIs by subject or number.",
        +  "type": "string"
        +}
      • addedInput schema / properties / serializer_view
        Added 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"
        +}
    • Changedlist_roles_for_a_company_user1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_specification_configurations2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedlist_specification_section_divisions
    • Changedlist_specification_section_terms1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_specification_sections1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Addedlist_specification_sections_for_a_project_company
    • Addedlist_specification_sections_for_a_project_company_v2_1
    • Addedlist_specification_sections_revisions_for_a_project_company
    • Addedlist_specification_sections_revisions_for_a_project_company_v2_1
    • Addedlist_specification_sets_for_a_project
    • Changedlist_status_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_submittal_associated_attachments1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_submittal_types1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_task_item_categories2 fields changed
      • changedInput schema / properties / view / description
        Previous 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..."
      • changedInput schema / properties / view / enum
        Previous value: -[
        -  "ids_only",
        -  "normal"
        -]New value: +[
        +  "ids_only",
        +  "compact",
        +  "normal",
        +  "extended"
        +]
    • Changedlist_task_item_comments1 field changed
      • addedInput schema / properties / view
        Added 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"
        +}
    • Changedlist_task_items1 field changed
      • addedInput schema / properties / view
        Added 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"
        +}
    • Changedlist_timecard_entries_project16 fields changed
      • addedInput schema / properties / filters__approval_status
        Added value: +{
        +  "description": "Query string parameter — return entries matching the specified approval status.",
        +  "type": "string"
        +}
      • addedInput schema / properties / filters__billable
        Added value: +{
        +  "description": "Query string parameter — return entries matching billable state.",
        +  "type": "string"
        +}
      • addedInput schema / properties / filters__cost_code_id
        Added value: +{
        +  "description": "Query string parameter — return entries matching the specified cost code ID.",
        +  "type": "number"
        +}
      • addedInput schema / properties / filters__daily_log_header_id
        Added value: +{
        +  "description": "Query string parameter — return entries matching the specified daily log header ID.",
        +  "type": "number"
        +}
      • addedInput schema / properties / filters__date
        Added 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"
        +}
      • addedInput schema / properties / filters__id
        Added value: +{
        +  "description": "Query string parameter — return entries matching the specified entry ID(s).",
        +  "items": {},
        +  "type": "array"
        +}
      • addedInput schema / properties / filters__location_id
        Added value: +{
        +  "description": "Query string parameter — return entries matching the specified location ID.",
        +  "type": "number"
        +}
      • addedInput schema / properties / filters__login_information_id
        Added value: +{
        +  "description": "Query string parameter — return entries matching the specified login information ID(s).",
        +  "type": "string"
        +}
      • addedInput schema / properties / filters__origin_id
        Added value: +{
        +  "description": "Query string parameter — return entries matching the specified origin ID.",
        +  "type": "string"
        +}
      • addedInput schema / properties / filters__search
        Added value: +{
        +  "description": "Query string parameter — text search filter for legacy search behavior.",
        +  "type": "string"
        +}
      • addedInput schema / properties / filters__sub_job_id
        Added value: +{
        +  "description": "Query string parameter — return entries matching the specified sub job ID.",
        +  "type": "number"
        +}
      • addedInput schema / properties / filters__timecard_time_type_id
        Added value: +{
        +  "description": "Query string parameter — return entries matching the specified timecard time type ID.",
        +  "type": "number"
        +}
      • addedInput schema / properties / filters__updated_at
        Added 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"
        +}
      • addedInput schema / properties / filters__wbs_code_id
        Added value: +{
        +  "description": "Query string parameter — return entries matching the specified WBS code ID.",
        +  "type": "number"
        +}
      • addedInput schema / properties / filters__work_classification_id
        Added value: +{
        +  "description": "Query string parameter — return entries matching the specified work classification ID.",
        +  "type": "number"
        +}
      • addedInput schema / properties / serializer_view
        Added value: +{
        +  "description": "Query string parameter — changes what fields are included in the response.",
        +  "enum": [
        +    "daily_log",
        +    "extended",
        +    "extended_daily_log",
        +    "ids_only"
        +  ],
        +  "type": "string"
        +}
    • Changedlist_timecard_time_types_company1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_tools_enabled_for_workflows2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedlist_unit_of_measure_categories1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_units_of_measure3 fields changed
      • addedInput schema / properties / filters__id
        Added value: +{
        +  "description": "Query string parameter — restrict results to UOMs with one or more matching IDs. Example: `filters[id]=[101,102]`.",
        +  "items": {},
        +  "type": "array"
        +}
      • addedInput schema / properties / filters__updated_at
        Added value: +{
        +  "description": "Query string parameter — return item(s) within a specific updated at iso8601 datetime range",
        +  "type": "string"
        +}
      • addedInput schema / properties / view
        Added 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"
        +}
    • Addedlist_uom_categories_for_project_bids
    • Addedlist_user_filter_options_company
    • Addedlist_user_filter_options_project
    • Addedlist_user_permissions_company
    • Addedlist_user_permissions_project
    • Changedlist_watcher_filter_options1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_webhooks_deliveries1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_webhooks_hooks1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_webhooks_resources1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_webhooks_resources_api_versions1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_webhooks_triggers1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedlist_work_order_contract_detail_line_items1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Addedlist_work_scopes
    • Addedlist_workflow_bulk_replace_requests
    • Changedlist_workflow_instances_company3 fields changed
      • changedInput schema / properties / cursor / description
        Previous 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."
      • addedInput schema / properties / include_internal
        Added value: +{
        +  "description": "Query string parameter — include internal workflow instances when true. Defaults to false when omitted.",
        +  "type": "boolean"
        +}
      • changedInput schema / properties / page / description
        Previous 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."
    • Changedlist_workflow_instances_project3 fields changed
      • changedInput schema / properties / cursor / description
        Previous 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."
      • addedInput schema / properties / include_internal
        Added value: +{
        +  "description": "Query string parameter — include internal workflow instances when true. Defaults to false when omitted.",
        +  "type": "boolean"
        +}
      • changedInput schema / properties / page / description
        Previous 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."
    • Changedlist_workflow_presets_company1 field changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
    • Changedlist_workflow_presets_project1 field changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
    • Changedlists_the_app_and_tool_level_permissions_for_the_user2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedmodify_markups3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
      • changedInput schema / properties / viewer_doc_id / description
        Previous value: -"URL path parameter — unique identifier of the viewer doc"New value: +"URL path parameter — unique identifier of the viewer document"
    • Addedpartially_updates_a_line_item_on_an_inter_project_transfer
    • Addedpartially_updates_an_inter_project_transfer_header
    • Changedpatch_company_role2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"JSON request body field — unique identifier of the Company Settings resource"New value: +"URL path parameter — unique identifier for the resource."
      • changedInput schema / required
        Previous value: -[
        -  "company_id"
        -]New value: +[
        +  "company_id",
        +  "id"
        +]
    • Addedpreview_asset_deletion_company
    • Addedpreview_asset_deletion_project
    • Addedproject_folder_and_file_index_company_scoped
    • Addedproject_markup_indicators_by_items
    • Addedpublish_drawing_revisions
    • Addedrecycle_materials_in_bulk
    • Addedrecycles_a_direct_issue_document_soft_delete
    • Addedrecycles_a_material
    • Addedrecycles_a_material_requirement
    • Addedrecycles_a_receipt
    • Addedrecycles_a_shipment_by_marking_it_as_recycled
    • Addedrecycles_a_transfer_document
    • Addedrecycles_an_adjustment_document
    • Addedrecycles_an_inter_project_transfer_document
    • Addedrefresh_a_workflow_instance_company
    • Addedrefresh_a_workflow_instance_project
    • Addedremove_existing_labels_to_specified_resources
    • Addedremove_project_from_group
    • Addedreopen_checklist_inspection
    • Addedresolve_scene_id_to_bim_model_id_for_viewpoint_deep_linking
    • Changedrespond_to_a_workflow_instance_company1 field changed
      • addedInput schema / properties / Idempotency-Token
        Added value: +{
        +  "description": "JSON request body field — unique idempotent token",
        +  "type": "string"
        +}
    • Changedrespond_to_a_workflow_instance_project1 field changed
      • addedInput schema / properties / Idempotency-Token
        Added value: +{
        +  "description": "JSON request body field — unique idempotent token",
        +  "type": "string"
        +}
    • Changedrestart_a_workflow_instance_company1 field changed
      • addedInput schema / properties / restart_mode
        Added 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"
        +}
    • Changedrestart_a_workflow_instance_project1 field changed
      • addedInput schema / properties / restart_mode
        Added 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"
        +}
    • Addedrestore_a_soft_deleted_coordination_issue_rest_v2_0
    • Addedrestore_environmental
    • Addedrestore_materials_in_bulk
    • Changedretrieve_a_line_item_by_id_company2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedretrieve_a_line_item_by_id_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedretrieve_a_line_item_group_by_id_company2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedretrieve_a_line_item_group_by_id_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedretrieve_a_list_of_markups1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedretrieve_a_note_by_id_in_the_project_company2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedretrieve_a_note_by_id_in_the_project_company_v2_02 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedretrieve_a_project_proposal_by_id_company2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedretrieve_a_project_proposal_by_id_company_v2_02 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedretrieve_a_single_webhook_for_company2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedretrieve_a_single_webhook_for_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedretrieve_details_for_the_markup2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Removedretrieve_environmental
    • Addedretrieve_pre_processed_file_metadata_company_scope_v2
    • Addedretrieve_pre_processed_file_metadata_project_scope_v2
    • Changedretrieve_recycled_action1 field changed
      • changedInput schema / properties / id / description
        Previous value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the recycled incident action to restore."
    • Addedretrieve_thumbnails_for_a_file_company_scope
    • Addedretrieve_thumbnails_for_a_file_project_scope
    • Addedretrieve_thumbnails_for_multiple_files_company_scope
    • Addedretrieve_thumbnails_for_multiple_files_project_scope
    • Addedretrieves_recycled_resources_matching_the_specified_filter
    • Changedretrieves_the_status_of_the_asyncronous_job_that_a_bulk_users2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedreturn_a_filter2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedreturn_a_list_of_all_submittals3 fields changed
      • addedInput schema / properties / filters__sent_date
        Added 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"
        +}
      • addedInput schema / properties / filters__workflow_step
        Added 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"
        +}
      • removedInput schema / properties / sort / enum
        Removed value: -[
        -  "specification_section",
        -  "number",
        -  "title",
        -  "type",
        -  "status",
        -  "responsible_contractor",
        -  "submit_by",
        -  "received_from",
        -  "received_date",
        -  "due_date",
        -  "distributed_at",
        -  "submittal_package",
        -  "anticipated_delivery_date"
        -]
    • Changedreturn_a_pdf_template_config2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedreturn_company_schedule_summary2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedreturns_a_paginated_list_of_labels_for_the_specified_company
    • Changedreturns_avatar_of_the_current_user2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedreturns_specific_template2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Removedrevoke_token
    • Changedsave_markups3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
      • changedInput schema / properties / viewer_doc_id / description
        Previous value: -"URL path parameter — unique identifier of the viewer doc"New value: +"URL path parameter — unique identifier of the viewer document"
    • Changedsave_stamp2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — the unique identifier of the company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — the unique identifier of the project"New value: +"URL path parameter — unique identifier of the project"
    • Addedsearch_purchase_order_lines_linked_to_a_shipment
    • Removedset_current_project_company
    • Addedsets_a_modifier_on_shipment_line_items
    • Changedshow_a_bid_within_a_company3 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "id",
        -  "company_id"
        -]New value: +[
        +  "company_id",
        +  "id"
        +]
    • Changedshow_a_bid_within_a_project3 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "id",
        -  "project_id"
        -]New value: +[
        +  "project_id",
        +  "id"
        +]
    • Changedshow_a_budgeted_production_quantity2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_a_commitment_contract2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_a_company_inspection_template_item_evidence_configuration2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_a_compliance_document_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_a_compliance_document_project_v1_02 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_a_coordination_issue_rest_v2_04 fields changed
      • addedInput schema / properties / include_deleted
        Added value: +{
        +  "description": "Query string parameter — when `true`, also searches soft-deleted issues. Requires `view_deleted_coordination_issue` permission.",
        +  "enum": [
        +    "true"
        +  ],
        +  "type": "string"
        +}
      • changedInput schema / properties / included / description
        Previous 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`)."
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_a_crew2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_a_inspection_item_signature_request2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_a_meeting_template2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_a_project_inspection_template_item_evidence_configuration2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_a_signature_company2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_a_signature_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_a_signature_project_v1_02 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_a_timesheet2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_accident_logs2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_action3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the incident action."
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_action_plan2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_action_plan_approver_signature2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_action_plan_item2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_action_plan_item_assignee2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_action_plan_item_assignee_signature2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_action_plan_receiver_signature2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_action_plan_reference2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_action_plan_section2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_action_plan_template_approver2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_action_plan_template_receiver2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_action_plan_test_record_request2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_action_plan_verification_method2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_actual_production_quantity2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedshow_advanced_export_options_for_external_rfi
    • Changedshow_affliction_type3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the affliction type."
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_all_commitment_change_order_batches2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_all_commitment_change_orders2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_all_prime_change_order_batches2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_all_prime_change_orders2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_alternative_response_set2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_an_async_job_for_a_company2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_an_equipment_category2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_an_equipment_log2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_an_equipment_make2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_an_equipment_model2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_an_equipment_type2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_an_individual_managed_equipment_maintenance_log_attachment2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_an_individual_time_and_material_attachment2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_an_project_equipment_log2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_app_configuration2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_app_installation2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedshow_asset_by_code_company
    • Addedshow_asset_by_code_project
    • Addedshow_asset_company
    • Addedshow_asset_project
    • Addedshow_attachment_company
    • Addedshow_attachment_project
    • Changedshow_bid_package_company2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_bid_package_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedshow_bid_within_a_bid_package
    • Removedshow_bids_within_a_bid_package
    • Changedshow_billing_period_for_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_bim_file2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_bim_file_extraction2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_bim_geometry_file_bundle2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_bim_level2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_bim_model2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_bim_model_revision2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_bim_model_revision_plan2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_bim_plan2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_bim_viewpoint2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_budget_line_item2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_budget_meta_data2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_budget_modification2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_calendar_item2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_call_logs2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_change_event2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_change_history2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_change_order_package2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_change_order_request4 fields changed
      • addedInput schema / properties / filters__include_deleted
        Added value: +{
        +  "description": "Query string parameter — use 'only' for only deleted resources. Use 'with' for deleted and undeleted resources.",
        +  "enum": [
        +    "only",
        +    "with"
        +  ],
        +  "type": "string"
        +}
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
      • addedInput schema / properties / view
        Added 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"
        +}
    • Changedshow_checklist2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_checklist_comment2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_checklist_inspection2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_checklist_item2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_checklist_item_response2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_checklist_item_type2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_checklist_schedule2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_checklist_section2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_checklist_signature_request2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_checklist_template2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_classification_company2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_classification_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_commitment_change_order2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_commitment_change_order_batch2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_commitment_change_order_line_item3 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
      • addedInput schema / properties / view
        Added 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"
        +}
    • Changedshow_commitment_contract3 fields changed
      • addedInput schema / properties / filters__include_deleted
        Added 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"
        +}
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_commitment_contract_line_item3 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
      • addedInput schema / properties / view
        Added 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"
        +}
    • Changedshow_commitment_contract_summary2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_communication2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_communication_thread2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_company_action_plan_template2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_company_action_plan_template_item_assignee2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_company_action_plan_template_reference2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_company_action_plan_template_test_record_request2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_company_action_plan_type2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_company_checklist_section2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_company_checklist_template2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_company_configuration2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_company_file2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_company_file_version2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_company_folder9 fields changed
      • changedInput schema / properties / company_id / type
        Previous value: -"number"New value: +"string"
      • changedInput schema / properties / exclude_files / description
        Previous value: -"Query string parameter — exclude children Files from results"New value: +"Query string parameter — exclude child files from the response."
      • changedInput schema / properties / exclude_folders / description
        Previous value: -"Query string parameter — exclude children Folders from results"New value: +"Query string parameter — exclude child folders from the response."
      • changedInput schema / properties / id / description
        Previous value: -"URL path parameter — unique identifier of the Documents resource"New value: +"URL path parameter — unique identifier for the resource."
      • changedInput schema / properties / id / type
        Previous value: -"number"New value: +"string"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Number of items per page (default: 100, max: 100)"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • addedInput schema / properties / show_latest_file_version_only
        Added value: +{
        +  "description": "Query string parameter — return only the latest file version per file.",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / view
        Added 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"
        +}
    • Changedshow_company_form_template2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_company_form_template_from_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_company_inspection_template_item2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_company_inspection_template_item_reference2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_company_insurance2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_company_level_email_communication2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_company_office2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_company_security_settings2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_company_segment_item2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_company_upload2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_company_user_v1_32 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_company_user_v1_3_22 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_company_vendor_insurance2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_company_wbs_segment2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_compliance_information_for_a_purchase_order_contract2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_compliance_information_for_a_work_order_contract2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_configurable_field_set4 fields changed
      • changedInput schema / properties / company_id / type
        Previous value: -"number"New value: +"string"
      • changedInput schema / properties / id / type
        Previous value: -"number"New value: +"string"
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_contract_payment2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_contributing_behavior3 fields changed
      • changedInput schema / properties / id / description
        Previous 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."
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_contributing_condition3 fields changed
      • changedInput schema / properties / id / description
        Previous 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."
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_coordination_issue2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_coordination_issue_count_by_status2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_coordination_issue_in_recycle_bin2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_coordination_issue_workflow_issue2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_correspondence_company2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_correspondence_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_cost_code2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_current_company_user2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Removedshow_custom_field_definition
    • Addedshow_custom_field_definition_company
    • Addedshow_custom_field_definition_v1_0
    • Changedshow_custom_field_lov_entry2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Removedshow_custom_field_metadatum
    • Addedshow_custom_field_metadatum_company
    • Addedshow_custom_field_metadatum_v1_0
    • Changedshow_custom_fields_section2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_daily_construction_report_logs2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_delay_logs2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_delivery_log2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_department2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_detail_for_requisition_subcontractor_invoice1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedshow_direct_cost_item3 fields changed
      • changedInput schema / properties / id / description
        Previous 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"
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_direct_cost_line_item2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedshow_document_upload
    • Changedshow_drawing_revision2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_drawing_upload2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_dumpster_logs2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Removedshow_early_pay_program
    • Changedshow_email_communication2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_environmental3 fields changed
      • changedInput schema / properties / id / description
        Previous 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."
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_equipment_change_history2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_equipment_company2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_equipment_logs2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_equipment_maintenance_log2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_equipment_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_equipment_timecard_entry_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedshow_external_rfi
    • Addedshow_fieldset
    • Changedshow_filing_type3 fields changed
      • changedInput schema / properties / id / description
        Previous 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."
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_first_prime_contract2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_form2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_generic_tool_item_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_generic_tool_item_v1_02 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_gps_position2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_harm_source3 fields changed
      • changedInput schema / properties / id / description
        Previous 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."
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_hazard3 fields changed
      • changedInput schema / properties / id / description
        Previous 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."
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_image2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_image_category2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_incident3 fields changed
      • changedInput schema / properties / id / description
        Previous 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."
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_incident_action_type3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"URL path parameter — incident Action Type ID"New value: +"URL path parameter — unique identifier of the incident action type."
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_incident_alert3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the incident alert."
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_incident_alert_recipient3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"URL path parameter — incident Alert Recipient's User ID"New value: +"URL path parameter — user ID of the incident alert recipient."
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_incident_severity_level3 fields changed
      • changedInput schema / properties / id / description
        Previous 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."
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_injury2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_inspection_logs2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_inspection_type2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_instruction2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_instruction_type2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_item_response_set2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_item_response_set_response2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_line_item_type2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_link2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_location2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_lookahead2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_manpower_logs2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_material2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_meeting_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_meeting_v1_02 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_near_miss2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_new_change_event2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_next_available_number_for_observation_items2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_notes_logs2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_observation_item2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_or_create_document_markup_downloadable_pdf3 fields changed
      • changedInput schema / properties / attachment_id / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous 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."
      • changedInput schema / properties / version_datetime / description
        Previous 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."
    • Changedshow_payment_application_owner_invoice2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Removedshow_payments_beneficiary
    • Changedshow_permission_manifest2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_plan_revision_logs2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_potential_change_order_line_item2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_potential_change_orders2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_prime_change_order2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_prime_change_order_batch2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_prime_change_order_line_item4 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
      • changedInput schema / properties / prime_change_order_id / description
        Previous 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"
      • addedInput schema / properties / view
        Added 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"
        +}
    • Changedshow_prime_contract_line_item_project3 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
      • addedInput schema / properties / view
        Added 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"
        +}
    • Changedshow_prime_contract_line_item_v1_02 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_prime_contract_project3 fields changed
      • addedInput schema / properties / filters__include_deleted
        Added 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"
        +}
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_prime_contract_summary2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_prime_contract_v1_02 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_productivity_logs2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_program2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_project_action_plan_template_reference2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_project_bid_type2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_project_checklist_template2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_project_date_v1_02 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_project_date_v1_0_22 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_project_distribution_group_v1_02 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_project_distribution_group_v1_0_22 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_project_equipment_maintenance_log2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_project_file2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_project_file_version2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_project_folder2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedshow_project_folder_company_scoped
    • Changedshow_project_inspection_template_item_reference2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_project_insurance2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_project_location2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_project_owner_type2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_project_region2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_project_schedule_settings2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_project_stage2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_project_type2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_project_upload2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_project_user2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_project_vendor2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_project_vendor_insurance2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_project_wbs_segment2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_property_damage3 fields changed
      • changedInput schema / properties / id / description
        Previous 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."
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_punch_assignment2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_punch_item2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_punch_item_type2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_purchase_order_contract2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_purchase_order_contract_detail_line_item2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_purchase_order_contract_line_item2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_quantity_logs2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_recent_timecard_entry_wbs_code_ids_deprecated1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedshow_recycled_action3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the recycled incident action."
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_recycled_action_plan2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_recycled_action_plan_item2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_recycled_action_plan_item_assignee2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_recycled_action_plan_reference2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_recycled_action_plan_section2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_recycled_action_plan_template_approver2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_recycled_action_plan_template_items2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_recycled_action_plan_template_receiver2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_recycled_action_plan_template_section2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_recycled_action_plan_test_record2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_recycled_action_plan_test_record_request2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_recycled_checklist_inspection2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_recycled_company_action_plan_template2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_recycled_company_action_plan_template_items_assignee2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_recycled_company_action_plan_template_reference2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_recycled_company_action_plan_template_test_record_request2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_recycled_company_checklist_template2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_recycled_company_form_template2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_recycled_environmental3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the recycled environmental record."
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_recycled_incident3 fields changed
      • changedInput schema / properties / id / description
        Previous 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."
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_recycled_injury2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_recycled_near_miss2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_recycled_observation2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_recycled_project_action_plan_template_reference2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_recycled_project_form2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_recycled_property_damage3 fields changed
      • changedInput schema / properties / id / description
        Previous 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."
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_recycled_witness_statement2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_requisition_subcontractor_invoice4 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
      • changedInput schema / properties / view / description
        Previous 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..."
      • changedInput schema / properties / view / enum
        Previous value: -[
        -  "default",
        -  "extended",
        -  "items",
        -  "action_policy"
        -]New value: +[
        +  "default",
        +  "extended",
        +  "items",
        +  "action_policy",
        +  "header_only"
        +]
    • Changedshow_requisition_subcontractor_invoice_change_order_item2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_requisition_subcontractor_invoice_contract_detail_item2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_requisition_subcontractor_invoice_contract_item2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_resource_assignment2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_resource_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_resource_v1_02 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_response2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_rfi2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_rfi_in_pdf_format2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_rfi_reply2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_rfq2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_rfq_quote2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_rfq_response2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_rounding_configuration2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_safety_violation_logs2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Removedshow_specification_section_revision
    • Addedshow_specification_section_revision_project
    • Addedshow_specification_section_revision_v1_0
    • Changedshow_specification_set2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_standard_cost_code2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_standard_cost_code_list2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_sub_job2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_submittal_in_pdf_format2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_submittal_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_submittal_v1_02 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_task2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_task_item3 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
      • addedInput schema / properties / view
        Added 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"
        +}
    • Changedshow_tax_code2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_tax_type2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_the_schedule_integration_type_for_a_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_time_and_material_entry2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_time_and_material_equipment_log2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_time_and_material_notification2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_time_and_material_timecard2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_timecard_entry2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_timecard_entry_change_history_company1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedshow_timecard_entry_company2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_timecard_entry_project3 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
      • addedInput schema / properties / serializer_view
        Added 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"
        +}
    • Changedshow_timesheet_approval_status_filters1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedshow_timesheet_billable_filters1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedshow_timesheet_created_by_filters1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedshow_timesheet_crews_filters1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedshow_timesheet_department_filters1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedshow_timesheet_employee_filters1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedshow_timesheet_employee_id_filters1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedshow_timesheet_location_filters1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedshow_timesheet_office_filters1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedshow_timesheet_project_filters1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedshow_timesheet_region_filters1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedshow_timesheet_sub_job_filters1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedshow_timesheet_time_type_filters1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedshow_timesheet_to_budget_configuration2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_timesheet_wbs_code_filters1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedshow_timesheet_work_classification_filters1 field changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for paginated results (default: 1)"New value: +"Page number for paginated results (default: 1, 1-indexed)"
    • Changedshow_todo2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_trade2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_unit_of_measure2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_user_info2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_visitor_logs2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_waste_logs2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_weather_log2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_weather_logs2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_witness_statement2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_work_activity2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_work_logs2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_work_order_contract2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_work_order_contract_detail_line_item2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_work_order_contract_line_item2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedshow_workflow_activity_history2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedshow_workflow_bulk_replace_request
    • Changedshow_workflow_instance2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedstop_temporary_workflow_bulk_replace_request
    • Changedsync_direct_cost_line_items1 field changed
      • changedInput schema / properties / updates / description
        Previous 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"
    • Addedsync_material_requirements_headers
    • Addedsync_material_requirements_lines
    • Changedsync_projects1 field changed
      • changedInput schema / properties / company_id / description
        Previous 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."
    • Addedsync_purchase_order_headers
    • Addedsync_purchase_order_lines
    • Changedsync_sub_jobs1 field changed
      • changedInput schema / properties / project_id / description
        Previous value: -"JSON request body field — unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedsync_tasks1 field changed
      • changedInput schema / properties / project_id / description
        Previous value: -"JSON request body field — the ID of the Project the Tasks belongs to"New value: +"Query string parameter — unique identifier for the project."
    • Changedsync_units_of_measure2 fields changed
      • changedInput schema / properties / deletes / description
        Previous 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."
      • changedInput schema / properties / updates / description
        Previous 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 ..."
    • Addedsyncs_materials
    • Addedtrigger_pre_processing_for_a_file_company_scope_v2
    • Addedtrigger_pre_processing_for_a_file_project_scope_v2
    • Addedtriggers_a_recalculation_of_cached_data_for_the_specified
    • Addedunassign_sensors_from_materials
    • Changedupdate_a_bid_from_a_bid_package1 field changed
      • addedInput schema / properties / vendor_id
        Added value: +{
        +  "description": "JSON request body field — vendor ID (optional, nullable for PCN-based bidders)",
        +  "type": "number"
        +}
    • Changedupdate_a_bid_within_a_company1 field changed
      • changedInput schema / required
        Previous value: -[
        -  "id",
        -  "company_id"
        -]New value: +[
        +  "company_id",
        +  "id"
        +]
    • Changedupdate_a_budgeted_production_quantity2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"JSON request body field — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / required
        Previous value: -[
        -  "id"
        -]New value: +[
        +  "project_id",
        +  "id"
        +]
    • Changedupdate_a_coordination_issue_rest_v2_016 fields changed
      • removedInput schema / properties / assignee_id
        Removed value: -{
        -  "description": "JSON request body field — unique identifier of the assignee",
        -  "type": "string"
        -}
      • removedInput schema / properties / attachment_upload_uuids
        Removed value: -{
        -  "description": "JSON request body field — additional uploads to attach (same pipeline as create).",
        -  "items": {},
        -  "type": "array"
        -}
      • removedInput schema / properties / bim_file_id
        Removed value: -{
        -  "description": "JSON request body field — unique identifier of the bim file",
        -  "type": "string"
        -}
      • removedInput schema / properties / bim_model_id
        Removed value: -{
        -  "description": "JSON request body field — unique identifier of the bim model",
        -  "type": "string"
        -}
      • changedInput schema / properties / company_id / description
        Previous value: -"JSON request body field — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier for the company."
      • removedInput schema / properties / creation_source
        Removed value: -{
        -  "description": "JSON request body field — the creation source for this Coordination Issues operation",
        -  "type": "string"
        -}
      • removedInput schema / properties / description
        Removed value: -{
        -  "description": "JSON request body field — the description for this Coordination Issues operation",
        -  "type": "string"
        -}
      • removedInput schema / properties / due_date
        Removed value: -{
        -  "description": "JSON request body field — due date in YYYY-MM-DD format",
        -  "type": "string"
        -}
      • removedInput schema / properties / issue_type
        Removed value: -{
        -  "description": "JSON request body field — the issue type for this Coordination Issues operation",
        -  "type": "string"
        -}
      • removedInput schema / properties / location_id
        Removed value: -{
        -  "description": "JSON request body field — unique identifier of the location",
        -  "type": "string"
        -}
      • removedInput schema / properties / origin
        Removed value: -{
        -  "additionalProperties": {},
        -  "description": "JSON request body field — optional origin metadata stored with the issue when created or updated.",
        -  "type": "object"
        -}
      • removedInput schema / properties / priority
        Removed value: -{
        -  "description": "JSON request body field — the priority for this Coordination Issues operation",
        -  "type": "string"
        -}
      • changedInput schema / properties / project_id / description
        Previous value: -"JSON request body field — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier for the project."
      • removedInput schema / properties / title
        Removed value: -{
        -  "description": "JSON request body field — the title for this Coordination Issues operation",
        -  "type": "string"
        -}
      • removedInput schema / properties / trade_id
        Removed value: -{
        -  "description": "JSON request body field — unique identifier of the trade",
        -  "type": "string"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "id"
        -]New value: +[
        +  "company_id",
        +  "project_id",
        +  "id"
        +]
    • Addedupdate_a_document_snapshot_on_a_coordination_issue_rest_v2_0
    • Changedupdate_a_maintenance_record10 fields changed
      • removedInput schema / properties / equipment_id / additionalProperties
        Removed value: -{}
      • changedInput schema / properties / equipment_id / description
        Previous value: -"JSON request body field — unique identifier of the equipment"New value: +"URL path parameter — unique identifier of the equipment"
      • changedInput schema / properties / equipment_id / type
        Previous value: -"object"New value: +"string"
      • changedInput schema / properties / issue / description
        Previous value: -"JSON request body field — the issue for this Equipment operation"New value: +"JSON request body field — description of the maintenance issue."
      • changedInput schema / properties / notes / description
        Previous value: -"JSON request body field — the notes for this Equipment operation"New value: +"JSON request body field — notes about the maintenance."
      • removedInput schema / properties / type / additionalProperties
        Removed value: -{}
      • changedInput schema / properties / type / description
        Previous value: -"JSON request body field — the type for this Equipment operation"New value: +"JSON request body field — the type of maintenance."
      • addedInput schema / properties / type / enum
        Added value: +[
        +  "PLANNED",
        +  "UNPLANNED"
        +]
      • changedInput schema / properties / type / type
        Previous value: -"object"New value: +"string"
      • changedInput schema / required
        Previous value: -[
        -  "maintenance_id",
        -  "company_id"
        -]New value: +[
        +  "maintenance_id",
        +  "equipment_id",
        +  "company_id"
        +]
    • Changedupdate_a_maintenance_record_project10 fields changed
      • removedInput schema / properties / equipment_id / additionalProperties
        Removed value: -{}
      • changedInput schema / properties / equipment_id / description
        Previous value: -"JSON request body field — unique identifier of the equipment"New value: +"URL path parameter — unique identifier of the equipment"
      • changedInput schema / properties / equipment_id / type
        Previous value: -"object"New value: +"string"
      • changedInput schema / properties / issue / description
        Previous value: -"JSON request body field — the issue for this Equipment operation"New value: +"JSON request body field — description of the maintenance issue."
      • changedInput schema / properties / notes / description
        Previous value: -"JSON request body field — the notes for this Equipment operation"New value: +"JSON request body field — notes about the maintenance."
      • removedInput schema / properties / type / additionalProperties
        Removed value: -{}
      • changedInput schema / properties / type / description
        Previous value: -"JSON request body field — the type for this Equipment operation"New value: +"JSON request body field — the type of maintenance."
      • addedInput schema / properties / type / enum
        Added value: +[
        +  "PLANNED",
        +  "UNPLANNED"
        +]
      • changedInput schema / properties / type / type
        Previous value: -"object"New value: +"string"
      • changedInput schema / required
        Previous value: -[
        -  "maintenance_id",
        -  "project_id",
        -  "company_id"
        -]New value: +[
        +  "maintenance_id",
        +  "equipment_id",
        +  "project_id",
        +  "company_id"
        +]
    • Changedupdate_a_manual_forecast_line_item1 field changed
      • addedInput schema / properties / async
        Added 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"
        +}
    • Changedupdate_a_note_of_the_project_company1 field changed
      • changedInput schema / properties / value / description
        Previous value: -"JSON request body field — the value for this Estimating operation"New value: +"JSON request body field — the content of the note."
    • Changedupdate_a_note_of_the_project_company_v2_01 field changed
      • changedInput schema / properties / value / description
        Previous value: -"JSON request body field — the value for this Bid Board operation"New value: +"JSON request body field — the content of the note."
    • Addedupdate_a_purchase_order
    • Changedupdate_a_task_item_comment2 fields changed
      • changedInput schema / properties / status / description
        Previous 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."
      • addedInput schema / properties / view
        Added value: +{
        +  "description": "Query string parameter — serialization view for the updated comment (default **normal**).",
        +  "enum": [
        +    "compact",
        +    "normal",
        +    "extended"
        +  ],
        +  "type": "string"
        +}
    • Changedupdate_a_time_and_material_equipment_log1 field changed
      • addedInput schema / properties / idle_quantity
        Added value: +{
        +  "description": "JSON request body field — idle Quantity of Time And Material Equipment Log",
        +  "type": "number"
        +}
    • Changedupdate_a_wbs_code1 field changed
      • addedInput schema / properties / default_uom_id
        Added 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"
        +}
    • Changedupdate_action9 fields changed
      • changedInput schema / properties / action_type_id / description
        Previous 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."
      • changedInput schema / properties / description / description
        Previous 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."
      • changedInput schema / properties / drawing_revision_ids / description
        Previous 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."
      • changedInput schema / properties / file_version_ids / description
        Previous 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."
      • changedInput schema / properties / form_ids / description
        Previous 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."
      • changedInput schema / properties / id / description
        Previous value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the incident action."
      • changedInput schema / properties / image_ids / description
        Previous 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."
      • changedInput schema / properties / incident_id / description
        Previous value: -"JSON request body field — the ID of the Incident"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / upload_ids / description
        Previous 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."
    • Changedupdate_action_plan1 field changed
      • addedInput schema / properties / asset_ids
        Added value: +{
        +  "description": "JSON request body field — asset IDs to be set on the Action Plan",
        +  "items": {},
        +  "type": "array"
        +}
    • Changedupdate_advanced_forecasting_rows2 fields changed
      • addedInput schema / properties / async
        Added 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"
        +}
      • addedInput schema / properties / budget_view_id
        Added 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"
        +}
    • Changedupdate_affliction_type2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"URL path parameter — unique identifier of the Incidents resource"New value: +"URL path parameter — unique identifier of the affliction type."
      • changedInput schema / properties / name / description
        Previous 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."
    • Changedupdate_all_company_segment_items1 field changed
      • changedInput schema / properties / attributes / description
        Previous 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..."
    • Changedupdate_all_project_segment_items1 field changed
      • changedInput schema / properties / attributes / description
        Previous 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**."
    • Addedupdate_an_attachments_metadata
    • Changedupdate_an_estimate_line_item_of_the_proposal_company1 field changed
      • addedInput schema / properties / quantity
        Added value: +{
        +  "description": "JSON request body field — quantity from the estimating table (manual entry). Updated when using estimating or takeoff tab.",
        +  "type": "number"
        +}
    • Changedupdate_an_estimate_line_item_of_the_proposal_project1 field changed
      • addedInput schema / properties / quantity
        Added value: +{
        +  "description": "JSON request body field — quantity from the estimating table (manual entry). Updated when using estimating or takeoff tab.",
        +  "type": "number"
        +}
    • Changedupdate_an_project_equipment_log2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"JSON request body field — iD of the project the equipment was logged for"New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / required
        Previous value: -[
        -  "id"
        -]New value: +[
        +  "project_id",
        +  "id"
        +]
    • Changedupdate_app_configuration2 fields changed
      • addedInput schema / properties / applies_to_all_projects
        Added 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"
        +}
      • addedInput schema / properties / applies_to_company
        Added value: +{
        +  "description": "JSON request body field — apply the app configuration to be available from company routes",
        +  "type": "boolean"
        +}
    • Removedupdate_app_installation
    • Addedupdate_asset_company
    • Addedupdate_asset_project
    • Changedupdate_assignees_and_workflow_manager_company1 field changed
      • addedInput schema / properties / individual_assignees
        Added value: +{
        +  "description": "JSON request body field — list of individual assignees per step",
        +  "items": {},
        +  "type": "array"
        +}
    • Changedupdate_assignees_and_workflow_manager_project1 field changed
      • addedInput schema / properties / individual_assignees
        Added value: +{
        +  "description": "JSON request body field — list of individual assignees per step",
        +  "items": {},
        +  "type": "array"
        +}
    • Addedupdate_attachment_company
    • Addedupdate_attachment_project
    • Changedupdate_bid_board_project1 field changed
      • addedInput schema / properties / office_id
        Added 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"
        +}
    • Changedupdate_commitment_change_order4 fields changed
      • removedInput schema / properties / attachment_ids
        Removed value: -{
        -  "description": "JSON request body field — existing attachments to preserve on the response",
        -  "items": {},
        -  "type": "array"
        -}
      • removedInput schema / properties / drawing_revision_ids
        Removed value: -{
        -  "description": "JSON request body field — drawing Revisions to attach to the response",
        -  "items": {},
        -  "type": "array"
        -}
      • addedInput schema / properties / request_for_quote_attachment_ids
        Added 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"
        +}
      • addedInput schema / properties / revised_substantial_completion_date
        Added value: +{
        +  "description": "JSON request body field — revised substantial completion date, only supported for Prime Change Orders on single-tier projects.",
        +  "type": "string"
        +}
    • Changedupdate_commitment_change_order_batch1 field changed
      • addedInput schema / properties / request_for_quote_attachment_ids
        Added 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"
        +}
    • Changedupdate_commitment_change_order_line_item2 fields changed
      • changedInput schema / properties / commitment_line_item_id / description
        Previous 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..."
      • addedInput schema / properties / funding_rule_id
        Added 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"
        +}
    • Changedupdate_commitment_contract_line_item1 field changed
      • addedInput schema / properties / funding_rule_id
        Added 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"
        +}
    • Changedupdate_company_currency_configuration4 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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."
      • changedInput schema / properties / currency_display / description
        Previous 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..."
      • removedInput schema / properties / currency_iso_code
        Removed value: -{
        -  "description": "JSON request body field — the currency iso code for this Currency Configurations operation",
        -  "type": "string"
        -}
      • changedInput schema / properties / multicurrency_enabled / description
        Previous 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..."
    • Changedupdate_company_exchange_rates2 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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."
      • changedInput schema / properties / exchange_rates / description
        Previous 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."
    • Addedupdate_company_level_context
    • Addedupdate_company_naming_standard_rule
    • Changedupdate_company_segment_item1 field changed
      • addedInput schema / properties / default_uom_id
        Added 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"
        +}
    • Changedupdate_company_tag2 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / company_id / type
        Previous value: -"number"New value: +"string"
    • Changedupdate_configurable_field_set11 fields changed
      • removedInput schema / properties / category
        Removed 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"
        -}
      • changedInput schema / properties / company_id / type
        Previous value: -"number"New value: +"string"
      • addedInput schema / properties / configurable_field_set
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — configurable_field_set",
        +  "type": "object"
        +}
      • addedInput schema / properties / custom_field_sections
        Added value: +{
        +  "description": "JSON request body field — custom_field_sections",
        +  "items": {},
        +  "type": "array"
        +}
      • removedInput schema / properties / fields
        Removed value: -{
        -  "additionalProperties": {},
        -  "description": "JSON request body field — all fields that make up the form of the class name.",
        -  "type": "object"
        -}
      • changedInput schema / properties / id / type
        Previous value: -"number"New value: +"string"
      • removedInput schema / properties / include_all_projects
        Removed value: -{
        -  "description": "JSON request body field — whether or not all projects selected",
        -  "type": "boolean"
        -}
      • removedInput schema / properties / name
        Removed value: -{
        -  "description": "JSON request body field — the name for this Custom - Configurable Tools operation",
        -  "type": "string"
        -}
      • removedInput schema / properties / observations_category_id
        Removed 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"
        -}
      • removedInput schema / properties / project_ids
        Removed value: -{
        -  "description": "JSON request body field — array of project identifiers",
        -  "items": {},
        -  "type": "array"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "company_id",
        -  "id",
        -  "name",
        -  "fields"
        -]New value: +[
        +  "company_id",
        +  "id",
        +  "configurable_field_set"
        +]
    • Changedupdate_context2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
    • Addedupdate_contract_compliance_document
    • Changedupdate_contracts_invoice_configuration1 field changed
      • addedInput schema / properties / contract_invoicing_method
        Added 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"
        +}
    • Changedupdate_contributing_behavior2 fields changed
      • changedInput schema / properties / id / description
        Previous 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."
      • changedInput schema / properties / name / description
        Previous 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."
    • Changedupdate_contributing_condition2 fields changed
      • changedInput schema / properties / id / description
        Previous 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."
      • changedInput schema / properties / name / description
        Previous 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."
    • Changedupdate_cost_item1 field changed
      • changedInput schema / properties / unit / description
        Previous 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)"
    • Addedupdate_custom_field_definition
    • Addedupdate_custom_field_metadatum
    • Changedupdate_direct_cost_item1 field changed
      • changedInput schema / properties / id / description
        Previous 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"
    • Changedupdate_direct_cost_line_item5 fields changed
      • changedInput schema / properties / amount / description
        Previous 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"
      • changedInput schema / properties / description / description
        Previous 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"
      • changedInput schema / properties / direct_cost_id / description
        Previous value: -"JSON request body field — unique identifier of the direct cost"New value: +"URL path parameter — unique identifier of the direct cost"
      • changedInput schema / properties / origin_data / description
        Previous 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"
      • changedInput schema / required
        Previous value: -[
        -  "project_id",
        -  "id"
        -]New value: +[
        +  "project_id",
        +  "direct_cost_id",
        +  "id"
        +]
    • Removedupdate_early_pay_program
    • Changedupdate_environmental6 fields changed
      • changedInput schema / properties / affected_company_id / description
        Previous 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."
      • changedInput schema / properties / environmental_type_id / description
        Previous 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."
      • changedInput schema / properties / estimated_cost_impact / description
        Previous 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."
      • changedInput schema / properties / id / description
        Previous 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."
      • changedInput schema / properties / managed_equipment_id / description
        Previous 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."
      • changedInput schema / properties / work_activity_id / description
        Previous 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."
    • Changedupdate_equipment_company_v2_15 fields changed
      • removedInput schema / properties / equipment_id / additionalProperties
        Removed value: -{}
      • changedInput schema / properties / equipment_id / description
        Previous value: -"JSON request body field — unique identifier of the equipment"New value: +"URL path parameter — the ID of the equipment"
      • changedInput schema / properties / equipment_id / type
        Previous value: -"object"New value: +"string"
      • addedInput schema / properties / purchase_order
        Added value: +{
        +  "description": "JSON request body field — the purchase order number.",
        +  "type": "string"
        +}
      • changedInput schema / required
        Previous value: -[
        -  "company_id"
        -]New value: +[
        +  "equipment_id",
        +  "company_id"
        +]
    • Changedupdate_equipment_project_company5 fields changed
      • removedInput schema / properties / equipment_id / additionalProperties
        Removed value: -{}
      • changedInput schema / properties / equipment_id / description
        Previous value: -"JSON request body field — unique identifier of the equipment"New value: +"URL path parameter — the ID of the equipment"
      • changedInput schema / properties / equipment_id / type
        Previous value: -"object"New value: +"string"
      • addedInput schema / properties / purchase_order
        Added value: +{
        +  "description": "JSON request body field — the purchase order number.",
        +  "type": "string"
        +}
      • changedInput schema / required
        Previous value: -[
        -  "project_id",
        -  "company_id"
        -]New value: +[
        +  "project_id",
        +  "equipment_id",
        +  "company_id"
        +]
    • Removedupdate_equipment_project_company_v2_0
    • Addedupdate_equipment_timecard_entry_approval_status
    • Addedupdate_estimating_settings
    • Removedupdate_existing_or_create_a_new_incident_alert_recipient
    • Addedupdate_field_rule
    • Addedupdate_field_rule_project_scope
    • Changedupdate_filing_type2 fields changed
      • changedInput schema / properties / id / description
        Previous 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."
      • changedInput schema / properties / severity_level_id / description
        Previous 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."
    • Changedupdate_group2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
    • Changedupdate_group_order_rank2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
    • Changedupdate_harm_source3 fields changed
      • changedInput schema / properties / active / description
        Previous 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."
      • changedInput schema / properties / id / description
        Previous 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."
      • changedInput schema / properties / name / description
        Previous 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."
    • Changedupdate_hazard3 fields changed
      • changedInput schema / properties / active / description
        Previous 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."
      • changedInput schema / properties / id / description
        Previous 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."
      • changedInput schema / properties / name / description
        Previous 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."
    • Changedupdate_incident1 field changed
      • changedInput schema / properties / id / description
        Previous 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."
    • Changedupdate_incident_action_type2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"URL path parameter — incident Action Type ID"New value: +"URL path parameter — unique identifier of the incident action type."
      • changedInput schema / properties / name / description
        Previous 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."
    • Changedupdate_incident_severity_level5 fields changed
      • changedInput schema / properties / alert_recipient_ids / description
        Previous 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."
      • changedInput schema / properties / email_trigger / description
        Previous 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."
      • changedInput schema / properties / id / description
        Previous 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."
      • changedInput schema / properties / name / description
        Previous 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)."
      • changedInput schema / properties / push_notification_trigger / description
        Previous 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."
    • Changedupdate_information_of_a_budget_change2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"JSON request body field — unique identifier of this budget change"New value: +"URL path parameter — unique identifier of budget change"
      • changedInput schema / required
        Previous value: -[
        -  "project_id"
        -]New value: +[
        +  "project_id",
        +  "id"
        +]
    • Changedupdate_layer2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
    • Changedupdate_layer_order_rank2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — unique identifier for the Procore project"New value: +"URL path parameter — unique identifier of the project"
    • Addedupdate_line_item
    • Addedupdate_linked_local_rfis_for_an_external_rfi
    • Changedupdate_meeting_project1 field changed
      • changedInput schema / properties / project_id / description
        Previous value: -"JSON request body field — the ID of the Project the Meetings belongs to"New value: +"URL path parameter — unique identifier for the project."
    • Removedupdate_payments_beneficiary_classification
    • Changedupdate_prime_change_order4 fields changed
      • removedInput schema / properties / attachment_ids
        Removed value: -{
        -  "description": "JSON request body field — existing attachments to preserve on the response",
        -  "items": {},
        -  "type": "array"
        -}
      • removedInput schema / properties / drawing_revision_ids
        Removed value: -{
        -  "description": "JSON request body field — drawing Revisions to attach to the response",
        -  "items": {},
        -  "type": "array"
        -}
      • addedInput schema / properties / request_for_quote_attachment_ids
        Added 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"
        +}
      • addedInput schema / properties / revised_substantial_completion_date
        Added value: +{
        +  "description": "JSON request body field — revised substantial completion date, only supported for Prime Change Orders on single-tier projects.",
        +  "type": "string"
        +}
    • Changedupdate_prime_change_order_batch1 field changed
      • addedInput schema / properties / request_for_quote_attachment_ids
        Added 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"
        +}
    • Addedupdate_prime_change_order_line_item
    • Changedupdate_prime_contract_line_item_project1 field changed
      • addedInput schema / properties / funding_rule_id
        Added 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"
        +}
    • Removedupdate_prime_contract_line_item_project_v2_0
    • Changedupdate_prime_contract_line_item_v1_01 field changed
      • changedInput schema / properties / project_id / description
        Previous value: -"JSON request body field — unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedupdate_prime_contract_project2 fields changed
      • removedInput schema / properties / contract_start_date
        Removed value: -{
        -  "description": "JSON request body field — only applicable to Work Order Contracts.",
        -  "type": "string"
        -}
      • addedInput schema / properties / signature_required
        Added value: +{
        +  "description": "JSON request body field — if true, a signature is required to execute the contract; otherwise no signature is required.\n",
        +  "type": "boolean"
        +}
    • Removedupdate_project_account
    • Addedupdate_project_asset_type_attachment
    • Changedupdate_project_currency_configuration6 fields changed
      • changedInput schema / properties / company_currency_exchange_rate_override / description
        Previous 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 ..."
      • changedInput schema / properties / company_id / description
        Previous 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."
      • changedInput schema / properties / currency_display / description
        Previous 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."
      • changedInput schema / properties / currency_iso_code / description
        Previous 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 ..."
      • changedInput schema / properties / multicurrency_enabled / description
        Previous 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..."
      • changedInput schema / properties / project_id / description
        Previous 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."
    • Removedupdate_project_early_pay_programs
    • Changedupdate_project_exchange_rates3 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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."
      • changedInput schema / properties / exchange_rates / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous 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."
    • Removedupdate_project_incident_configuration
    • Addedupdate_project_incidents_configuration
    • Addedupdate_project_naming_standard_rule
    • Changedupdate_project_observation_type5 fields changed
      • changedInput schema / properties / active / description
        Previous 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."
      • changedInput schema / properties / category / description
        Previous 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."
      • changedInput schema / properties / id / description
        Previous 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."
      • changedInput schema / properties / name / description
        Previous 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."
      • changedInput schema / properties / observations_category_id / description
        Previous 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."
    • Removedupdate_project_payor_pays_setting
    • Changedupdate_property_damage1 field changed
      • changedInput schema / properties / id / description
        Previous 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."
    • Changedupdate_requisition_compliance_document10 fields changed
      • addedInput schema / properties / allow_vendor_submission
        Added value: +{
        +  "description": "JSON request body field — whether vendors are allowed to submit files against this compliance document.",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / document_type
        Added 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"
        +}
      • changedInput schema / properties / effective_at / description
        Previous 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."
      • changedInput schema / properties / expires_at / description
        Previous 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."
      • addedInput schema / properties / name
        Added value: +{
        +  "description": "JSON request body field — display name of the compliance document.",
        +  "type": "string"
        +}
      • addedInput schema / properties / notes
        Added value: +{
        +  "description": "JSON request body field — general notes for the compliance document. Only commitment admins can update this field.",
        +  "type": "string"
        +}
      • changedInput schema / properties / prostore_file_ids / description
        Previous 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."
      • changedInput schema / properties / reviewer_notes / description
        Previous value: -"JSON request body field — notes from the reviewer"New value: +"JSON request body field — notes recorded by the reviewer during review."
      • changedInput schema / properties / status / description
        Previous 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."
      • addedInput schema / properties / status / enum
        Added value: +[
        +  "not_submitted",
        +  "review_pending",
        +  "revise_and_resubmit",
        +  "approved",
        +  "not_compliant",
        +  "in_review",
        +  "revision_needed",
        +  "compliant"
        +]
    • Changedupdate_requisition_subcontractor_invoice2 fields changed
      • changedInput schema / properties / view / description
        Previous 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..."
      • changedInput schema / properties / view / enum
        Previous value: -[
        -  "default",
        -  "extended",
        -  "items",
        -  "action_policy"
        -]New value: +[
        +  "default",
        +  "extended",
        +  "items",
        +  "action_policy",
        +  "header_only"
        +]
    • Changedupdate_resource_project1 field changed
      • changedInput schema / properties / project_id / description
        Previous value: -"JSON request body field — the ID of the Project the Resource belongs to"New value: +"URL path parameter — unique identifier for the project."
    • Changedupdate_schedule_metadata1 field changed
      • changedInput schema / properties / project_id / description
        Previous 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."
    • Addedupdate_specification_section_divisions
    • Addedupdate_specification_section_revision
    • Changedupdate_stamp3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"URL path parameter — the unique identifier of the company"New value: +"URL path parameter — unique identifier of the company"
      • changedInput schema / properties / project_id / description
        Previous value: -"URL path parameter — the unique identifier of the project"New value: +"URL path parameter — unique identifier of the project"
      • changedInput schema / properties / stamp_id / description
        Previous value: -"URL path parameter — the unique identifier of the stamp to update"New value: +"URL path parameter — unique identifier of the stamp to update"
    • Changedupdate_submittal1 field changed
      • changedInput schema / properties / responsible_contractor_id / description
        Previous 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"
    • Addedupdate_submittal_response
    • Changedupdate_task_item1 field changed
      • addedInput schema / properties / view
        Added 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"
        +}
    • Addedupdate_the_specifications_user_permissions
    • Changedupdate_timecard_entry_project1 field changed
      • addedInput schema / properties / serializer_view
        Added 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"
        +}
    • Changedupdate_unit_of_measure2 fields changed
      • changedInput schema / properties / name / description
        Previous 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."
      • changedInput schema / properties / uom_category_id / description
        Previous 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`."
    • Addedupdate_workflow_bulk_replace_request
    • Addedupdates_a_defect_resource
    • Addedupdates_a_line_item_for_a_defect
    • Addedupdates_a_line_item_of_a_shipment
    • Addedupdates_a_line_item_on_an_adjustment_document
    • Addedupdates_a_material_requirements_document_header
    • Addedupdates_a_receipt_header
    • Addedupdates_a_single_purchase_order_line_item
    • Addedupdates_a_single_receipt_line_item
    • Addedupdates_a_transfer_document_header
    • Addedupdates_an_adjustment_document_header
    • Addedupdates_an_attachment_for_a_direct_issue
    • Addedupdates_an_attachment_for_a_material_requirements_resource
    • Addedupdates_an_attachment_for_a_purchase_order_resource
    • Addedupdates_an_attachment_for_a_receipt_resource
    • Addedupdates_an_attachment_for_a_transfer
    • Addedupdates_an_attachment_for_an_adjustment_resource
    • Addedupdates_an_attachment_for_an_inter_project_transfer
    • Addedupdates_an_existing_condition_for_a_specific_line_item_in_a
    • Addedupdates_attachment_for_a_defect_resource
    • Addedupdates_attachment_for_a_material_resource
    • Addedupdates_header_fields_of_a_direct_issue_document
    • Addedupdates_material_header_information
    • Addedupdates_multiple_line_items_for_a_defect
    • Addedupdates_notes_on_a_direct_issue_line_item
    • Addedupdates_properties_on_a_single_shipment
    • Addedupdates_properties_on_multiple_purchase_order_line_items
    • Addedupdates_properties_on_multiple_shipment_line_items
    • Addedupdates_quantity_on_a_direct_issue_line_item_location
    • Addedupdates_the_specified_transfer_line_item
    • Removedvalidate_disbursement
    • Removedvalidate_existing_disbursement
    • Addedverifies_if_a_material_can_be_deleted_by_checking_for_connected
    • Addedverifies_if_a_purchase_order_can_be_deleted
    • Addedverifies_if_a_shipment_can_be_deleted_by_checking_for_connected
    • Addedverify_if_the_material_requirement_items_can_be_deleted
    • Changedview_an_action_plan_test_record2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedview_an_electronic_signature
    • Changedview_bid_form_company2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Changedview_bid_form_project2 fields changed
      • removedInput schema / properties / page
        Removed value: -{
        -  "description": "Page number for paginated results (default: 1)",
        -  "type": "number"
        -}
      • removedInput schema / properties / per_page
        Removed value: -{
        -  "description": "Number of items per page (default: 100, max: 100)",
        -  "type": "number"
        -}
    • Addedwithdraw_an_electronic_signature
  4. 3131 tool updatesv1.1.0
    • Changedadd_a_new_markup13 fields changed
      • changedInput schema / properties / applies_to_all / description
        Previous 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."
      • changedInput schema / properties / compound / description
        Previous value: -"Details of the compound calculations for the markup."New value: +"JSON request body field — details of the compound calculations for the markup."
      • changedInput schema / properties / holder_id / description
        Previous value: -"ID of the Markup's Holder"New value: +"Query string parameter — iD of the Markup's Holder"
      • changedInput schema / properties / holder_type / description
        Previous value: -"Type of the Markup's Holder"New value: +"Query string parameter — type of the Markup's Holder"
      • changedInput schema / properties / markup_conditions / description
        Previous 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."
      • changedInput schema / properties / markup_set / description
        Previous 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 ..."
      • changedInput schema / properties / name / description
        Previous value: -"Name of the markup."New value: +"JSON request body field — name of the markup."
      • changedInput schema / properties / percentage / description
        Previous 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."
      • changedInput schema / properties / position / description
        Previous 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."
      • changedInput schema / properties / prime_line_item_id / description
        Previous 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..."
      • changedInput schema / properties / project_id / description
        Previous value: -"ID of the Markup's Project"New value: +"Query string parameter — iD of the Markup's Project"
      • changedInput schema / properties / tax_code_ids / description
        Previous 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."
      • changedInput schema / properties / wbs_code_id / description
        Previous 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."
    • Addedadd_additional_assignees_to_a_workflow_instance_company
    • Removedadd_additional_assignees_to_a_workflow_instance_company_v2_0
    • Addedadd_additional_assignees_to_a_workflow_instance_project
    • Removedadd_additional_assignees_to_a_workflow_instance_project_v2_0
    • Changedadd_alternative_response_set_to_project_checklist_template3 fields changed
      • changedInput schema / properties / alternative_response_set_id / description
        Previous value: -"Alternative Response Set ID"New value: +"JSON request body field — alternative Response Set ID"
      • changedInput schema / properties / id / description
        Previous value: -"Checklist Template ID"New value: +"URL path parameter — checklist Template ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedadd_an_existing_response_to_an_item_response_set3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"The ID of the Response"New value: +"URL path parameter — the ID of the Response"
      • changedInput schema / properties / response_set_id / description
        Previous value: -"Checklist Item Response Set ID"New value: +"URL path parameter — checklist Item Response Set ID"
    • Changedadd_attachments_to_punch_item3 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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[..."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Punch Item"New value: +"Query string parameter — iD of the Punch Item"
      • changedInput schema / properties / project_id / description
        Previous value: -"ID of the project"New value: +"Query string parameter — unique identifier for the Procore project"
    • Removedadd_attachments_to_punch_item_v1_1
    • Changedadd_category_to_project4 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / name / description
        Previous value: -"The name of the Category."New value: +"JSON request body field — the name of the Category."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project"
      • changedInput schema / properties / subcategories / description
        Previous 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."
    • Changedadd_change_order_package_to_a_requisition_subcontractor_invoice4 fields changed
      • changedInput schema / properties / change_order_package_id / description
        Previous value: -"Change Order Package ID"New value: +"Query string parameter — change Order Package ID"
      • changedInput schema / properties / commitment_id / description
        Previous value: -"Commitment ID"New value: +"Query string parameter — unique identifier of the commitment"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / requisition_id / description
        Previous value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
    • Changedadd_checklist_template_alternative_response_set3 fields changed
      • changedInput schema / properties / alternative_response_set_id / description
        Previous value: -"Alternative Response Set ID"New value: +"JSON request body field — alternative Response Set ID"
      • changedInput schema / properties / id / description
        Previous value: -"Checklist Template ID"New value: +"URL path parameter — checklist Template ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedadd_company_checklist_template_alternative_response_set3 fields changed
      • changedInput schema / properties / alternative_response_set_id / description
        Previous value: -"Alternative Response Set ID"New value: +"JSON request body field — alternative Response Set ID"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Company Checklist Template ID"New value: +"URL path parameter — company Checklist Template ID"
    • Changedadd_company_user_to_project3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the user"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / permission_template_id / description
        Previous value: -"User permission template identifier"New value: +"JSON request body field — user permission template identifier"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedadd_person_to_a_group3 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / group_id / description
        Previous value: -"UUID reference to the Group being assigned."New value: +"JSON request body field — uUID reference to the Group being assigned."
      • changedInput schema / properties / person_id / description
        Previous value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person"
    • Changedadd_role_to_project4 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / job_title_id / description
        Previous 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."
      • changedInput schema / properties / person_id / description
        Previous value: -"UUID of the Person being assigned the Role."New value: +"JSON request body field — uUID of the Person being assigned the Role."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project"
    • Changedadd_segment_to_the_project_pattern2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / segment_id / description
        Previous value: -"Segment ID"New value: +"JSON request body field — unique identifier of the segment"
    • Changedadd_subcategory_to_category4 fields changed
      • changedInput schema / properties / category_id / description
        Previous value: -"Unique identifier for the Category."New value: +"URL path parameter — unique identifier for the Category."
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / name / description
        Previous value: -"Name of the Subcategory to be added."New value: +"JSON request body field — name of the Subcategory to be added."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project"
    • Changedadd_tag_instance_to_person4 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / expr_date / description
        Previous 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"
      • changedInput schema / properties / person_id / description
        Previous value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person"
      • changedInput schema / properties / tag_id / description
        Previous 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..."
    • Changedadd_tag_instance_to_project3 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project"
      • changedInput schema / properties / tag_id / description
        Previous 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."
    • Changedadd_to_project4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the vendor"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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."
      • changedInput schema / properties / view / enum
        Previous value: -[
        -  "normal",
        -  "extended",
        -  "name"
        -]New value: +[
        +  "normal",
        +  "extended"
        +]
    • Removedadd_to_project_v1_1
    • Changedadd_values_to_custom_field3 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / field_id / description
        Previous value: -"UUID of the Custom Field."New value: +"URL path parameter — uUID of the Custom Field."
      • changedInput schema / properties / values / description
        Previous value: -"List of values to append to the field."New value: +"JSON request body field — list of values to append to the field."
    • Changedadd_wage_override4 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / job_title_id / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project"
      • changedInput schema / properties / rate / description
        Previous 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."
    • Changedapprove_payments_beneficiary3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / payments_beneficiary_id / description
        Previous value: -"Unique identifier of the payments beneficiary"New value: +"URL path parameter — unique identifier of the payments beneficiary"
      • changedInput schema / properties / receivingPaymentsCompanyExternalAccountId / description
        Previous value: -"Receiving payments company's external account ID"New value: +"JSON request body field — receiving payments company's external account ID"
    • Addedassign_the_attribute_items_to_the_wbs_codes
    • Removedassign_the_attribute_items_to_the_wbs_codes_v2_0
    • Addedassociate_equipment_with_project_company
    • Removedassociate_equipment_with_project_company_v2_0
    • Addedassociate_equipment_with_project_project
    • Removedassociate_equipment_with_project_project_v2_0
    • Changedbatch_get_model_manager_viewpoints_by_uuid_rest_v2_0_issue4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / coordination_issue_id / description
        Previous value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID"
      • changedInput schema / properties / ids / description
        Previous 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)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedbatch_update_correspondence_type_items3 fields changed
      • changedInput schema / properties / completion_mode / description
        Previous 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'."
      • changedInput schema / properties / generic_tool_items / description
        Previous value: -"generic_tool_items"New value: +"JSON request body field — the generic tool items for this Custom - Configurable Tools operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedbatch_update_generic_tool_items6 fields changed
      • changedInput schema / properties / completion_mode / description
        Previous 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\""
      • changedInput schema / properties / generic_tool_id / description
        Previous value: -"Unique identifier for the Generic Tool"New value: +"URL path parameter — unique identifier for the Generic Tool"
      • changedInput schema / properties / generic_tool_items / description
        Previous value: -"generic_tool_items"New value: +"JSON request body field — the generic tool items for this Custom - Configurable Tools operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / view / description
        Previous value: -"If supplied customize the response format"New value: +"Query string parameter — if supplied customize the response format"
    • Changedbatch_update_rfis3 fields changed
      • changedInput schema / properties / data / description
        Previous value: -"data"New value: +"JSON request body field — the data for this RFI operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
    • Changedbid_level_across_a_bid_form6 fields changed
      • changedInput schema / properties / bid_form_id / description
        Previous value: -"Bid Form ID"New value: +"URL path parameter — unique identifier of the bid form"
      • changedInput schema / properties / bid_package_id / description
        Previous value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package"
      • changedInput schema / properties / export_format / description
        Previous value: -"Export File Format"New value: +"Query string parameter — export File Format"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedbid_level_across_a_bid_form_v1_1
    • Addedbulk_activation
    • Removedbulk_activation_v2_0
    • Addedbulk_add_company_users_to_projects
    • Removedbulk_add_company_users_to_projects_v1_1
    • Removedbulk_add_company_users_to_projects_v1_2
    • Removedbulk_add_company_users_to_projects_v1_3
    • Removedbulk_add_company_users_to_projects_v2_0
    • Removedbulk_create
    • Changedbulk_create_action_plan_item_assignees3 fields changed
      • changedInput schema / properties / completion_mode / description
        Previous 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\""
      • changedInput schema / properties / plan_item_assignees / description
        Previous value: -"plan_item_assignees"New value: +"JSON request body field — the plan item assignees for this Action Plans operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedbulk_create_action_plan_references3 fields changed
      • changedInput schema / properties / completion_mode / description
        Previous 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\""
      • changedInput schema / properties / plan_references / description
        Previous value: -"plan_references"New value: +"JSON request body field — the plan references for this Action Plans operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedbulk_create_action_plan_template_approvers3 fields changed
      • changedInput schema / properties / party_ids / description
        Previous value: -"Array of Party IDs"New value: +"JSON request body field — array of party identifiers"
      • changedInput schema / properties / plan_template_id / description
        Previous value: -"ID of the Project Action Plan Template"New value: +"JSON request body field — iD of the Project Action Plan Template"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedbulk_create_action_plan_template_item_assignees_company3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / completion_mode / description
        Previous 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\""
      • changedInput schema / properties / plan_template_item_assignees / description
        Previous value: -"plan_template_item_assignees"New value: +"JSON request body field — plan_template_item_assignees"
    • Changedbulk_create_action_plan_template_item_assignees_project3 fields changed
      • changedInput schema / properties / completion_mode / description
        Previous 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\""
      • changedInput schema / properties / plan_template_item_assignees / description
        Previous value: -"plan_template_item_assignees"New value: +"JSON request body field — plan_template_item_assignees"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedbulk_create_action_plan_template_receivers3 fields changed
      • changedInput schema / properties / party_ids / description
        Previous value: -"Array of Party IDs"New value: +"JSON request body field — array of party identifiers"
      • changedInput schema / properties / plan_template_id / description
        Previous value: -"ID of the Project Action Plan Template"New value: +"JSON request body field — iD of the Project Action Plan Template"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedbulk_create_action_plan_template_references3 fields changed
      • changedInput schema / properties / completion_mode / description
        Previous 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\""
      • changedInput schema / properties / plan_template_references / description
        Previous value: -"plan_template_references"New value: +"JSON request body field — plan_template_references"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedbulk_create_action_plan_template_test_record_requests_company3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / completion_mode / description
        Previous 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\""
      • changedInput schema / properties / plan_template_test_record_requests / description
        Previous value: -"plan_template_test_record_requests"New value: +"JSON request body field — plan_template_test_record_requests"
    • Changedbulk_create_action_plan_template_test_record_requests_project3 fields changed
      • changedInput schema / properties / completion_mode / description
        Previous 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\""
      • changedInput schema / properties / plan_template_test_record_requests / description
        Previous value: -"plan_template_test_record_requests"New value: +"JSON request body field — plan_template_test_record_requests"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedbulk_create_action_plan_test_record_requests3 fields changed
      • changedInput schema / properties / completion_mode / description
        Previous 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\""
      • changedInput schema / properties / plan_test_record_requests / description
        Previous value: -"plan_test_record_requests"New value: +"JSON request body field — plan_test_record_requests"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedbulk_create_action_plans_for_locations
    • Removedbulk_create_action_plans_for_locations_v2_0
    • Changedbulk_create_actual_production_quantities2 fields changed
      • changedInput schema / properties / actual_production_quantities / description
        Previous value: -"actual_production_quantities"New value: +"JSON request body field — actual_production_quantities"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedbulk_create_checklist_inspections_item_attachments3 fields changed
      • changedInput schema / properties / item_id / description
        Previous value: -"The ID of the Checklist Item"New value: +"JSON request body field — the ID of the Checklist Item"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / prostore_file_ids / description
        Previous 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"
    • Addedbulk_create_company_webhooks_triggers
    • Removedbulk_create_company_webhooks_triggers_v2_0
    • Changedbulk_create_custom_field_lov_entries2 fields changed
      • changedInput schema / properties / custom_field_definition_id / description
        Previous value: -"Unique identifier for the Custom Field Definition."New value: +"URL path parameter — unique identifier for the Custom Field Definition."
      • changedInput schema / properties / custom_field_lov_entries / description
        Previous value: -"custom_field_lov_entries"New value: +"JSON request body field — custom_field_lov_entries"
    • Changedbulk_create_materials2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / time_and_material_materials / description
        Previous value: -"Array of Material objects"New value: +"JSON request body field — array of Material objects"
    • Changedbulk_create_plan_template_references3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / completion_mode / description
        Previous 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\""
      • changedInput schema / properties / plan_template_references / description
        Previous value: -"plan_template_references"New value: +"JSON request body field — plan_template_references"
    • Addedbulk_create_project
    • Changedbulk_create_project_memberships2 fields changed
      • changedInput schema / properties / party_ids / description
        Previous value: -"party_ids"New value: +"JSON request body field — array of party identifiers"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedbulk_create_project_v1_0
    • Addedbulk_create_project_webhooks_triggers
    • Removedbulk_create_project_webhooks_triggers_v2_0
    • Changedbulk_create_time_and_material_equipment_logs2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / time_and_material_equipment_logs / description
        Previous value: -"Array of Time and material equipment log objects"New value: +"JSON request body field — array of Time and material equipment log objects"
    • Changedbulk_create_time_and_material_timecards2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / time_and_material_timecards / description
        Previous value: -"Array of Time and material timecard objects"New value: +"JSON request body field — array of Time and material timecard objects"
    • Changedbulk_create_timecard_entries2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / timecard_entries / description
        Previous value: -"Array of Timecard Entries you want to create"New value: +"JSON request body field — array of Timecard Entries you want to create"
    • Changedbulk_create_triggers1 field changed
      • changedInput schema / properties / hook_id / description
        Previous value: -"Webhooks Hook ID"New value: +"URL path parameter — unique identifier of the hook"
    • Changedbulk_create_update_ui_flags1 field changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
    • Removedbulk_create_v1_1
    • Changedbulk_create_wbs_codes2 fields changed
      • changedInput schema / properties / bulk / description
        Previous value: -"bulk"New value: +"JSON request body field — the bulk for this Work Breakdown Structure operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedbulk_create_workflow_instances_company_public
    • Removedbulk_create_workflow_instances_company_public_v2_0
    • Addedbulk_create_workflow_instances_project_public
    • Removedbulk_create_workflow_instances_project_public_v2_0
    • Addedbulk_deactivation
    • Removedbulk_deactivation_v2_0
    • Changedbulk_delete_bim_model_revision_viewpoints2 fields changed
      • changedInput schema / properties / ids / description
        Previous value: -"Array of BIM Model Revision Viewpoint IDs to delete"New value: +"Query string parameter — array of BIM Model Revision Viewpoint IDs to delete"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedbulk_delete_company_segment_items3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / segment_id / description
        Previous value: -"Segment ID"New value: +"URL path parameter — unique identifier of the segment"
      • changedInput schema / properties / segment_item_ids / description
        Previous value: -"List of segment item IDs"New value: +"JSON request body field — list of segment item IDs"
    • Addedbulk_delete_company_webhooks_triggers
    • Removedbulk_delete_company_webhooks_triggers_v2_0
    • Changedbulk_delete_managed_equipment2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / managed_equipment_ids / description
        Previous 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"
    • Changedbulk_delete_managed_equipment_attachment4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
      • changedInput schema / properties / managed_equipment_attachment_ids / description
        Previous 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"
      • changedInput schema / properties / managed_equipment_id / description
        Previous 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)"
    • Changedbulk_delete_managed_equipment_maintenance_log_attachments3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Id of the Managed Equipment Maintenance Log"New value: +"URL path parameter — id of the Managed Equipment Maintenance Log"
      • changedInput schema / properties / managed_equipment_maintenance_logs_attachment_ids / description
        Previous 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"
    • Changedbulk_delete_materials2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / time_and_material_materials_ids / description
        Previous value: -"Array of material IDs specified for delete"New value: +"JSON request body field — array of material IDs specified for delete"
    • Changedbulk_delete_payouts_by_invoice4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / deletedReason / description
        Previous value: -"Reason for deleting the payout"New value: +"JSON request body field — reason for deleting the payout"
      • changedInput schema / properties / disbursement_id / description
        Previous value: -"Unique identifier for the disbursement."New value: +"URL path parameter — unique identifier for the disbursement."
      • changedInput schema / properties / invoice_id / description
        Previous value: -"Invoice ID"New value: +"URL path parameter — unique identifier of the invoice"
    • Changedbulk_delete_procore_item_associations3 fields changed
      • changedInput schema / properties / association_ids / description
        Previous value: -"Array of Procore Item Association IDs to delete"New value: +"JSON request body field — array of Procore Item Association IDs to delete"
      • changedInput schema / properties / item_type / description
        Previous value: -"Type of Procore Association Items"New value: +"JSON request body field — type of Procore Association Items"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedbulk_delete_project_segment_items3 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / segment_id / description
        Previous value: -"Segment ID"New value: +"URL path parameter — unique identifier of the segment"
      • changedInput schema / properties / segment_item_ids / description
        Previous value: -"List of segment item IDs"New value: +"JSON request body field — list of segment item IDs"
    • Addedbulk_delete_project_tasks_company
    • Addedbulk_delete_project_tasks_company_v2_0
    • Removedbulk_delete_project_tasks_v2_0_company
    • Removedbulk_delete_project_tasks_v2_0_company_v2_0
    • Addedbulk_delete_project_webhooks_triggers
    • Removedbulk_delete_project_webhooks_triggers_v2_0
    • Changedbulk_delete_time_and_material_attachments2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / time_and_material_entry_attachment_ids / description
        Previous 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"
    • Changedbulk_delete_time_and_material_equipment_logs2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / time_and_material_equipment_logs_ids / description
        Previous 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"
    • Changedbulk_delete_time_and_material_timecards2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / time_and_material_timecards_ids / description
        Previous 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"
    • Changedbulk_delete_triggers1 field changed
      • changedInput schema / properties / hook_id / description
        Previous value: -"Webhooks Hook ID"New value: +"URL path parameter — unique identifier of the hook"
    • Changedbulk_destroy_action_plan_template_approvers3 fields changed
      • changedInput schema / properties / ids / description
        Previous value: -"Array of Approver IDs"New value: +"JSON request body field — array of Approver IDs"
      • changedInput schema / properties / plan_template_id / description
        Previous value: -"ID of the Project Action Plan Template"New value: +"JSON request body field — iD of the Project Action Plan Template"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedbulk_destroy_action_plan_template_receivers3 fields changed
      • changedInput schema / properties / ids / description
        Previous value: -"Array of Receiver IDs"New value: +"JSON request body field — array of Receiver IDs"
      • changedInput schema / properties / plan_template_id / description
        Previous value: -"ID of the Project Action Plan Template"New value: +"JSON request body field — iD of the Project Action Plan Template"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedbulk_destroy_actual_production_quantities2 fields changed
      • changedInput schema / properties / actual_production_quantity_ids / description
        Previous value: -"IDs of Actual Production Quantities to be destroyed"New value: +"JSON request body field — iDs of Actual Production Quantities to be destroyed"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedbulk_remove_company_users_from_projects
    • Removedbulk_remove_company_users_from_projects_v1_1
    • Removedbulk_remove_company_users_from_projects_v1_2
    • Removedbulk_remove_company_users_from_projects_v1_3
    • Removedbulk_remove_company_users_from_projects_v2_0
    • Addedbulk_remove_current_project_project
    • Removedbulk_remove_current_project_project_v2_0
    • Removedbulk_remove_current_project_project_v2_1
    • Addedbulk_remove_project_details_for_company_users_on_projects
    • Removedbulk_remove_project_details_for_company_users_on_projects_v2_0
    • Addedbulk_remove_project_memberships
    • Removedbulk_remove_project_memberships_v2_0
    • Changedbulk_retrieve_managed_equipment2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / managed_equipment_ids / description
        Previous 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"
    • Changedbulk_update_action_plan_item2 fields changed
      • changedInput schema / properties / plan_items / description
        Previous value: -"plan_items"New value: +"JSON request body field — the plan items for this Action Plans operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedbulk_update_action_plan_item_assignees3 fields changed
      • changedInput schema / properties / completion_mode / description
        Previous 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\""
      • changedInput schema / properties / plan_item_assignees / description
        Previous value: -"plan_item_assignees"New value: +"JSON request body field — the plan item assignees for this Action Plans operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedbulk_update_action_plan_template_item_assignees3 fields changed
      • changedInput schema / properties / completion_mode / description
        Previous 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\""
      • changedInput schema / properties / plan_template_item_assignees / description
        Previous value: -"plan_template_item_assignees"New value: +"JSON request body field — plan_template_item_assignees"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedbulk_update_action_plan_template_item_company2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / plan_template_items / description
        Previous value: -"plan_template_items"New value: +"JSON request body field — the plan template items for this Action Plans operation"
    • Changedbulk_update_action_plan_template_item_project3 fields changed
      • changedInput schema / properties / completion_mode / description
        Previous 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\""
      • changedInput schema / properties / plan_template_items / description
        Previous value: -"plan_template_items"New value: +"JSON request body field — the plan template items for this Action Plans operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedbulk_update_actual_production_quantities2 fields changed
      • changedInput schema / properties / actual_production_quantities / description
        Previous value: -"actual_production_quantities"New value: +"JSON request body field — actual_production_quantities"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedbulk_update_affliction_types3 fields changed
      • changedInput schema / properties / active / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / ids / description
        Previous value: -"ids"New value: +"JSON request body field — the ids for this Incidents operation"
    • Changedbulk_update_company_action_plan_template_item_assignees3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / completion_mode / description
        Previous 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\""
      • changedInput schema / properties / plan_template_item_assignees / description
        Previous value: -"plan_template_item_assignees"New value: +"JSON request body field — plan_template_item_assignees"
    • Changedbulk_update_company_observation_templates3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / observation_template_ids / description
        Previous 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"
      • changedInput schema / properties / trade_id / description
        Previous 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"
    • Changedbulk_update_contributing_behaviors3 fields changed
      • changedInput schema / properties / active / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / ids / description
        Previous value: -"ids"New value: +"JSON request body field — the ids for this Incidents operation"
    • Changedbulk_update_contributing_conditions3 fields changed
      • changedInput schema / properties / active / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / ids / description
        Previous value: -"ids"New value: +"JSON request body field — the ids for this Incidents operation"
    • Addedbulk_update_current_project_company
    • Removedbulk_update_current_project_company_v2_0
    • Removedbulk_update_current_project_company_v2_1
    • Addedbulk_update_current_project_project
    • Removedbulk_update_current_project_project_v2_0
    • Removedbulk_update_current_project_project_v2_1
    • Addedbulk_update_equipment_company
    • Removedbulk_update_equipment_company_v2_1
    • Changedbulk_update_harm_sources3 fields changed
      • changedInput schema / properties / active / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / ids / description
        Previous value: -"ids"New value: +"JSON request body field — the ids for this Incidents operation"
    • Changedbulk_update_hazards3 fields changed
      • changedInput schema / properties / active / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / ids / description
        Previous value: -"ids"New value: +"JSON request body field — the ids for this Incidents operation"
    • Changedbulk_update_incident_action_types3 fields changed
      • changedInput schema / properties / active / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / ids / description
        Previous value: -"ids"New value: +"JSON request body field — the ids for this Incidents operation"
    • Addedbulk_update_links
    • Removedbulk_update_links_v2_0
    • Changedbulk_update_managed_equipment_models4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / is_active / description
        Previous value: -"If the equipment model is active"New value: +"JSON request body field — if the equipment model is active"
      • changedInput schema / properties / managed_equipment_make_id / description
        Previous 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"
      • changedInput schema / properties / managed_equipment_type_id / description
        Previous 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"
    • Changedbulk_update_managed_equipment_types3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / is_active / description
        Previous value: -"If the equipment type is active"New value: +"JSON request body field — if the equipment type is active"
      • changedInput schema / properties / managed_equipment_category_id / description
        Previous 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"
    • Changedbulk_update_materials2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / time_and_material_materials / description
        Previous value: -"Array of Material objects"New value: +"JSON request body field — array of Material objects"
    • Addedbulk_update_project_details_for_company_users_on_projects
    • Removedbulk_update_project_details_for_company_users_on_projects_v2_0
    • Changedbulk_update_project_observation_templates5 fields changed
      • changedInput schema / properties / active / description
        Previous 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"
      • changedInput schema / properties / assignee_id / description
        Previous 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"
      • changedInput schema / properties / observation_template_ids / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / trade_id / description
        Previous 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"
    • Addedbulk_update_status_of_equipment_company
    • Removedbulk_update_status_of_equipment_company_v2_1
    • Addedbulk_update_status_of_equipment_project
    • Removedbulk_update_status_of_equipment_project_v2_1
    • Changedbulk_update_subcontractor_invoice_requisitions_items3 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / requisition_id / description
        Previous value: -"Requisition ID"New value: +"URL path parameter — unique identifier of the requisition"
      • changedInput schema / properties / requisition_items / description
        Previous value: -"Requisition Items"New value: +"JSON request body field — the requisition items for this Commitments operation"
    • Changedbulk_update_time_and_material_equipment_logs2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / time_and_material_equipment_logs / description
        Previous value: -"Array of Time and material equipment log objects"New value: +"JSON request body field — array of Time and material equipment log objects"
    • Changedbulk_update_time_and_material_timecards2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / time_and_material_timecards / description
        Previous value: -"Array of Time and material timecard objects"New value: +"JSON request body field — array of Time and material timecard objects"
    • Changedbulk_update_timecard_entries22 fields changed
      • changedInput schema / properties / approval_status / description
        Previous value: -"Approval status of a Timecard Entry"New value: +"JSON request body field — approval status of a Timecard Entry"
      • changedInput schema / properties / billable / description
        Previous value: -"The Billable status of the Timecard Entry"New value: +"JSON request body field — the Billable status of the Timecard Entry"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / cost_code_id / description
        Previous 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"
      • changedInput schema / properties / crew_id / description
        Previous 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"
      • changedInput schema / properties / date / description
        Previous value: -"The Date of the Timecard Entry"New value: +"JSON request body field — the Date of the Timecard Entry"
      • changedInput schema / properties / description / description
        Previous value: -"The description of the Timecard Entry"New value: +"JSON request body field — the description of the Timecard Entry"
      • changedInput schema / properties / hours / description
        Previous value: -"Hours worked on a Timecard Entry"New value: +"JSON request body field — hours worked on a Timecard Entry"
      • changedInput schema / properties / location_id / description
        Previous value: -"The location ID for the Timecard Entry"New value: +"JSON request body field — the location ID for the Timecard Entry"
      • changedInput schema / properties / origin_data / description
        Previous value: -"Value of related external data"New value: +"JSON request body field — value of related external data"
      • changedInput schema / properties / origin_id / description
        Previous value: -"ID of related external data"New value: +"JSON request body field — iD of related external data"
      • changedInput schema / properties / party_id / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous 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"
      • changedInput schema / properties / set_timecard_time_type_automatically / description
        Previous 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"
      • changedInput schema / properties / sub_job_id / description
        Previous 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"
      • changedInput schema / properties / time_in / description
        Previous value: -"Time in for the Timecard Entry"New value: +"JSON request body field — time in for the Timecard Entry"
      • changedInput schema / properties / time_out / description
        Previous value: -"Time out for the Timecard Entry"New value: +"JSON request body field — time out for the Timecard Entry"
      • changedInput schema / properties / timecard_time_type_id / description
        Previous 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"
      • changedInput schema / properties / timesheet_id / description
        Previous 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"
      • changedInput schema / properties / updates / description
        Previous 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"
      • changedInput schema / properties / user_id / description
        Previous 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"
      • changedInput schema / properties / work_classification_id / description
        Previous 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"
    • Changedbulk_update_wbs_codes3 fields changed
      • changedInput schema / properties / attributes / description
        Previous value: -"attributes"New value: +"JSON request body field — the attributes for this Work Breakdown Structure operation"
      • changedInput schema / properties / ids / description
        Previous value: -"WBS Code IDs"New value: +"JSON request body field — wBS Code IDs"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedbulk_update_work_activities3 fields changed
      • changedInput schema / properties / active / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / ids / description
        Previous value: -"ids"New value: +"JSON request body field — the ids for this Incidents operation"
    • Changedbulk_updates_for_daily_logs19 fields changed
      • changedInput schema / properties / accident_log / description
        Previous value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type"
      • changedInput schema / properties / call_log / description
        Previous value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type"
      • changedInput schema / properties / daily_construction_report_log / description
        Previous value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type"
      • changedInput schema / properties / delay_log / description
        Previous value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type"
      • changedInput schema / properties / delivery_log / description
        Previous value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type"
      • changedInput schema / properties / dumpster_log / description
        Previous value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type"
      • changedInput schema / properties / equipment_log / description
        Previous value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type"
      • changedInput schema / properties / inspection_log / description
        Previous value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type"
      • changedInput schema / properties / manpower_log / description
        Previous value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type"
      • changedInput schema / properties / notes_log / description
        Previous value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type"
      • changedInput schema / properties / plan_revision_log / description
        Previous value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type"
      • changedInput schema / properties / productivity_log / description
        Previous value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / quantity_log / description
        Previous value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type"
      • changedInput schema / properties / safety_violation_log / description
        Previous value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type"
      • changedInput schema / properties / timecard_entry / description
        Previous value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type"
      • changedInput schema / properties / visitor_log / description
        Previous value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type"
      • changedInput schema / properties / waste_log / description
        Previous value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type"
      • changedInput schema / properties / work_log / description
        Previous value: -"Array of Update Data for Log Type"New value: +"JSON request body field — array of Update Data for Log Type"
    • Changedcalculate_number_of_inspections_to_create_based_on_schedule6 fields changed
      • changedInput schema / properties / ends_at / description
        Previous value: -"Schedule end date"New value: +"JSON request body field — schedule end date"
      • changedInput schema / properties / frequency / description
        Previous value: -"Schedule frequency type name"New value: +"JSON request body field — schedule frequency type name"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / starts_at / description
        Previous value: -"Schedule start date"New value: +"JSON request body field — schedule start date"
    • Changedcalculate_when_the_first_inspection_of_an_inspection_schedule7 fields changed
      • changedInput schema / properties / days_created_before_due_date / description
        Previous 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"
      • changedInput schema / properties / ends_at / description
        Previous 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."
      • changedInput schema / properties / frequency / description
        Previous value: -"Schedule frequency type name"New value: +"JSON request body field — schedule frequency type name"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / starts_at / description
        Previous value: -"Schedule start date"New value: +"JSON request body field — schedule start date"
    • Changedchange_history4 fields changed
      • changedInput schema / properties / ids / description
        Previous value: -"ids"New value: +"JSON request body field — the ids for this Field Productivity operation"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcheck_company_zone2 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Addedcheck_csv_export_status_for_commitment_change_order_rows
    • Removedcheck_csv_export_status_for_commitment_change_order_rows_v2_0
    • Addedcheck_csv_export_status_for_prime_change_order_rows
    • Removedcheck_csv_export_status_for_prime_change_order_rows_v2_0
    • Removedcheck_if_number_and_revision_entered_are_available_or
    • Addedcheck_if_number_and_revision_entered_are_available_or_duplicated
    • Addedcheck_pdf_generation_status_project
    • Addedcheck_pdf_generation_status_project_v2_0
    • Addedcheck_pdf_generation_status_project_v2_0_2
    • Addedcheck_pdf_generation_status_project_v2_0_4
    • Addedcheck_pdf_generation_status_project_v2_0_5
    • Addedcheck_pdf_generation_status_project_v2_0_6
    • Removedcheck_pdf_generation_status_v2_0_project
    • Removedcheck_pdf_generation_status_v2_0_project_v2_0
    • Removedcheck_pdf_generation_status_v2_0_project_v2_0_2
    • Removedcheck_pdf_generation_status_v2_0_project_v2_0_4
    • Removedcheck_pdf_generation_status_v2_0_project_v2_0_5
    • Removedcheck_pdf_generation_status_v2_0_project_v2_0_6
    • Changedchecklist_schedule_assignee_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedchecklist_schedule_equipment_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedchecklist_schedule_inspection_template_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedchecklist_schedule_inspection_type_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedchecklist_schedule_location_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedclone_bid_board_project
    • Removedclone_bid_board_project_v2_0
    • Addedclone_change_event
    • Removedclone_change_event_v1_1
    • Changedclones_daily_logs_from_one_date_to_another_date6 fields changed
      • changedInput schema / properties / Idempotency-Token / description
        Previous value: -"Unique idempotent token"New value: +"JSON request body field — unique idempotent token"
      • changedInput schema / properties / daily_log_segment_id / description
        Previous 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"
      • changedInput schema / properties / from_date / description
        Previous 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"
      • changedInput schema / properties / log_types / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / to_date / description
        Previous 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"
    • Changedclose_and_distribute_a_submittal_log8 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Submittal ID"New value: +"URL path parameter — unique identifier of the Submittals resource"
      • changedInput schema / properties / message / description
        Previous value: -"message"New value: +"JSON request body field — the message for this Submittals operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / prostore_file_ids / description
        Previous value: -"prostore_file_ids"New value: +"JSON request body field — array of prostore file identifiers"
      • changedInput schema / properties / recipient_ids / description
        Previous value: -"recipient_ids"New value: +"JSON request body field — array of recipient identifiers"
      • changedInput schema / properties / selected_approvers / description
        Previous value: -"selected_approvers"New value: +"JSON request body field — the selected approvers for this Submittals operation"
      • changedInput schema / properties / submittal_description / description
        Previous value: -"submittal_description"New value: +"JSON request body field — submittal_description"
      • changedInput schema / properties / submittal_log_status_id / description
        Previous value: -"submittal_log_status_id"New value: +"JSON request body field — submittal_log_status_id"
    • Changedcompany_folder_and_file_index15 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / company_id / type
        Previous value: -"number"New value: +"string"
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Return item(s) created by the specified User IDs"New value: +"Query string parameter — return item(s) created by the specified User IDs"
      • changedInput schema / properties / filters__document_type / description
        Previous value: -"Return item(s) that are file or folder"New value: +"Query string parameter — return item(s) that are file or folder"
      • changedInput schema / properties / filters__file_type / description
        Previous value: -"Return item(s) that have the file extensions"New value: +"Query string parameter — return item(s) that have the file extensions"
      • changedInput schema / properties / filters__folder_id / description
        Previous 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."
      • changedInput schema / properties / filters__folder_id / type
        Previous value: -"number"New value: +"string"
      • changedInput schema / properties / filters__is_in_recycle_bin / description
        Previous 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"
      • changedInput schema / properties / filters__search / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous 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"
      • changedInput schema / properties / view / description
        Previous 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."
    • Removedcompany_folder_and_file_index_v2_0
    • Removedconfiguration_of_specifications_tool_v2_0
    • Changedconvert_private_layer_to_public3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / layer_id / description
        Previous value: -"layer_id"New value: +"URL path parameter — unique identifier of the layer"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
    • Changedcopy_from_standard_cost_code_list3 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / standard_cost_code_list_id / description
        Previous value: -"Unique identifier for the Standard Cost Code List"New value: +"JSON request body field — unique identifier for the Standard Cost Code List"
      • changedInput schema / properties / sub_job_id / description
        Previous value: -"Unique identifier for the Sub Job"New value: +"JSON request body field — unique identifier for the Sub Job"
    • Changedcopy_subset_from_standard_cost_code_list4 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"The ID of the project biller"New value: +"JSON request body field — the ID of the project biller"
      • changedInput schema / properties / standard_cost_code_ids / description
        Previous 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)"
      • changedInput schema / properties / standard_cost_code_list_id / description
        Previous 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"
      • changedInput schema / properties / sub_job_id / description
        Previous value: -"The ID of the subjob biller"New value: +"JSON request body field — the ID of the subjob biller"
    • Changedcreate_a_batch_of_bim_levels3 fields changed
      • changedInput schema / properties / bim_levels / description
        Previous value: -"An array of BIM Level payloads"New value: +"JSON request body field — an array of BIM Level payloads"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous value: -"Specify response schema view"New value: +"JSON request body field — specify response schema view"
    • Changedcreate_a_batch_of_bim_model_revision_plans2 fields changed
      • changedInput schema / properties / bim_model_revision_plans / description
        Previous value: -"An array of BIM Model Revision Plan payloads"New value: +"JSON request body field — an array of BIM Model Revision Plan payloads"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedcreate_a_batch_of_bim_model_revision_viewpoints2 fields changed
      • changedInput schema / properties / bim_model_revision_viewpoints / description
        Previous value: -"An array of BIM Model Revision Viewpoint payloads"New value: +"JSON request body field — an array of BIM Model Revision Viewpoint payloads"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedcreate_a_batch_of_bim_plans3 fields changed
      • changedInput schema / properties / bim_plans / description
        Previous value: -"An array of BIM Plan payloads"New value: +"JSON request body field — an array of BIM Plan payloads"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous value: -"Specify response schema view"New value: +"JSON request body field — specify response schema view"
    • Changedcreate_a_batch_of_bim_view_folder_by_path3 fields changed
      • changedInput schema / properties / bim_view_folders / description
        Previous value: -"An array of nested BIM View Folder payload"New value: +"JSON request body field — an array of nested BIM View Folder payload"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous value: -"Specify response schema view"New value: +"JSON request body field — specify response schema view"
    • Changedcreate_a_batch_of_bim_viewpoints2 fields changed
      • changedInput schema / properties / bim_viewpoints / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedcreate_a_bid_form10 fields changed
      • changedInput schema / properties / alternates / description
        Previous value: -"Alternate bids"New value: +"JSON request body field — alternate bids"
      • changedInput schema / properties / base_bid / description
        Previous value: -"Base Bids"New value: +"JSON request body field — base Bids"
      • changedInput schema / properties / bid_package_id / description
        Previous value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package"
      • addedInput schema / properties / lock_quantity_fields_alternates
        Added 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"
        +}
      • addedInput schema / properties / lock_quantity_fields_base_bid
        Added 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"
        +}
      • addedInput schema / properties / lock_unit_fields_alternates
        Added 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"
        +}
      • addedInput schema / properties / lock_unit_fields_base_bid
        Added 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"
        +}
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • addedInput schema / properties / proposal_id
        Added value: +{
        +  "description": "JSON request body field — unique identifier of the proposal",
        +  "type": "number"
        +}
      • changedInput schema / properties / title / description
        Previous value: -"Bid Form Title"New value: +"JSON request body field — bid Form Title"
    • Removedcreate_a_bid_form_v1_1
    • Changedcreate_a_bim_viewpoint2 fields changed
      • changedInput schema / properties / bim_viewpoint / description
        Previous value: -"bim_viewpoint"New value: +"JSON request body field — the bim viewpoint for this BIM operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedcreate_a_budget_change8 fields changed
      • changedInput schema / properties / adjustment_line_items / description
        Previous 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"
      • changedInput schema / properties / description / description
        Previous value: -"Description of budget change in HTML format"New value: +"JSON request body field — description of budget change in HTML format"
      • changedInput schema / properties / number / description
        Previous 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."
      • changedInput schema / properties / production_quantities / description
        Previous value: -"List of budget change production quantities"New value: +"JSON request body field — list of budget change production quantities"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / prostore_file_ids / description
        Previous 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"
      • changedInput schema / properties / status / description
        Previous value: -"Status of budget change"New value: +"JSON request body field — status of budget change"
      • changedInput schema / properties / title / description
        Previous value: -"Title of budget change"New value: +"JSON request body field — title of budget change"
    • Changedcreate_a_budget_lock1 field changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_a_budget_view_snapshot8 fields changed
      • changedInput schema / properties / approval_status / description
        Previous value: -"Approval Status.\n"New value: +"JSON request body field — approval Status.\n"
      • changedInput schema / properties / budget_template_id / description
        Previous 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)"
      • changedInput schema / properties / budget_view_id / description
        Previous value: -"The budget view identifier (replaces budget_template_id)"New value: +"JSON request body field — the budget view identifier (replaces budget_template_id)"
      • changedInput schema / properties / description / description
        Previous value: -"Description of the budget snapshot"New value: +"JSON request body field — description of the budget snapshot"
      • changedInput schema / properties / name / description
        Previous value: -"Title of the budget view snapshot"New value: +"JSON request body field — title of the budget view snapshot"
      • changedInput schema / properties / project_id / description
        Previous value: -"The project identifier"New value: +"JSON request body field — the project identifier"
      • changedInput schema / properties / snapshot_type / description
        Previous 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."
      • changedInput schema / properties / status_id / description
        Previous 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 ..."
    • Addedcreate_a_change_order_change_reason
    • Removedcreate_a_change_order_change_reason_v2_0
    • Changedcreate_a_checklist_inspection_schedule14 fields changed
      • changedInput schema / properties / assignee_ids / description
        Previous value: -"assignee_ids"New value: +"JSON request body field — array of assignee identifiers"
      • changedInput schema / properties / days_created_before_due_date / description
        Previous 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"
      • changedInput schema / properties / distribution_member_ids / description
        Previous value: -"distribution_member_ids"New value: +"JSON request body field — distribution_member_ids"
      • changedInput schema / properties / ends_at / description
        Previous 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."
      • changedInput schema / properties / equipment_id / description
        Previous 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."
      • changedInput schema / properties / first_inspection_due_at / description
        Previous 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."
      • changedInput schema / properties / frequency / description
        Previous 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."
      • changedInput schema / properties / inspection_template_id / description
        Previous 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."
      • changedInput schema / properties / location_id / description
        Previous 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."
      • changedInput schema / properties / name / description
        Previous value: -"The name for the Checklist Schedule."New value: +"JSON request body field — the name for the Checklist Schedule."
      • changedInput schema / properties / point_of_contact_id / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / responsible_contractor_id / description
        Previous 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."
      • changedInput schema / properties / specification_section_id / description
        Previous 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."
    • Changedcreate_a_company_action_plan_type3 fields changed
      • changedInput schema / properties / active / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / name / description
        Previous value: -"Name"New value: +"JSON request body field — the name for this Action Plans operation"
    • Changedcreate_a_company_wbs_segment5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / name / description
        Previous value: -"Segment Name"New value: +"JSON request body field — segment Name"
      • changedInput schema / properties / project_can_delete_origin_company / description
        Previous 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."
      • changedInput schema / properties / project_can_modify_origin_project / description
        Previous 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."
      • changedInput schema / properties / structure / description
        Previous value: -"The Structure for this Wbs Segment."New value: +"JSON request body field — the Structure for this Wbs Segment."
    • Changedcreate_a_compliance_document_project15 fields changed
      • changedInput schema / properties / attachment_ids / description
        Previous value: -"Existing attachments to preserve on the response"New value: +"JSON request body field — existing attachments to preserve on the response"
      • changedInput schema / properties / contract_id / description
        Previous value: -"identifier for the commitment contract"New value: +"URL path parameter — identifier for the commitment contract"
      • changedInput schema / properties / drawing_revision_ids / description
        Previous value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response"
      • changedInput schema / properties / effective_at / description
        Previous value: -"effective_at"New value: +"JSON request body field — the effective at for this Commitments operation"
      • changedInput schema / properties / expires_at / description
        Previous value: -"expires_at"New value: +"JSON request body field — the expires at for this Commitments operation"
      • changedInput schema / properties / file_version_ids / description
        Previous value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response"
      • changedInput schema / properties / form_ids / description
        Previous value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response"
      • changedInput schema / properties / image_ids / description
        Previous value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response"
      • changedInput schema / properties / name / description
        Previous value: -"name"New value: +"JSON request body field — the name for this Commitments operation"
      • changedInput schema / properties / notes / description
        Previous value: -"notes"New value: +"JSON request body field — the notes for this Commitments operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / send_expiration_notification / description
        Previous value: -"send_expiration_notification"New value: +"JSON request body field — send_expiration_notification"
      • changedInput schema / properties / status / description
        Previous value: -"status"New value: +"JSON request body field — the status for this Commitments operation"
      • changedInput schema / properties / type / description
        Previous value: -"type"New value: +"JSON request body field — the type for this Commitments operation"
      • changedInput schema / properties / upload_ids / description
        Previous value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
    • Changedcreate_a_compliance_document_project_v1_015 fields changed
      • changedInput schema / properties / attachment_ids / description
        Previous value: -"Existing attachments to preserve on the response"New value: +"JSON request body field — existing attachments to preserve on the response"
      • changedInput schema / properties / contract_id / description
        Previous value: -"identifier for the commitment contract"New value: +"URL path parameter — identifier for the commitment contract"
      • changedInput schema / properties / drawing_revision_ids / description
        Previous value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response"
      • changedInput schema / properties / effective_at / description
        Previous value: -"effective_at"New value: +"JSON request body field — the effective at for this Commitments operation"
      • changedInput schema / properties / expires_at / description
        Previous value: -"expires_at"New value: +"JSON request body field — the expires at for this Commitments operation"
      • changedInput schema / properties / file_version_ids / description
        Previous value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response"
      • changedInput schema / properties / form_ids / description
        Previous value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response"
      • changedInput schema / properties / image_ids / description
        Previous value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response"
      • changedInput schema / properties / name / description
        Previous value: -"name"New value: +"JSON request body field — the name for this Commitments operation"
      • changedInput schema / properties / notes / description
        Previous value: -"notes"New value: +"JSON request body field — the notes for this Commitments operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / send_expiration_notification / description
        Previous value: -"send_expiration_notification"New value: +"JSON request body field — send_expiration_notification"
      • changedInput schema / properties / status / description
        Previous value: -"status"New value: +"JSON request body field — the status for this Commitments operation"
      • changedInput schema / properties / type / description
        Previous value: -"type"New value: +"JSON request body field — the type for this Commitments operation"
      • changedInput schema / properties / upload_ids / description
        Previous value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
    • Addedcreate_a_coordination_issue_rest_v2_0
    • Removedcreate_a_coordination_issue_rest_v2_0_v2_0
    • Changedcreate_a_copy_of_the_action_plan_item_in_the_items_section2 fields changed
      • changedInput schema / properties / plan_item_id / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_a_copy_of_the_action_plan_section_in_the_action_plan_of3 fields changed
      • changedInput schema / properties / plan_section_id / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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..."
    • Changedcreate_a_copy_of_the_action_plan_template_item_in_the_items2 fields changed
      • changedInput schema / properties / plan_template_item_id / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_a_copy_of_the_action_plan_template_item_in_the_items_22 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / plan_template_item_id / description
        Previous 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."
    • Changedcreate_a_copy_of_the_action_plan_template_section_in_the_company2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / template_section_id / description
        Previous 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."
    • Changedcreate_a_copy_of_the_action_plan_template_section_in_the_project2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / template_section_id / description
        Previous 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."
    • Changedcreate_a_job_title7 fields changed
      • changedInput schema / properties / color / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / globally_accessible / description
        Previous 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."
      • changedInput schema / properties / group_ids / description
        Previous 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."
      • changedInput schema / properties / hourly_rate / description
        Previous 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..."
      • changedInput schema / properties / name / description
        Previous value: -"The name of the Job Title."New value: +"JSON request body field — the name of the Job Title."
      • changedInput schema / properties / type / description
        Previous 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."
    • Addedcreate_a_line_item_group_in_the_proposal_company
    • Addedcreate_a_line_item_group_in_the_proposal_project
    • Removedcreate_a_line_item_group_in_the_proposal_v2_0_company
    • Removedcreate_a_line_item_group_in_the_proposal_v2_0_project
    • Changedcreate_a_manual_forecast_line_item8 fields changed
      • changedInput schema / properties / amount / description
        Previous value: -"Total amount"New value: +"JSON request body field — total amount"
      • changedInput schema / properties / budget_line_item_id / description
        Previous 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"
      • changedInput schema / properties / description / description
        Previous value: -"Description"New value: +"JSON request body field — the description for this Budget operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / quantity / description
        Previous value: -"Quantity"New value: +"JSON request body field — the quantity for this Budget operation"
      • changedInput schema / properties / unit_cost / description
        Previous value: -"Unit cost"New value: +"JSON request body field — the unit cost for this Budget operation"
      • changedInput schema / properties / uom / description
        Previous value: -"Unit of measure"New value: +"JSON request body field — unit of measure"
      • changedInput schema / properties / wbs_code_id / description
        Previous 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"
    • Changedcreate_a_manual_hold_for_a_given_invoice2 fields changed
      • changedInput schema / properties / invoice_id / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_a_model_manager_viewpoint_and_link_it_to_the_issue_rest17 fields changed
      • changedInput schema / properties / bim_file_id / description
        Previous 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"
      • changedInput schema / properties / bim_model_uuid / description
        Previous 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)."
      • changedInput schema / properties / bim_view_folder_id / description
        Previous 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"
      • changedInput schema / properties / camera_data / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / coordination_issue_id / description
        Previous value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID"
      • changedInput schema / properties / name / description
        Previous value: -"Optional viewpoint name (MM `RequestsCreateViewpointRequest.name`)."New value: +"JSON request body field — optional viewpoint name (MM `RequestsCreateViewpointRequest.name`)."
      • changedInput schema / properties / payload / description
        Previous value: -"payload"New value: +"JSON request body field — the payload for this Coordination Issues operation"
      • changedInput schema / properties / position / description
        Previous 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)."
      • changedInput schema / properties / primary / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / redlines_data / description
        Previous 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)."
      • changedInput schema / properties / render_mode / description
        Previous value: -"render_mode"New value: +"JSON request body field — the render mode for this Coordination Issues operation"
      • changedInput schema / properties / scene_id / description
        Previous value: -"Scene UUID (MM `scene_id` / `UuidUUID`)."New value: +"JSON request body field — scene UUID (MM `scene_id` / `UuidUUID`)."
      • changedInput schema / properties / sections_data / description
        Previous 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..."
      • changedInput schema / properties / snapshot_upload_uuid / description
        Previous 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`."
      • changedInput schema / properties / visibility / description
        Previous value: -"visibility"New value: +"JSON request body field — the visibility for this Coordination Issues operation"
    • Changedcreate_a_new_budgeted_production_quantity5 fields changed
      • changedInput schema / properties / cost_code_id / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Project"New value: +"JSON request body field — unique identifier for the Procore project"
      • changedInput schema / properties / quantity / description
        Previous value: -"Quantity budgeted for a project cost code"New value: +"JSON request body field — quantity budgeted for a project cost code"
      • changedInput schema / properties / unit_of_measure / description
        Previous value: -"Unit of Measure"New value: +"JSON request body field — the unit of measure for this Budget operation"
      • changedInput schema / properties / wbs_code_id / description
        Previous 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."
    • Changedcreate_a_new_classification4 fields changed
      • changedInput schema / properties / abbreviation / description
        Previous value: -"The shortened form of classification"New value: +"JSON request body field — the shortened form of classification"
      • changedInput schema / properties / is_active / description
        Previous value: -"Is the classification active or not"New value: +"JSON request body field — is the classification active or not"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the classification"New value: +"JSON request body field — name of the classification"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_a_new_context8 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / context_type / description
        Previous value: -"context_type"New value: +"JSON request body field — the context type for this Document Markup operation"
      • changedInput schema / properties / context_type_id / description
        Previous value: -"context_type_id"New value: +"JSON request body field — unique identifier of the context type"
      • changedInput schema / properties / name / description
        Previous value: -"name"New value: +"JSON request body field — the name for this Document Markup operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
      • changedInput schema / properties / settings / description
        Previous value: -"settings"New value: +"JSON request body field — the settings for this Document Markup operation"
      • changedInput schema / properties / sub_context_type / description
        Previous value: -"sub_context_type"New value: +"JSON request body field — the sub context type for this Document Markup operation"
      • changedInput schema / properties / sub_context_type_id / description
        Previous value: -"sub_context_type_id"New value: +"JSON request body field — unique identifier of the sub context type"
    • Changedcreate_a_new_crew5 fields changed
      • changedInput schema / properties / equipment_ids / description
        Previous value: -"equipment_ids"New value: +"JSON request body field — array of equipment identifiers"
      • changedInput schema / properties / lead_party_id / description
        Previous value: -"Party Id of crew leader"New value: +"JSON request body field — party Id of crew leader"
      • changedInput schema / properties / name / description
        Previous value: -"Crew Name"New value: +"JSON request body field — crew Name"
      • changedInput schema / properties / party_ids / description
        Previous value: -"party_ids"New value: +"JSON request body field — array of party identifiers"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_a_new_equipment15 fields changed
      • changedInput schema / properties / company_visible / description
        Previous value: -"Company visible"New value: +"JSON request body field — the company visible for this Field Productivity operation"
      • changedInput schema / properties / current_project_id / description
        Previous 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"
      • changedInput schema / properties / description / description
        Previous value: -"description of the equipment"New value: +"JSON request body field — description of the equipment"
      • changedInput schema / properties / identification_number / description
        Previous value: -"Identification number of the equipment"New value: +"JSON request body field — identification number of the equipment"
      • changedInput schema / properties / managed_equipment_category_id / description
        Previous value: -"ID of the equipment category"New value: +"JSON request body field — iD of the equipment category"
      • changedInput schema / properties / managed_equipment_make_id / description
        Previous value: -"ID of the equipment make"New value: +"JSON request body field — iD of the equipment make"
      • changedInput schema / properties / managed_equipment_model_id / description
        Previous value: -"ID of the equipment model"New value: +"JSON request body field — iD of the equipment model"
      • changedInput schema / properties / managed_equipment_type_id / description
        Previous value: -"ID of the equipment type"New value: +"JSON request body field — iD of the equipment type"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the equipment"New value: +"JSON request body field — name of the equipment"
      • changedInput schema / properties / ownership / description
        Previous value: -"The type of ownership"New value: +"JSON request body field — the type of ownership"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / serial_number / description
        Previous value: -"Serial number of the equipment"New value: +"JSON request body field — serial number of the equipment"
      • changedInput schema / properties / status / description
        Previous value: -"Status"New value: +"JSON request body field — the status for this Field Productivity operation"
      • changedInput schema / properties / upload_uuids / description
        Previous value: -"Array of upload uuids"New value: +"JSON request body field — array of upload uuids"
      • changedInput schema / properties / year / description
        Previous value: -"Year the equipment was manufactured in"New value: +"JSON request body field — year the equipment was manufactured in"
    • Changedcreate_a_new_group8 fields changed
      • changedInput schema / properties / color / description
        Previous value: -"color"New value: +"JSON request body field — the color for this Document Markup operation"
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / layer_id / description
        Previous value: -"layer_id"New value: +"JSON request body field — unique identifier of the layer"
      • changedInput schema / properties / name / description
        Previous value: -"name"New value: +"JSON request body field — the name for this Document Markup operation"
      • changedInput schema / properties / order_index / description
        Previous value: -"order_index"New value: +"JSON request body field — the order index for this Document Markup operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
      • changedInput schema / properties / settings / description
        Previous value: -"settings"New value: +"JSON request body field — the settings for this Document Markup operation"
      • changedInput schema / properties / visibility / description
        Previous value: -"visibility"New value: +"JSON request body field — the visibility for this Document Markup operation"
    • Changedcreate_a_new_layer8 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / context_id / description
        Previous value: -"context_id"New value: +"JSON request body field — unique identifier of the context"
      • changedInput schema / properties / name / description
        Previous value: -"name"New value: +"JSON request body field — the name for this Document Markup operation"
      • changedInput schema / properties / order_index / description
        Previous value: -"order_index"New value: +"JSON request body field — the order index for this Document Markup operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
      • changedInput schema / properties / settings / description
        Previous value: -"settings"New value: +"JSON request body field — the settings for this Document Markup operation"
      • changedInput schema / properties / type / description
        Previous value: -"type"New value: +"JSON request body field — the type for this Document Markup operation"
      • changedInput schema / properties / visibility / description
        Previous value: -"visibility"New value: +"JSON request body field — the visibility for this Document Markup operation"
    • Addedcreate_a_new_maintenance_record_company
    • Removedcreate_a_new_maintenance_record_company_v2_0
    • Addedcreate_a_new_maintenance_record_project
    • Removedcreate_a_new_maintenance_record_project_v2_0
    • Changedcreate_a_new_time_and_material_entry18 fields changed
      • changedInput schema / properties / company_signature_id / description
        Previous value: -"The ID associate with company's signature"New value: +"JSON request body field — the ID associate with company's signature"
      • changedInput schema / properties / company_signee_party_id / description
        Previous value: -"The ID associate with company's signature party"New value: +"JSON request body field — the ID associate with company's signature party"
      • changedInput schema / properties / customer_signature_id / description
        Previous value: -"The ID associate with customer's signature"New value: +"JSON request body field — the ID associate with customer's signature"
      • changedInput schema / properties / customer_signee_party_id / description
        Previous value: -"The ID associate with customer's signature party"New value: +"JSON request body field — the ID associate with customer's signature party"
      • changedInput schema / properties / description / description
        Previous value: -"The description of job"New value: +"JSON request body field — the description of job"
      • changedInput schema / properties / drawing_revision_ids / description
        Previous value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response"
      • changedInput schema / properties / file_version_ids / description
        Previous value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response"
      • changedInput schema / properties / form_ids / description
        Previous value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response"
      • changedInput schema / properties / image_ids / description
        Previous value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response"
      • changedInput schema / properties / name / description
        Previous value: -"The title of T&M ticket"New value: +"JSON request body field — the title of T&M ticket"
      • changedInput schema / properties / number / description
        Previous value: -"Unique number for the T&M ticket"New value: +"JSON request body field — unique number for the T&M ticket"
      • changedInput schema / properties / private / description
        Previous value: -"If the T&M ticket is private"New value: +"JSON request body field — if the T&M ticket is private"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / reference_number / description
        Previous value: -"The refrence number associate with T&M ticket"New value: +"JSON request body field — the refrence number associate with T&M ticket"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / status / description
        Previous value: -"Current status of T&M ticket"New value: +"JSON request body field — current status of T&M ticket"
      • changedInput schema / properties / upload_ids / description
        Previous 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."
      • changedInput schema / properties / work_performed_on_date / description
        Previous value: -"Date work performed on"New value: +"JSON request body field — date work performed on"
    • Changedcreate_a_new_time_and_material_equipment_log6 fields changed
      • changedInput schema / properties / description / description
        Previous value: -"Description of Time And Material Equipment Log"New value: +"JSON request body field — description of Time And Material Equipment Log"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / quantity / description
        Previous value: -"Quantity of Time And Material Equipment Log"New value: +"JSON request body field — quantity of Time And Material Equipment Log"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / time_and_material_entry_id / description
        Previous 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"
      • changedInput schema / properties / uom / description
        Previous 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"
    • Changedcreate_a_new_time_and_material_notification12 fields changed
      • changedInput schema / properties / closed / description
        Previous value: -"closed"New value: +"JSON request body field — the closed for this Field Productivity operation"
      • changedInput schema / properties / company_signed / description
        Previous value: -"company_signed"New value: +"JSON request body field — the company signed for this Field Productivity operation"
      • changedInput schema / properties / creation / description
        Previous value: -"creation"New value: +"JSON request body field — the creation for this Field Productivity operation"
      • changedInput schema / properties / customer_signed / description
        Previous value: -"customer_signed"New value: +"JSON request body field — the customer signed for this Field Productivity operation"
      • changedInput schema / properties / group_equipment_totals_by / description
        Previous 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"
      • changedInput schema / properties / group_labor_totals_by / description
        Previous 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"
      • changedInput schema / properties / notify_dl_on_closed / description
        Previous value: -"notify_dl_on_closed"New value: +"JSON request body field — the notify dl on closed for this Field Productivity operation"
      • changedInput schema / properties / notify_dl_on_company_signed / description
        Previous value: -"notify_dl_on_company_signed"New value: +"JSON request body field — notify_dl_on_company_signed"
      • changedInput schema / properties / notify_dl_on_creation / description
        Previous value: -"notify_dl_on_creation"New value: +"JSON request body field — notify_dl_on_creation"
      • changedInput schema / properties / notify_dl_on_customer_signed / description
        Previous value: -"notify_dl_on_customer_signed"New value: +"JSON request body field — notify_dl_on_customer_signed"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
    • Addedcreate_a_note_in_the_project_company
    • Addedcreate_a_note_in_the_project_company_v2_0
    • Removedcreate_a_note_in_the_project_v2_0_company
    • Removedcreate_a_note_in_the_project_v2_0_company_v2_0
    • Changedcreate_a_person31 fields changed
      • changedInput schema / properties / address_1 / description
        Previous value: -"First part of the Person's address."New value: +"JSON request body field — first part of the Person's address."
      • changedInput schema / properties / address_2 / description
        Previous 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)."
      • changedInput schema / properties / can_receive_email / description
        Previous value: -"Determines if the Person can receive email notifications."New value: +"JSON request body field — determines if the Person can receive email notifications."
      • changedInput schema / properties / can_receive_mobile / description
        Previous 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."
      • changedInput schema / properties / can_receive_sms / description
        Previous value: -"Determines if the Person can receive SMS notifications."New value: +"JSON request body field — determines if the Person can receive SMS notifications."
      • changedInput schema / properties / city_town / description
        Previous 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."
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / country / description
        Previous value: -"The country where the Person is located."New value: +"JSON request body field — the country where the Person is located."
      • changedInput schema / properties / dob / description
        Previous 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."
      • changedInput schema / properties / email / description
        Previous 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."
      • changedInput schema / properties / emergency_contact_email / description
        Previous value: -"Email address of the emergency contact."New value: +"JSON request body field — email address of the emergency contact."
      • changedInput schema / properties / emergency_contact_name / description
        Previous value: -"Name of the Person's emergency contact."New value: +"JSON request body field — name of the Person's emergency contact."
      • changedInput schema / properties / emergency_contact_number / description
        Previous value: -"Phone number of the emergency contact."New value: +"JSON request body field — phone number of the emergency contact."
      • changedInput schema / properties / emergency_contact_relation / description
        Previous 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."
      • changedInput schema / properties / employee_number / description
        Previous value: -"Internal employee identifier."New value: +"JSON request body field — internal employee identifier."
      • changedInput schema / properties / first_name / description
        Previous value: -"First Name of the Person."New value: +"JSON request body field — first Name of the Person."
      • changedInput schema / properties / group_ids / description
        Previous 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."
      • changedInput schema / properties / hired_date / description
        Previous 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."
      • changedInput schema / properties / hourly_wage / description
        Previous 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."
      • changedInput schema / properties / is_assignable / description
        Previous 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."
      • changedInput schema / properties / is_user / description
        Previous 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."
      • changedInput schema / properties / job_title_id / description
        Previous 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."
      • changedInput schema / properties / last_name / description
        Previous value: -"Last Name of the Person."New value: +"JSON request body field — last Name of the Person."
      • changedInput schema / properties / no_invite / description
        Previous 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"
      • changedInput schema / properties / notification_profile_id / description
        Previous value: -"UUID of the Notification Profile for the user."New value: +"JSON request body field — uUID of the Notification Profile for the user."
      • changedInput schema / properties / password / description
        Previous 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"
      • changedInput schema / properties / permission_level_id / description
        Previous 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."
      • changedInput schema / properties / phone / description
        Previous 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"
      • changedInput schema / properties / state_province / description
        Previous 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."
      • changedInput schema / properties / status / description
        Previous 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"
      • changedInput schema / properties / zipcode / description
        Previous value: -"The postal/zip code of the Person."New value: +"JSON request body field — the postal/zip code of the Person."
    • Changedcreate_a_piece_of_equipment2 fields changed
      • changedInput schema / properties / equipment_name / description
        Previous value: -"Equipment Name"New value: +"JSON request body field — the equipment name for this Field Productivity operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_a_project26 fields changed
      • changedInput schema / properties / address_1 / description
        Previous value: -"First part of the Project's address."New value: +"JSON request body field — first part of the Project's address."
      • changedInput schema / properties / address_2 / description
        Previous 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)."
      • changedInput schema / properties / bid_rate / description
        Previous value: -"The bid rate for the Project."New value: +"JSON request body field — the bid rate for the Project."
      • changedInput schema / properties / categories / description
        Previous 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"
      • changedInput schema / properties / city_town / description
        Previous value: -"The City/Town for the Project."New value: +"JSON request body field — the City/Town for the Project."
      • changedInput schema / properties / closed_date / description
        Previous 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."
      • changedInput schema / properties / color / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / country / description
        Previous value: -"The Country for the Project."New value: +"JSON request body field — the Country for the Project."
      • changedInput schema / properties / customer_name / description
        Previous value: -"Name of the customer associated with the Project."New value: +"JSON request body field — name of the customer associated with the Project."
      • changedInput schema / properties / daily_end_time / description
        Previous 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"
      • changedInput schema / properties / daily_start_time / description
        Previous 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"
      • changedInput schema / properties / est_end_date / description
        Previous value: -"Estimated end date for the Project."New value: +"JSON request body field — estimated end date for the Project."
      • changedInput schema / properties / group_ids / description
        Previous 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."
      • changedInput schema / properties / name / description
        Previous value: -"The name of the Project."New value: +"JSON request body field — the name of the Project."
      • changedInput schema / properties / percent_complete / description
        Previous value: -"The percentage of the Project that is complete."New value: +"JSON request body field — the percentage of the Project that is complete."
      • changedInput schema / properties / project_number / description
        Previous value: -"A unique identifier for the Project."New value: +"JSON request body field — a unique identifier for the Project."
      • changedInput schema / properties / project_type / description
        Previous 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"
      • changedInput schema / properties / roles / description
        Previous 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"
      • changedInput schema / properties / start_date / description
        Previous 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`."
      • changedInput schema / properties / state_province / description
        Previous value: -"The State/Province for the Project."New value: +"JSON request body field — the State/Province for the Project."
      • changedInput schema / properties / status / description
        Previous 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"
      • changedInput schema / properties / tag_instances / description
        Previous 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"
      • changedInput schema / properties / timezone / description
        Previous 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"
      • changedInput schema / properties / wage_overrides / description
        Previous 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"
      • changedInput schema / properties / zipcode / description
        Previous value: -"The Zip/Postal Code for the Project."New value: +"JSON request body field — the Zip/Postal Code for the Project."
    • Changedcreate_a_project_checklist_template_from_a_company_checklist2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / source_template_id / description
        Previous 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"
    • Changedcreate_a_project_logo3 fields changed
      • changedInput schema / properties / file_name / description
        Previous 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."
      • changedInput schema / properties / id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / upload_uuid / description
        Previous 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."
    • Addedcreate_a_proposal_in_the_project_company
    • Addedcreate_a_proposal_in_the_project_company_v2_0
    • Removedcreate_a_proposal_in_the_project_v2_0_company
    • Removedcreate_a_proposal_in_the_project_v2_0_company_v2_0
    • Changedcreate_a_resource_request_on_a_project16 fields changed
      • changedInput schema / properties / category_id / description
        Previous value: -"UUID of the Project Category."New value: +"JSON request body field — uUID of the Project Category."
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / end_day / description
        Previous 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)."
      • changedInput schema / properties / end_time / description
        Previous 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)."
      • changedInput schema / properties / instruction_text / description
        Previous value: -"Instructions for the Resource Request."New value: +"JSON request body field — instructions for the Resource Request."
      • changedInput schema / properties / job_title_id / description
        Previous value: -"Job Title UUID for this request."New value: +"JSON request body field — job Title UUID for this request."
      • changedInput schema / properties / percent_allocated / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project"
      • changedInput schema / properties / quantity / description
        Previous value: -"Number of resource requests to create."New value: +"JSON request body field — number of resource requests to create."
      • changedInput schema / properties / start_day / description
        Previous 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)."
      • changedInput schema / properties / start_time / description
        Previous 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)."
      • changedInput schema / properties / state_id / description
        Previous value: -"UUID of the Assignment State."New value: +"JSON request body field — uUID of the Assignment State."
      • changedInput schema / properties / subcategory_id / description
        Previous value: -"UUID of the Project Subcategory."New value: +"JSON request body field — uUID of the Project Subcategory."
      • changedInput schema / properties / tag_ids / description
        Previous value: -"Array of UUIDs representing Tags."New value: +"JSON request body field — array of UUIDs representing Tags."
      • changedInput schema / properties / work_days / description
        Previous 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)."
      • changedInput schema / properties / work_scope_text / description
        Previous value: -"Scope of Work for the Resource Request."New value: +"JSON request body field — scope of Work for the Resource Request."
    • Changedcreate_a_response3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / corresponding_status / description
        Previous value: -"Item Status that the Response corresponds to"New value: +"JSON request body field — item Status that the Response corresponds to"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the Response"New value: +"JSON request body field — name of the Response"
    • Changedcreate_a_response_in_the_specified_item_response_set4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / corresponding_status / description
        Previous value: -"Item Status that the Response corresponds to"New value: +"JSON request body field — item Status that the Response corresponds to"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the Response"New value: +"JSON request body field — name of the Response"
      • changedInput schema / properties / response_set_id / description
        Previous value: -"The ID of the Response Set"New value: +"URL path parameter — the ID of the Response Set"
    • Changedcreate_a_single_group13 fields changed
      • changedInput schema / properties / address_1 / description
        Previous value: -"The first part of the Group's address."New value: +"JSON request body field — the first part of the Group's address."
      • changedInput schema / properties / address_2 / description
        Previous 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)."
      • changedInput schema / properties / city_town / description
        Previous value: -"The City or Town for the Group."New value: +"JSON request body field — the City or Town for the Group."
      • changedInput schema / properties / color / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / contact_email / description
        Previous 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."
      • changedInput schema / properties / contact_name / description
        Previous 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."
      • changedInput schema / properties / contact_phone / description
        Previous 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"
      • changedInput schema / properties / country / description
        Previous value: -"The Country for the Group."New value: +"JSON request body field — the Country for the Group."
      • changedInput schema / properties / name / description
        Previous value: -"Group Name."New value: +"JSON request body field — group Name."
      • changedInput schema / properties / state_province / description
        Previous value: -"The State or Province for the Group."New value: +"JSON request body field — the State or Province for the Group."
      • changedInput schema / properties / timezone / description
        Previous 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"
      • changedInput schema / properties / zipcode / description
        Previous value: -"Zip or Postal Code for the Group."New value: +"JSON request body field — zip or Postal Code for the Group."
    • Changedcreate_a_task_item_comment12 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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."
      • changedInput schema / properties / comment / description
        Previous value: -"The message of the comment"New value: +"JSON request body field — the message of the comment"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / document_management_document_revision_ids / description
        Previous value: -"PDM document to attach to the response"New value: +"JSON request body field — pDM document to attach to the response"
      • changedInput schema / properties / drawing_revision_ids / description
        Previous value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response"
      • changedInput schema / properties / file_version_ids / description
        Previous value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response"
      • changedInput schema / properties / form_ids / description
        Previous value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response"
      • changedInput schema / properties / image_ids / description
        Previous value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / status / description
        Previous 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."
      • changedInput schema / properties / task_item_id / description
        Previous value: -"The task_item associated with the comment"New value: +"JSON request body field — the task_item associated with the comment"
      • changedInput schema / properties / upload_ids / description
        Previous value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
    • Changedcreate_a_wbs_code3 fields changed
      • changedInput schema / properties / description / description
        Previous value: -"Description of the wbs code."New value: +"JSON request body field — description of the wbs code."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / segment_items / description
        Previous value: -"segment_items"New value: +"JSON request body field — the segment items for this Work Breakdown Structure operation"
    • Addedcreate_a_workflow_instance_company
    • Removedcreate_a_workflow_instance_company_v2_0
    • Addedcreate_a_workflow_instance_project
    • Removedcreate_a_workflow_instance_project_v2_0
    • Changedcreate_accident_log3 fields changed
      • changedInput schema / properties / accident_log / description
        Previous value: -"accident_log"New value: +"JSON request body field — the accident log for this Daily Log operation"
      • changedInput schema / properties / attachments / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_action11 fields changed
      • changedInput schema / properties / action_type_id / description
        Previous value: -"The ID of the Action Type"New value: +"JSON request body field — the ID of the Action Type"
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / description / description
        Previous value: -"Description of action taken in rich text form."New value: +"JSON request body field — description of action taken in rich text form."
      • changedInput schema / properties / drawing_revision_ids / description
        Previous value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response"
      • changedInput schema / properties / file_version_ids / description
        Previous value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response"
      • changedInput schema / properties / form_ids / description
        Previous value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response"
      • changedInput schema / properties / image_ids / description
        Previous value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response"
      • changedInput schema / properties / incident_id / description
        Previous value: -"The ID of the Incident"New value: +"JSON request body field — the ID of the Incident"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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..."
      • changedInput schema / properties / upload_ids / description
        Previous value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
    • Changedcreate_action_plan10 fields changed
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / description / description
        Previous value: -"Description of the Action Plan"New value: +"JSON request body field — description of the Action Plan"
      • changedInput schema / properties / location_id / description
        Previous 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"
      • changedInput schema / properties / manager_id / description
        Previous value: -"Party Person ID of the Action Plan Manager"New value: +"JSON request body field — party Person ID of the Action Plan Manager"
      • changedInput schema / properties / plan_approvers_attributes / description
        Previous value: -"plan_approvers_attributes"New value: +"JSON request body field — plan_approvers_attributes"
      • changedInput schema / properties / plan_receivers_attributes / description
        Previous value: -"plan_receivers_attributes"New value: +"JSON request body field — plan_receivers_attributes"
      • changedInput schema / properties / plan_type_id / description
        Previous 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"
      • changedInput schema / properties / private / description
        Previous value: -"Privacy flag of the Action Plan"New value: +"JSON request body field — privacy flag of the Action Plan"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / title / description
        Previous value: -"Title of the Action Plan"New value: +"JSON request body field — title of the Action Plan"
    • Changedcreate_action_plan_approver_signature4 fields changed
      • changedInput schema / properties / attachment / description
        Previous 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."
      • changedInput schema / properties / attachment_string / description
        Previous value: -"Base64 encoded string representing PNG image of signature"New value: +"JSON request body field — base64 encoded string representing PNG image of signature"
      • changedInput schema / properties / plan_approver_id / description
        Previous value: -"Action Plan Approver ID"New value: +"URL path parameter — action Plan Approver ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_action_plan_item7 fields changed
      • changedInput schema / properties / description / description
        Previous value: -"Description of the Action Plan Item"New value: +"JSON request body field — description of the Action Plan Item"
      • changedInput schema / properties / due_at / description
        Previous value: -"Due Date of the Action Plan Item"New value: +"JSON request body field — due Date of the Action Plan Item"
      • changedInput schema / properties / holding_type / description
        Previous 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"
      • changedInput schema / properties / notes / description
        Previous value: -"Notes for the Action Plan Item"New value: +"JSON request body field — notes for the Action Plan Item"
      • changedInput schema / properties / plan_section_id / description
        Previous value: -"Section ID of the Action Plan Item"New value: +"JSON request body field — section ID of the Action Plan Item"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / title / description
        Previous value: -"Title of the Action Plan Item"New value: +"JSON request body field — title of the Action Plan Item"
    • Changedcreate_action_plan_item_assignee6 fields changed
      • changedInput schema / properties / is_holding / description
        Previous 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"
      • changedInput schema / properties / party_id / description
        Previous 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"
      • changedInput schema / properties / plan_item_id / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / role / description
        Previous 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"
      • changedInput schema / properties / verification_method_id / description
        Previous 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"
    • Changedcreate_action_plan_item_assignee_signature4 fields changed
      • changedInput schema / properties / attachment / description
        Previous 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."
      • changedInput schema / properties / attachment_string / description
        Previous value: -"Base64 encoded string representing PNG image of signature"New value: +"JSON request body field — base64 encoded string representing PNG image of signature"
      • changedInput schema / properties / plan_item_assignee_id / description
        Previous value: -"Action Plan Item Assignee ID"New value: +"URL path parameter — action Plan Item Assignee ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_action_plan_receiver_signature4 fields changed
      • changedInput schema / properties / attachment / description
        Previous 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."
      • changedInput schema / properties / attachment_string / description
        Previous value: -"Base64 encoded string representing PNG image of signature"New value: +"JSON request body field — base64 encoded string representing PNG image of signature"
      • changedInput schema / properties / plan_receiver_id / description
        Previous value: -"Action Plan Receiver ID"New value: +"URL path parameter — action Plan Receiver ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_action_plan_reference4 fields changed
      • changedInput schema / properties / payload / description
        Previous 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..."
      • changedInput schema / properties / plan_item_id / description
        Previous value: -"Action Plan Item ID"New value: +"JSON request body field — unique identifier of the plan item"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / type / description
        Previous value: -"Action Plan Reference Type"New value: +"JSON request body field — action Plan Reference Type"
    • Changedcreate_action_plan_section4 fields changed
      • changedInput schema / properties / plan_id / description
        Previous value: -"Action Plan ID"New value: +"JSON request body field — unique identifier of the plan"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / title / description
        Previous value: -"Title"New value: +"JSON request body field — the title for this Action Plans operation"
      • changedInput schema / properties / view / description
        Previous 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..."
    • Changedcreate_action_plan_template_approver3 fields changed
      • changedInput schema / properties / party_id / description
        Previous 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"
      • changedInput schema / properties / plan_template_id / description
        Previous value: -"ID of the Project Action Plan Template"New value: +"JSON request body field — iD of the Project Action Plan Template"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_action_plan_template_receiver3 fields changed
      • changedInput schema / properties / party_id / description
        Previous 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"
      • changedInput schema / properties / plan_template_id / description
        Previous value: -"ID of the Project Action Plan Template"New value: +"JSON request body field — iD of the Project Action Plan Template"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_action_plan_test_record5 fields changed
      • changedInput schema / properties / payload / description
        Previous value: -"payload"New value: +"JSON request body field — the payload for this Action Plans operation"
      • changedInput schema / properties / plan_item_id / description
        Previous value: -"ID of the associated Action Plan Control Activity"New value: +"JSON request body field — iD of the associated Action Plan Control Activity"
      • changedInput schema / properties / plan_test_record_request_id / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / type / description
        Previous value: -"Action Plan Test Record Type"New value: +"JSON request body field — action Plan Test Record Type"
    • Changedcreate_action_plan_test_record_request4 fields changed
      • changedInput schema / properties / payload / description
        Previous 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."
      • changedInput schema / properties / plan_item_id / description
        Previous value: -"Action Plan Item ID"New value: +"JSON request body field — unique identifier of the plan item"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / type / description
        Previous value: -"Action Plan Test Record Type"New value: +"JSON request body field — action Plan Test Record Type"
    • Changedcreate_action_plan_verification_methods3 fields changed
      • changedInput schema / properties / active / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / name / description
        Previous value: -"Name"New value: +"JSON request body field — the name for this Action Plans operation"
    • Changedcreate_actual_production_quantity10 fields changed
      • changedInput schema / properties / cost_code_id / description
        Previous 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."
      • changedInput schema / properties / crew_id / description
        Previous value: -"The Crew ID for the Actual Production Quantity"New value: +"JSON request body field — the Crew ID for the Actual Production Quantity"
      • changedInput schema / properties / date / description
        Previous 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."
      • changedInput schema / properties / description / description
        Previous value: -"The description of the Actual Production Quantity"New value: +"JSON request body field — the description of the Actual Production Quantity"
      • changedInput schema / properties / location_id / description
        Previous value: -"The Location ID for the Actual Production Quantity"New value: +"JSON request body field — the Location ID for the Actual Production Quantity"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / quantity / description
        Previous value: -"Amount installed"New value: +"JSON request body field — amount installed"
      • changedInput schema / properties / sub_job_id / description
        Previous 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."
      • changedInput schema / properties / timesheet_id / description
        Previous 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..."
      • changedInput schema / properties / wbs_code_id / description
        Previous 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."
    • Changedcreate_advanced_export_for_existing_rfi5 fields changed
      • changedInput schema / properties / cover_sheet / description
        Previous value: -"cover_sheet"New value: +"JSON request body field — the cover sheet for this RFI operation"
      • changedInput schema / properties / files / description
        Previous value: -"files"New value: +"JSON request body field — the files for this RFI operation"
      • changedInput schema / properties / format / description
        Previous value: -"Export Format"New value: +"Query string parameter — export Format"
      • changedInput schema / properties / id / description
        Previous value: -"RFI ID"New value: +"URL path parameter — unique identifier of the RFI resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_affliction_type3 fields changed
      • changedInput schema / properties / active / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Affliction Type"New value: +"JSON request body field — the Name of the Affliction Type"
    • Changedcreate_an_action_plan_from_a_plan_template2 fields changed
      • changedInput schema / properties / plan_template_id / description
        Previous value: -"Action Plan Template ID"New value: +"Query string parameter — action Plan Template ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_an_equipment_make3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / is_active / description
        Previous value: -"Equipment make is active if true"New value: +"JSON request body field — equipment make is active if true"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the equipment make"New value: +"JSON request body field — name of the equipment make"
    • Changedcreate_an_equipment_model5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / is_active / description
        Previous value: -"If the equipment model is active"New value: +"JSON request body field — if the equipment model is active"
      • changedInput schema / properties / managed_equipment_make_id / description
        Previous value: -"Equipment make ID the model is associated to"New value: +"JSON request body field — equipment make ID the model is associated to"
      • changedInput schema / properties / managed_equipment_type_id / description
        Previous value: -"Equipment type ID the model is associated to"New value: +"JSON request body field — equipment type ID the model is associated to"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the equipment model"New value: +"JSON request body field — name of the equipment model"
    • Changedcreate_an_equipment_type4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / is_active / description
        Previous value: -"If the equipment model is active"New value: +"JSON request body field — if the equipment model is active"
      • changedInput schema / properties / managed_equipment_category_id / description
        Previous value: -"Equipment category ID the type is associated to"New value: +"JSON request body field — equipment category ID the type is associated to"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the equipment Type"New value: +"JSON request body field — name of the equipment Type"
    • Addedcreate_an_estimate_line_item_in_the_proposal_company
    • Addedcreate_an_estimate_line_item_in_the_proposal_project
    • Removedcreate_an_estimate_line_item_in_the_proposal_v2_0_company
    • Removedcreate_an_estimate_line_item_in_the_proposal_v2_0_project
    • Changedcreate_an_project_equipment_log8 fields changed
      • changedInput schema / properties / induction_checklist_list_id / description
        Previous value: -"Id of the inspection list the equipment uses"New value: +"JSON request body field — id of the inspection list the equipment uses"
      • changedInput schema / properties / induction_number / description
        Previous value: -"The number used for equipment induction"New value: +"JSON request body field — the number used for equipment induction"
      • changedInput schema / properties / induction_status / description
        Previous 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"
      • changedInput schema / properties / inspection_date / description
        Previous value: -"The date the equipment was inspected"New value: +"JSON request body field — the date the equipment was inspected"
      • changedInput schema / properties / managed_equipment_id / description
        Previous value: -"Equipment Id the log is associated with"New value: +"JSON request body field — equipment Id the log is associated with"
      • changedInput schema / properties / offsite / description
        Previous value: -"The Date equipment left the site"New value: +"JSON request body field — the Date equipment left the site"
      • changedInput schema / properties / onsite / description
        Previous value: -"The Date equipment arrived on site"New value: +"JSON request body field — the Date equipment arrived on site"
      • changedInput schema / properties / project_id / description
        Previous 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"
    • Changedcreate_and_update_bulk_coordination_issues2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / updates / description
        Previous value: -"An array of coordination issue payloads"New value: +"JSON request body field — an array of coordination issue payloads"
    • Changedcreate_app_configuration8 fields changed
      • changedInput schema / properties / app_installation_id / description
        Previous value: -"App Installation ID"New value: +"JSON request body field — unique identifier of the app installation"
      • changedInput schema / properties / applies_to_all_projects / description
        Previous 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 )"
      • changedInput schema / properties / applies_to_company / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company"
      • changedInput schema / properties / instance_configuration / description
        Previous value: -"App configuration values for a set of projects."New value: +"JSON request body field — app configuration values for a set of projects."
      • changedInput schema / properties / project_ids / description
        Previous 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"
      • changedInput schema / properties / sort / description
        Previous 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."
      • changedInput schema / properties / title / description
        Previous value: -"Single title for app configurations"New value: +"JSON request body field — single title for app configurations"
    • Changedcreate_app_installation4 fields changed
      • changedInput schema / properties / app_installation / description
        Previous value: -"app_installation"New value: +"JSON request body field — the app installation for this App Marketplace operation"
      • changedInput schema / properties / app_uid / description
        Previous value: -"Third party application UID"New value: +"JSON request body field — third party application UID"
      • changedInput schema / properties / company_id / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous 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."
    • Changedcreate_attachment_project3 fields changed
      • changedInput schema / properties / attachment / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / witness_statement_id / description
        Previous value: -"Witness Statement ID"New value: +"URL path parameter — witness Statement ID"
    • Changedcreate_attachment_project_v1_03 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / time_and_material_entry_attachment / description
        Previous value: -"time_and_material_entry_attachment"New value: +"JSON request body field — time_and_material_entry_attachment"
      • changedInput schema / properties / time_and_material_entry_id / description
        Previous value: -"Time & Material Id the attachment is associated with"New value: +"JSON request body field — time & Material Id the attachment is associated with"
    • Changedcreate_attachment_project_v1_0_24 fields changed
      • changedInput schema / properties / attachment / description
        Previous 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"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"URL path parameter — unique identifier of the incident"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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..."
    • Changedcreate_attachment_project_v1_0_43 fields changed
      • changedInput schema / properties / attachment / description
        Previous 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..."
      • changedInput schema / properties / list_id / description
        Previous value: -"Checklist (Inspection) ID"New value: +"URL path parameter — checklist (Inspection) ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_attachment_project_v1_0_53 fields changed
      • changedInput schema / properties / action_id / description
        Previous value: -"Action ID"New value: +"URL path parameter — unique identifier of the action"
      • changedInput schema / properties / attachment / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_bid8 fields changed
      • changedInput schema / properties / bid_package_id / description
        Previous value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package"
      • changedInput schema / properties / bidder_comments / description
        Previous value: -"Comments"New value: +"JSON request body field — comments"
      • changedInput schema / properties / is_bidder_committed / description
        Previous value: -"Bidder committed"New value: +"JSON request body field — bidder committed"
      • changedInput schema / properties / lump_sum_amount / description
        Previous value: -"Lump sum (overall) amount"New value: +"JSON request body field — lump sum (overall) amount"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / recipient_ids / description
        Previous value: -"Array of Login IDs to add as recipients"New value: +"JSON request body field — array of Login IDs to add as recipients"
      • changedInput schema / properties / submitted / description
        Previous value: -"Vendor submitted Bid"New value: +"JSON request body field — vendor submitted Bid"
      • changedInput schema / properties / vendor_id / description
        Previous value: -"Vendor responsible for bid"New value: +"JSON request body field — vendor responsible for bid"
    • Addedcreate_bid_board_project
    • Removedcreate_bid_board_project_v2_0
    • Changedcreate_bid_package31 fields changed
      • changedInput schema / properties / accept_post_due_submissions / description
        Previous value: -"Accepts bid post due submissions"New value: +"JSON request body field — accepts bid post due submissions"
      • changedInput schema / properties / accounting_method / description
        Previous value: -"Bid package accounting method, either 'amount' or 'unit'"New value: +"JSON request body field — bid package accounting method, either 'amount' or 'unit'"
      • changedInput schema / properties / anticipated_award_date / description
        Previous value: -"Anticipated award date"New value: +"JSON request body field — anticipated award date"
      • changedInput schema / properties / bid_due_date / description
        Previous value: -"Due date"New value: +"JSON request body field — bid due date in YYYY-MM-DD format"
      • changedInput schema / properties / bid_email_message / description
        Previous value: -"Bid package email information details"New value: +"JSON request body field — bid package email information details"
      • changedInput schema / properties / bid_submission_confirmation / description
        Previous value: -"Bid Package submission confirmation text"New value: +"JSON request body field — bid Package submission confirmation text"
      • changedInput schema / properties / bid_web_message / description
        Previous value: -"Bid package bidding instructions"New value: +"JSON request body field — bid package bidding instructions"
      • changedInput schema / properties / blind_bidding / description
        Previous value: -"Blind bidding enabled"New value: +"JSON request body field — blind bidding enabled"
      • changedInput schema / properties / business_classifications / description
        Previous value: -"Array of business classifications"New value: +"JSON request body field — array of business classifications"
      • changedInput schema / properties / display_project_name / description
        Previous value: -"Display project name"New value: +"JSON request body field — display project name"
      • changedInput schema / properties / distribution_ids / description
        Previous 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"
      • changedInput schema / properties / enable_prebid_walkthrough / description
        Previous value: -"Pre-bid walkthrough enabled"New value: +"JSON request body field — pre-bid walkthrough enabled"
      • changedInput schema / properties / enable_public_discovery / description
        Previous 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"
      • changedInput schema / properties / manager_id / description
        Previous value: -"Login Information ID for Manager"New value: +"JSON request body field — login Information ID for Manager"
      • changedInput schema / properties / number / description
        Previous value: -"Bid package number"New value: +"JSON request body field — bid package number"
      • changedInput schema / properties / pre_bid_meeting_date / description
        Previous 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)"
      • changedInput schema / properties / pre_bid_meeting_location / description
        Previous value: -"Location for the pre-bid meeting"New value: +"JSON request body field — location for the pre-bid meeting"
      • changedInput schema / properties / pre_bid_meeting_notes / description
        Previous value: -"Notes for the pre-bid meeting"New value: +"JSON request body field — notes for the pre-bid meeting"
      • changedInput schema / properties / pre_bid_meeting_online_link / description
        Previous value: -"Online meeting link for the pre-bid meeting"New value: +"JSON request body field — online meeting link for the pre-bid meeting"
      • changedInput schema / properties / pre_bid_walk_through_date / description
        Previous value: -"Scheduled pre-bid walkthrough date"New value: +"JSON request body field — scheduled pre-bid walkthrough date"
      • changedInput schema / properties / pre_bid_walk_through_notes / description
        Previous value: -"Pre-bid walkthrough notes"New value: +"JSON request body field — pre-bid walkthrough notes"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / prostore_file_ids / description
        Previous 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"
      • changedInput schema / properties / public_bid_opening_details_date / description
        Previous 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)"
      • changedInput schema / properties / public_bid_opening_details_location / description
        Previous value: -"Location for the public bid opening"New value: +"JSON request body field — location for the public bid opening"
      • changedInput schema / properties / public_bid_opening_details_online_link / description
        Previous value: -"Online link for the public bid opening"New value: +"JSON request body field — online link for the public bid opening"
      • changedInput schema / properties / public_project_funding_source / description
        Previous 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'"
      • changedInput schema / properties / require_nda / description
        Previous value: -"Require Non-Disclosure Agreement"New value: +"JSON request body field — require Non-Disclosure Agreement"
      • changedInput schema / properties / show_location_for_nda_projects / description
        Previous 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"
      • changedInput schema / properties / title / description
        Previous value: -"Bid package title"New value: +"JSON request body field — bid package title"
      • changedInput schema / properties / trades_and_services / description
        Previous value: -"Array of trades and services"New value: +"JSON request body field — array of trades and services"
    • Changedcreate_billing_period5 fields changed
      • changedInput schema / properties / due_date / description
        Previous value: -"Due date"New value: +"JSON request body field — due date in YYYY-MM-DD format"
      • changedInput schema / properties / end_date / description
        Previous value: -"End date"New value: +"JSON request body field — the end date in YYYY-MM-DD format"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / start_date / description
        Previous value: -"Start date"New value: +"JSON request body field — the start date in YYYY-MM-DD format"
      • changedInput schema / properties / status / description
        Previous value: -"Status"New value: +"JSON request body field — the status for this Commitments operation"
    • Changedcreate_bim_file2 fields changed
      • changedInput schema / properties / bim_file / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedcreate_bim_geometry_file_bundle3 fields changed
      • changedInput schema / properties / bim_geometry_file_bundle / description
        Previous value: -"BIM Geometry File"New value: +"JSON request body field — bIM Geometry File"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous value: -"Specify response schema view"New value: +"JSON request body field — specify response schema view"
    • Changedcreate_bim_level3 fields changed
      • changedInput schema / properties / bim_level / description
        Previous value: -"BIM Level"New value: +"JSON request body field — the bim level for this BIM operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous value: -"Specify response schema view"New value: +"JSON request body field — specify response schema view"
    • Changedcreate_bim_mint_tokens1 field changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedcreate_bim_model3 fields changed
      • changedInput schema / properties / bim_model / description
        Previous value: -"BIM Model"New value: +"JSON request body field — the bim model for this BIM operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous value: -"Specify response schema view"New value: +"JSON request body field — specify response schema view"
    • Changedcreate_bim_model_revision2 fields changed
      • changedInput schema / properties / bim_model_revision / description
        Previous value: -"bim_model_revision"New value: +"JSON request body field — the bim model revision for this BIM operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedcreate_bim_model_revision_plan2 fields changed
      • changedInput schema / properties / bim_model_revision_plan / description
        Previous value: -"BIM Model Revision Plan"New value: +"JSON request body field — bIM Model Revision Plan"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedcreate_bim_plan3 fields changed
      • changedInput schema / properties / bim_plan / description
        Previous value: -"bim_plan"New value: +"JSON request body field — the bim plan for this BIM operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous value: -"Specify response schema view"New value: +"JSON request body field — specify response schema view"
    • Changedcreate_bim_view_folder2 fields changed
      • changedInput schema / properties / bim_view_folder / description
        Previous value: -"bim_view_folder"New value: +"JSON request body field — the bim view folder for this BIM operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedcreate_budget_line_item2 fields changed
      • changedInput schema / properties / budget_line_item / description
        Previous value: -"Budget Line Item object"New value: +"JSON request body field — budget Line Item object"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Removedcreate_budget_line_item_v1_1
    • Changedcreate_budget_modification7 fields changed
      • changedInput schema / properties / from_budget_line_item_id / description
        Previous 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..."
      • changedInput schema / properties / notes / description
        Previous value: -"Notes on the purpose of the transfer"New value: +"JSON request body field — notes on the purpose of the transfer"
      • changedInput schema / properties / origin_data / description
        Previous 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"
      • changedInput schema / properties / origin_id / description
        Previous 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)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / to_budget_line_item_id / description
        Previous 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."
      • changedInput schema / properties / transfer_amount / description
        Previous value: -"Transfer amount"New value: +"JSON request body field — the transfer amount for this Budget operation"
    • Changedcreate_calendar_item9 fields changed
      • changedInput schema / properties / assigned_id / description
        Previous 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"
      • changedInput schema / properties / color / description
        Previous value: -"Calendar Item color (as a hex triplet)"New value: +"JSON request body field — calendar Item color (as a hex triplet)"
      • changedInput schema / properties / description / description
        Previous value: -"Calendar Item description"New value: +"JSON request body field — calendar Item description"
      • changedInput schema / properties / finish / description
        Previous value: -"The finish date of the Calendar Item"New value: +"JSON request body field — the finish date of the Calendar Item"
      • changedInput schema / properties / name / description
        Previous value: -"Calendar Item name"New value: +"JSON request body field — calendar Item name"
      • changedInput schema / properties / percentage / description
        Previous value: -"Calendar Item completion percentage"New value: +"JSON request body field — calendar Item completion percentage"
      • changedInput schema / properties / private / description
        Previous value: -"Calendar Item private status"New value: +"JSON request body field — calendar Item private status"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / start / description
        Previous value: -"The start date of the Calendar Item"New value: +"JSON request body field — the start date of the Calendar Item"
    • Changedcreate_call_log3 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / call_log / description
        Previous value: -"call_log"New value: +"JSON request body field — the call log for this Daily Log operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedcreate_catalog
    • Removedcreate_catalog_v2_0
    • Changedcreate_change_event21 fields changed
      • removedInput schema / properties / attachments
        Removed 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"
        -}
      • removedInput schema / properties / change_event
        Removed value: -{
        -  "additionalProperties": {},
        -  "description": "change_event",
        -  "type": "object"
        -}
      • removedInput schema / properties / change_event_origin_id
        Removed 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"
        -}
      • removedInput schema / properties / change_event_origin_type
        Removed value: -{
        -  "description": "Change Event origin type. Supported values: `GenericToolItem`, `CommunicationThread`, `Meeting`, `Observations::Item`, `Rfi::Header`, `SiteInstruction`.",
        -  "type": "string"
        -}
      • addedInput schema / properties / change_items
        Added value: +{
        +  "description": "JSON request body field — change Event Line Items",
        +  "items": {},
        +  "type": "array"
        +}
      • addedInput schema / properties / change_reason
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — the change reason for this Change Events operation",
        +  "type": "object"
        +}
      • addedInput schema / properties / change_type
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — the change type for this Change Events operation",
        +  "type": "object"
        +}
      • addedInput 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"
        +}
      • addedInput schema / properties / description
        Added value: +{
        +  "description": "JSON request body field — the description for this Change Events operation",
        +  "type": "string"
        +}
      • addedInput schema / properties / event_origin
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — the event origin for this Change Events operation",
        +  "type": "object"
        +}
      • addedInput schema / properties / external_data
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — the external data for this Change Events operation",
        +  "type": "object"
        +}
      • addedInput schema / properties / number
        Added value: +{
        +  "description": "JSON request body field — the number for this Change Events operation",
        +  "type": "string"
        +}
      • removedInput schema / properties / origin_global_id
        Removed 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"
        -}
      • addedInput schema / properties / prime_contract_for_estimates
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — prime_contract_for_estimates",
        +  "type": "object"
        +}
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • addedInput schema / properties / scope
        Added value: +{
        +  "description": "JSON request body field — event Scope",
        +  "enum": [
        +    "tbd",
        +    "in_scope",
        +    "out_of_scope"
        +  ],
        +  "type": "string"
        +}
      • addedInput schema / properties / source
        Added 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"
        +}
      • addedInput schema / properties / source_of_revenue_rom
        Added value: +{
        +  "description": "JSON request body field — revenue ROM source for this Change Event",
        +  "enum": [
        +    "latest_cost",
        +    "manual",
        +    "automatic",
        +    "no_revenue_expected"
        +  ],
        +  "type": "string"
        +}
      • addedInput schema / properties / status
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — the status for this Change Events operation",
        +  "type": "object"
        +}
      • addedInput schema / properties / title
        Added value: +{
        +  "description": "JSON request body field — the title for this Change Events operation",
        +  "type": "string"
        +}
      • changedInput schema / required
        Previous value: -[
        -  "project_id",
        -  "change_event"
        -]New value: +[
        +  "project_id",
        +  "scope",
        +  "status"
        +]
    • Changedcreate_change_event_production_quantity7 fields changed
      • changedInput schema / properties / change_event_id / description
        Previous value: -"Unique identifier for the Change Event"New value: +"URL path parameter — unique identifier for the Change Event"
      • changedInput schema / properties / cost_code_id / description
        Previous value: -"ID of the associated Cost Code"New value: +"JSON request body field — iD of the associated Cost Code"
      • changedInput schema / properties / description / description
        Previous value: -"Description"New value: +"JSON request body field — the description for this Change Events operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / quantity / description
        Previous value: -"Quantity"New value: +"JSON request body field — the quantity for this Change Events operation"
      • changedInput schema / properties / uom / description
        Previous value: -"Unit of Measure"New value: +"JSON request body field — unit of Measure"
      • changedInput schema / properties / wbs_code_id / description
        Previous value: -"ID of the associated WBS Code"New value: +"JSON request body field — iD of the associated WBS Code"
    • Removedcreate_change_event_v1_1
    • Changedcreate_change_order_package3 fields changed
      • changedInput schema / properties / change_order / description
        Previous value: -"change_order"New value: +"JSON request body field — the change order for this Change Orders operation"
      • changedInput schema / properties / contract_id / description
        Previous value: -"Contract ID"New value: +"JSON request body field — unique identifier of the contract"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedcreate_change_order_request3 fields changed
      • changedInput schema / properties / change_order / description
        Previous value: -"change_order"New value: +"JSON request body field — the change order for this Change Orders operation"
      • changedInput schema / properties / contract_id / description
        Previous value: -"Contract ID"New value: +"JSON request body field — unique identifier of the contract"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedcreate_checklist5 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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."
      • changedInput schema / properties / list / description
        Previous value: -"Checklist object"New value: +"JSON request body field — checklist object"
      • changedInput schema / properties / project_id / description
        Previous value: -"The ID of the Project"New value: +"JSON request body field — the ID of the Project"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / template_id / description
        Previous value: -"The ID of the Template to copy from."New value: +"JSON request body field — the ID of the Template to copy from."
    • Changedcreate_checklist_comment4 fields changed
      • changedInput schema / properties / comment / description
        Previous value: -"Comment object"New value: +"JSON request body field — comment object"
      • changedInput schema / properties / item_id / description
        Previous value: -"The ID of the Item"New value: +"JSON request body field — unique identifier of the item"
      • changedInput schema / properties / list_id / description
        Previous value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list"
      • changedInput schema / properties / project_id / description
        Previous value: -"The ID of the Project"New value: +"JSON request body field — the ID of the Project"
    • Changedcreate_checklist_inspection4 fields changed
      • changedInput schema / properties / list / description
        Previous value: -"list"New value: +"JSON request body field — the list for this Inspections operation"
      • changedInput schema / properties / list_template_id / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
    • Removedcreate_checklist_inspection_v1_1
    • Changedcreate_checklist_item_attachment5 fields changed
      • changedInput schema / properties / attachment / description
        Previous 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."
      • changedInput schema / properties / item_id / description
        Previous value: -"Checklist Item ID"New value: +"URL path parameter — unique identifier of the item"
      • changedInput schema / properties / list_id / description
        Previous value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list"
      • changedInput schema / properties / project_id / description
        Previous 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"
      • changedInput schema / properties / section_id / description
        Previous 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"
    • Changedcreate_checklist_item_response7 fields changed
      • changedInput schema / properties / date_value / description
        Previous 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"
      • changedInput schema / properties / item_id / description
        Previous value: -"Checklist Item ID"New value: +"URL path parameter — unique identifier of the item"
      • changedInput schema / properties / number_value / description
        Previous value: -"Number Response - Value for Open Ended Number Items"New value: +"JSON request body field — number Response - Value for Open Ended Number Items"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / response_option_id / description
        Previous 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"
      • changedInput schema / properties / status / description
        Previous 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'."
      • changedInput schema / properties / text_value / description
        Previous value: -"Text Response - Value for Open Ended Text Items"New value: +"JSON request body field — text Response - Value for Open Ended Text Items"
    • Changedcreate_checklist_schedule_attachment3 fields changed
      • changedInput schema / properties / attachment / description
        Previous 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..."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / schedule_id / description
        Previous value: -"Checklist Schedule ID"New value: +"URL path parameter — checklist Schedule ID"
    • Changedcreate_checklist_section3 fields changed
      • changedInput schema / properties / list_id / description
        Previous value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list"
      • changedInput schema / properties / project_id / description
        Previous 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"
      • changedInput schema / properties / section / description
        Previous value: -"Section object"New value: +"JSON request body field — section object"
    • Changedcreate_checklist_signature5 fields changed
      • changedInput schema / properties / attachment / description
        Previous 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..."
      • changedInput schema / properties / attachment_string / description
        Previous value: -"Base64 encoded string representing PNG image of signature"New value: +"JSON request body field — base64 encoded string representing PNG image of signature"
      • changedInput schema / properties / list_id / description
        Previous value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / signature_request_id / description
        Previous value: -"Checklist Signature Request ID"New value: +"URL path parameter — checklist Signature Request ID"
    • Changedcreate_checklist_signature_request3 fields changed
      • changedInput schema / properties / list_id / description
        Previous value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / signatory_id / description
        Previous value: -"ID of the User requested to sign"New value: +"JSON request body field — iD of the User requested to sign"
    • Changedcreate_classification3 fields changed
      • changedInput schema / properties / abbreviation / description
        Previous value: -"The shortened form of classification"New value: +"JSON request body field — the shortened form of classification"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / name / description
        Previous value: -"Name of the classification"New value: +"JSON request body field — name of the classification"
    • Changedcreate_commitment_change_order31 fields changed
      • changedInput schema / properties / attachment_ids / description
        Previous value: -"Existing attachments to preserve on the response"New value: +"JSON request body field — existing attachments to preserve on the response"
      • changedInput schema / properties / batch_id / description
        Previous value: -"Unique identifier for a change order batch."New value: +"JSON request body field — unique identifier for a change order batch."
      • changedInput schema / properties / change_event_attachment_ids / description
        Previous 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."
      • changedInput schema / properties / change_order_change_reason_id / description
        Previous value: -"Unique identifier for the change reason."New value: +"JSON request body field — unique identifier for the change reason."
      • changedInput schema / properties / contract_id / description
        Previous value: -"Unique identifier for the contract."New value: +"JSON request body field — unique identifier for the contract."
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / description / description
        Previous value: -"Description"New value: +"JSON request body field — the description for this Commitments operation"
      • changedInput schema / properties / designated_reviewer_id / description
        Previous 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."
      • changedInput schema / properties / drawing_revision_ids / description
        Previous value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response"
      • changedInput schema / properties / due_date / description
        Previous value: -"Due Date"New value: +"JSON request body field — due date in YYYY-MM-DD format"
      • changedInput schema / properties / enable_ssov / description
        Previous 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."
      • changedInput schema / properties / executed / description
        Previous value: -"Whether or not the Change Order is executed"New value: +"JSON request body field — whether or not the Change Order is executed"
      • changedInput schema / properties / field_change / description
        Previous value: -"Field Change"New value: +"JSON request body field — the field change for this Commitments operation"
      • changedInput schema / properties / file_version_ids / description
        Previous value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response"
      • changedInput schema / properties / invoiced_date / description
        Previous value: -"Invoiced Date"New value: +"JSON request body field — the invoiced date in YYYY-MM-DD format"
      • changedInput schema / properties / location_id / description
        Previous value: -"Unique identifier for the location."New value: +"JSON request body field — unique identifier for the location."
      • changedInput schema / properties / number / description
        Previous value: -"Number of the Change Order"New value: +"JSON request body field — number of the Change Order"
      • changedInput schema / properties / paid / description
        Previous 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"
      • changedInput schema / properties / paid_date / description
        Previous value: -"Paid Date"New value: +"JSON request body field — the paid date in YYYY-MM-DD format"
      • changedInput schema / properties / private / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / reason / description
        Previous value: -"Reason for the change order"New value: +"JSON request body field — reason for the change order"
      • changedInput schema / properties / received_from_id / description
        Previous value: -"Unique identifier for the received from entity."New value: +"JSON request body field — unique identifier for the received from entity."
      • changedInput schema / properties / reference / description
        Previous value: -"Reference"New value: +"JSON request body field — the reference for this Commitments operation"
      • changedInput schema / properties / revision / description
        Previous value: -"Revision Number"New value: +"JSON request body field — revision Number"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / schedule_impact_amount / description
        Previous value: -"Schedule impact in days"New value: +"JSON request body field — schedule impact in days"
      • changedInput schema / properties / signature_required / description
        Previous 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"
      • changedInput schema / properties / signed_change_order_received_date / description
        Previous value: -"Signed Change Order Received Date"New value: +"JSON request body field — signed Change Order Received Date"
      • changedInput schema / properties / status / description
        Previous value: -"Status"New value: +"JSON request body field — the status for this Commitments operation"
      • changedInput schema / properties / title / description
        Previous value: -"Title of the Contract"New value: +"JSON request body field — title of the Contract"
    • Changedcreate_commitment_change_order_batch28 fields changed
      • changedInput schema / properties / attachment_ids / description
        Previous value: -"Existing attachments to preserve on the response"New value: +"JSON request body field — existing attachments to preserve on the response"
      • changedInput schema / properties / change_event_attachment_ids / description
        Previous 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."
      • changedInput schema / properties / change_order_ids / description
        Previous 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."
      • changedInput schema / properties / contract_id / description
        Previous value: -"Unique identifier for the contract."New value: +"JSON request body field — unique identifier for the contract."
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / description / description
        Previous value: -"Description"New value: +"JSON request body field — the description for this Commitments operation"
      • changedInput schema / properties / designated_reviewer_id / description
        Previous 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."
      • changedInput schema / properties / drawing_revision_ids / description
        Previous value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response"
      • changedInput schema / properties / due_date / description
        Previous value: -"Due Date"New value: +"JSON request body field — due date in YYYY-MM-DD format"
      • changedInput schema / properties / executed / description
        Previous 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"
      • changedInput schema / properties / file_version_ids / description
        Previous value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response"
      • changedInput schema / properties / form_ids / description
        Previous value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response"
      • changedInput schema / properties / image_ids / description
        Previous value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response"
      • changedInput schema / properties / invoiced_date / description
        Previous value: -"Invoiced Date"New value: +"JSON request body field — the invoiced date in YYYY-MM-DD format"
      • changedInput schema / properties / legacy_request_ids / description
        Previous 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."
      • changedInput schema / properties / number / description
        Previous value: -"Number of the Change Order Batch"New value: +"JSON request body field — number of the Change Order Batch"
      • changedInput schema / properties / paid_date / description
        Previous value: -"Paid Date"New value: +"JSON request body field — the paid date in YYYY-MM-DD format"
      • changedInput schema / properties / private / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / revised_substantial_completion_date / description
        Previous value: -"Revised substantial completion date"New value: +"JSON request body field — revised substantial completion date"
      • changedInput schema / properties / revision / description
        Previous value: -"Revision Number"New value: +"JSON request body field — revision Number"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / schedule_impact_amount / description
        Previous value: -"Schedule impact in days"New value: +"JSON request body field — schedule impact in days"
      • changedInput schema / properties / signature_required / description
        Previous 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"
      • changedInput schema / properties / signed_change_order_received_date / description
        Previous value: -"Signed Change Order Batch Received Date"New value: +"JSON request body field — signed Change Order Batch Received Date"
      • changedInput schema / properties / status / description
        Previous value: -"Status"New value: +"JSON request body field — the status for this Commitments operation"
      • changedInput schema / properties / title / description
        Previous value: -"Title of the Change Order Batch"New value: +"JSON request body field — title of the Change Order Batch"
      • changedInput schema / properties / upload_ids / description
        Previous value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
    • Addedcreate_commitment_change_order_line_item
    • Removedcreate_commitment_change_order_line_item_v2_0
    • Addedcreate_commitment_contract
    • Addedcreate_commitment_contract_line_item
    • Removedcreate_commitment_contract_line_item_v2_0
    • Removedcreate_commitment_contract_v2_0
    • Changedcreate_communication_tag2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / title / description
        Previous value: -"name of the tag"New value: +"JSON request body field — name of the tag"
    • Changedcreate_company_action_plan_template_item5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / description / description
        Previous value: -"Description"New value: +"JSON request body field — the description for this Action Plans operation"
      • changedInput schema / properties / holding_type / description
        Previous 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"
      • changedInput schema / properties / plan_template_section_id / description
        Previous 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"
      • changedInput schema / properties / title / description
        Previous value: -"Title"New value: +"JSON request body field — the title for this Action Plans operation"
    • Changedcreate_company_action_plan_template_item_assignee5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / is_holding / description
        Previous 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"
      • changedInput schema / properties / plan_template_item_id / description
        Previous 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"
      • changedInput schema / properties / role / description
        Previous 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"
      • changedInput schema / properties / verification_method_id / description
        Previous 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"
    • Changedcreate_company_action_plan_template_reference4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / payload / description
        Previous 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"
      • changedInput schema / properties / plan_template_item_id / description
        Previous value: -"ID of the associated Template Item"New value: +"JSON request body field — iD of the associated Template Item"
      • changedInput schema / properties / type / description
        Previous value: -"Company Action Plan Template Reference Type"New value: +"JSON request body field — company Action Plan Template Reference Type"
    • Changedcreate_company_action_plan_template_section3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / plan_template_id / description
        Previous 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"
      • changedInput schema / properties / title / description
        Previous value: -"Title"New value: +"JSON request body field — the title for this Action Plans operation"
    • Changedcreate_company_action_plan_template_test_record_request4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / payload / description
        Previous value: -"payload"New value: +"JSON request body field — the payload for this Action Plans operation"
      • changedInput schema / properties / plan_template_item_id / description
        Previous 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"
      • changedInput schema / properties / type / description
        Previous value: -"Action Plan Template Test Record Type"New value: +"JSON request body field — action Plan Template Test Record Type"
    • Changedcreate_company_action_plan_templates5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / description / description
        Previous value: -"Description"New value: +"JSON request body field — the description for this Action Plans operation"
      • changedInput schema / properties / plan_type_id / description
        Previous value: -"ID of an Action Plan Type"New value: +"JSON request body field — iD of an Action Plan Type"
      • addedInput schema / properties / private
        Added value: +{
        +  "description": "JSON request body field — privacy flag of the Company Action Plan Template",
        +  "type": "boolean"
        +}
      • changedInput schema / properties / title / description
        Previous value: -"Title"New value: +"JSON request body field — the title for this Action Plans operation"
    • Removedcreate_company_action_plan_templates_v1_1
    • Changedcreate_company_checklist_template3 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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[]..."
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / list_template / description
        Previous value: -"Checklist Template object"New value: +"JSON request body field — checklist Template object"
    • Changedcreate_company_checklist_template_section4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / list_template_id / description
        Previous value: -"The ID of the Checklist Template"New value: +"URL path parameter — the ID of the Checklist Template"
      • changedInput schema / properties / name / description
        Previous value: -"Name"New value: +"JSON request body field — the name for this Inspections operation"
      • changedInput schema / properties / position / description
        Previous value: -"The position of Section"New value: +"JSON request body field — the position of Section"
    • Changedcreate_company_classifications_for_project1 field changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedcreate_company_currency_configuration
    • Removedcreate_company_currency_configuration_v2_0
    • Changedcreate_company_exchange_rates3 fields changed
      • changedInput schema / properties / base_currency_iso_code / description
        Previous value: -"Base Currency ISO Code"New value: +"JSON request body field — base Currency ISO Code"
      • changedInput schema / properties / company_id / description
        Previous value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / exchange_rates / description
        Previous value: -"Company exchange rates"New value: +"JSON request body field — company exchange rates"
    • Changedcreate_company_file2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / file / description
        Previous value: -"file"New value: +"JSON request body field — the file for this Documents operation"
    • Changedcreate_company_file_version3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / file_id / description
        Previous value: -"The id of the File"New value: +"Query string parameter — unique identifier of the file"
      • changedInput schema / properties / file_version / description
        Previous value: -"file_version"New value: +"JSON request body field — the file version for this Documents operation"
    • Changedcreate_company_folder6 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / explicit_permissions / description
        Previous value: -"Set folder to private (true/false)"New value: +"JSON request body field — set folder to private (true/false)"
      • changedInput schema / properties / is_tracked / description
        Previous 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)"
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the folder"New value: +"JSON request body field — the Name of the folder"
      • changedInput schema / properties / parent_id / description
        Previous 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."
    • Changedcreate_company_form_template3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / fillable_pdf / description
        Previous 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` ..."
      • changedInput schema / properties / form_template / description
        Previous value: -"form_template"New value: +"JSON request body field — the form template for this Forms operation"
    • Changedcreate_company_inspection_template_item7 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / inspection_template_id / description
        Previous value: -"The ID of the Company Inspection Template"New value: +"URL path parameter — the ID of the Company Inspection Template"
      • changedInput schema / properties / name / description
        Previous value: -"Name"New value: +"JSON request body field — the name for this Inspections operation"
      • changedInput schema / properties / position / description
        Previous value: -"Item position"New value: +"JSON request body field — item position"
      • changedInput schema / properties / response_set_id / description
        Previous value: -"Response Set ID"New value: +"JSON request body field — unique identifier of the response set"
      • changedInput schema / properties / section_id / description
        Previous value: -"Response Set ID"New value: +"JSON request body field — unique identifier of the section"
      • changedInput schema / properties / type / description
        Previous value: -"Item type"New value: +"JSON request body field — item type"
    • Changedcreate_company_inspection_template_item_reference5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / inspection_template_id / description
        Previous value: -"The ID of the Company Inspection Template"New value: +"URL path parameter — the ID of the Company Inspection Template"
      • changedInput schema / properties / item_id / description
        Previous value: -"ID of the associated Company Inspection Template Item"New value: +"JSON request body field — iD of the associated Company Inspection Template Item"
      • changedInput schema / properties / payload / description
        Previous 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"
      • changedInput schema / properties / type / description
        Previous value: -"Company Inspection Template Item Reference Type"New value: +"JSON request body field — company Inspection Template Item Reference Type"
    • Changedcreate_company_insurance18 fields changed
      • changedInput schema / properties / additional_insured / description
        Previous value: -"Additional Individuals and/or Companies Insured"New value: +"JSON request body field — additional Individuals and/or Companies Insured"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / division_template / description
        Previous value: -"Division Template"New value: +"JSON request body field — the division template for this Directory operation"
      • changedInput schema / properties / effective_date / description
        Previous value: -"Effective date"New value: +"JSON request body field — the effective date in YYYY-MM-DD format"
      • changedInput schema / properties / enable_expired_insurance_notifications / description
        Previous value: -"Enable/Disable expired insurance notifications"New value: +"JSON request body field — enable/Disable expired insurance notifications"
      • changedInput schema / properties / exempt / description
        Previous value: -"Exempt status"New value: +"JSON request body field — exempt status"
      • changedInput schema / properties / expiration_date / description
        Previous value: -"Expiration date"New value: +"JSON request body field — the expiration date in YYYY-MM-DD format"
      • changedInput schema / properties / info_received / description
        Previous value: -"Information received (or not)"New value: +"JSON request body field — information received (or not)"
      • changedInput schema / properties / insurance_sets / description
        Previous value: -"Insurance Sets"New value: +"JSON request body field — the insurance sets for this Directory operation"
      • changedInput schema / properties / insurance_type / description
        Previous value: -"Insurance type"New value: +"JSON request body field — the insurance type for this Directory operation"
      • changedInput schema / properties / limit / description
        Previous value: -"Limit"New value: +"JSON request body field — the limit for this Directory operation"
      • changedInput schema / properties / name / description
        Previous value: -"Provider name"New value: +"JSON request body field — provider name"
      • changedInput schema / properties / notes / description
        Previous value: -"Notes"New value: +"JSON request body field — the notes for this Directory operation"
      • changedInput schema / properties / origin_data / description
        Previous value: -"Origin data"New value: +"JSON request body field — the origin data for this Directory operation"
      • changedInput schema / properties / origin_id / description
        Previous value: -"Origin ID"New value: +"JSON request body field — unique identifier of the origin"
      • changedInput schema / properties / policy_number / description
        Previous value: -"Policy number"New value: +"JSON request body field — the policy number for this Directory operation"
      • changedInput schema / properties / status / description
        Previous value: -"Status"New value: +"JSON request body field — the status for this Directory operation"
      • changedInput schema / properties / vendor_id / description
        Previous value: -"Vendor ID"New value: +"JSON request body field — unique identifier of the vendor"
    • Changedcreate_company_level_email10 fields changed
      • changedInput schema / properties / bcc_distribution_ids / description
        Previous value: -"User IDs on the email BCC distribution"New value: +"JSON request body field — user IDs on the email BCC distribution"
      • changedInput schema / properties / body / description
        Previous value: -"Body of the email"New value: +"JSON request body field — body of the email"
      • changedInput schema / properties / cc_distribution_ids / description
        Previous value: -"User IDs on the email CC distribution"New value: +"JSON request body field — user IDs on the email CC distribution"
      • changedInput schema / properties / communication_id / description
        Previous value: -"Communication ID"New value: +"URL path parameter — unique identifier of the communication"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / distribution_ids / description
        Previous 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"
      • changedInput schema / properties / prostore_file_ids / description
        Previous value: -"Prostore file IDs"New value: +"JSON request body field — array of prostore file identifiers"
      • changedInput schema / properties / topic_id / description
        Previous value: -"Topic ID"New value: +"Query string parameter — unique identifier of the topic"
      • changedInput schema / properties / topic_type / description
        Previous 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"
      • changedInput schema / properties / upload_ids / description
        Previous value: -"Upload UUIDs"New value: +"JSON request body field — array of upload identifiers"
    • Changedcreate_company_level_email_communication5 fields changed
      • changedInput schema / properties / communication / description
        Previous value: -"communication"New value: +"JSON request body field — the communication for this Emails operation"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / email / description
        Previous value: -"email"New value: +"JSON request body field — the email for this Emails operation"
      • changedInput schema / properties / topic_id / description
        Previous value: -"Topic ID"New value: +"Query string parameter — unique identifier of the topic"
      • changedInput schema / properties / topic_type / description
        Previous 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"
    • Changedcreate_company_office2 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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"
      • changedInput schema / properties / office / description
        Previous value: -"Office object"New value: +"JSON request body field — office object"
    • Changedcreate_company_person10 fields changed
      • changedInput schema / properties / active / description
        Previous value: -"The active status of the Company Person"New value: +"JSON request body field — the active status of the Company Person"
      • changedInput schema / properties / company_id / description
        Previous value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / employee_id / description
        Previous value: -"The Employee ID of the Company Person"New value: +"JSON request body field — the Employee ID of the Company Person"
      • changedInput schema / properties / first_name / description
        Previous value: -"The First Name of the Company Person"New value: +"JSON request body field — the First Name of the Company Person"
      • changedInput schema / properties / is_employee / description
        Previous value: -"The Employee status of the Company Person"New value: +"JSON request body field — the Employee status of the Company Person"
      • changedInput schema / properties / job_title / description
        Previous value: -"The Job Title of the Company Person"New value: +"JSON request body field — the Job Title of the Company Person"
      • changedInput schema / properties / last_name / description
        Previous value: -"The Last Name of the Company Person"New value: +"JSON request body field — the Last Name of the Company Person"
      • changedInput schema / properties / origin_id / description
        Previous value: -"The Origin ID of the Company User"New value: +"JSON request body field — the Origin ID of the Company User"
      • changedInput schema / properties / view / description
        Previous 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."
      • changedInput schema / properties / work_classification_id / description
        Previous 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."
    • Changedcreate_company_segment_item6 fields changed
      • changedInput schema / properties / code / description
        Previous value: -"Segment Item Code"New value: +"JSON request body field — segment Item Code"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / name / description
        Previous value: -"Segment Item Name"New value: +"JSON request body field — segment Item Name"
      • changedInput schema / properties / parent_id / description
        Previous value: -"Parent ID"New value: +"JSON request body field — unique identifier of the parent"
      • changedInput schema / properties / segment_id / description
        Previous value: -"Segment ID"New value: +"URL path parameter — unique identifier of the segment"
      • changedInput schema / properties / segment_item_list_id / description
        Previous value: -"Segment Item List ID"New value: +"JSON request body field — segment Item List ID"
    • Changedcreate_company_tag9 fields changed
      • changedInput schema / properties / abbreviation / description
        Previous 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."
      • changedInput schema / properties / categories / description
        Previous 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."
      • changedInput schema / properties / color / description
        Previous 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."
      • changedInput schema / properties / company_id / description
        Previous 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."
      • changedInput schema / properties / expr_days_warning / description
        Previous 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."
      • changedInput schema / properties / globally_accessible / description
        Previous 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."
      • changedInput schema / properties / group_ids / description
        Previous 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."
      • changedInput schema / properties / name / description
        Previous value: -"The Tag's name."New value: +"JSON request body field — the Tag's name."
      • changedInput schema / properties / require_expr_date / description
        Previous 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."
    • Changedcreate_company_upload7 fields changed
      • changedInput schema / properties / attachment_content_disposition / description
        Previous 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..."
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / response_content_type / description
        Previous 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..."
      • changedInput schema / properties / response_filename / description
        Previous 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..."
      • changedInput schema / properties / segments / description
        Previous value: -"Upload segments"New value: +"JSON request body field — upload segments"
      • changedInput schema / properties / size / description
        Previous value: -"File size in bytes"New value: +"JSON request body field — file size in bytes"
      • changedInput schema / required
        Previous value: -[
        -  "company_id"
        -]New value: +[
        +  "company_id",
        +  "response_filename"
        +]
    • Removedcreate_company_upload_v1_1
    • Changedcreate_company_user_v1_028 fields changed
      • changedInput schema / properties / address / description
        Previous value: -"The Address of the Company User"New value: +"JSON request body field — the Address of the Company User"
      • changedInput schema / properties / avatar / description
        Previous 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."
      • changedInput schema / properties / business_phone / description
        Previous value: -"The Business Phone of the Company User"New value: +"JSON request body field — the Business Phone of the Company User"
      • changedInput schema / properties / business_phone_extension / description
        Previous value: -"The Business Phone Extension of the Company User"New value: +"JSON request body field — the Business Phone Extension of the Company User"
      • changedInput schema / properties / city / description
        Previous value: -"The City of the Company User"New value: +"JSON request body field — the City of the Company User"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / company_permission_template_id / description
        Previous 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"
      • changedInput schema / properties / country_code / description
        Previous 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)"
      • changedInput schema / properties / default_permission_template_id / description
        Previous 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"
      • changedInput schema / properties / email_address / description
        Previous 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"
      • changedInput schema / properties / email_signature / description
        Previous value: -"The Email Signature of the Company User"New value: +"JSON request body field — the Email Signature of the Company User"
      • changedInput schema / properties / employee_id / description
        Previous 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`"
      • changedInput schema / properties / fax_number / description
        Previous value: -"The Fax Number of the Company User"New value: +"JSON request body field — the Fax Number of the Company User"
      • changedInput schema / properties / first_name / description
        Previous value: -"The First Name of the Company User"New value: +"JSON request body field — the First Name of the Company User"
      • changedInput schema / properties / initials / description
        Previous value: -"The Initials of the Company User"New value: +"JSON request body field — the Initials of the Company User"
      • changedInput schema / properties / is_active / description
        Previous value: -"The Active status of the Company User"New value: +"JSON request body field — the Active status of the Company User"
      • changedInput schema / properties / is_employee / description
        Previous value: -"The Employee status of the Company User"New value: +"JSON request body field — the Employee status of the Company User"
      • changedInput schema / properties / job_title / description
        Previous value: -"The Job Title of the Company User"New value: +"JSON request body field — the Job Title of the Company User"
      • changedInput schema / properties / last_name / description
        Previous value: -"The Last Name of the Company User"New value: +"JSON request body field — the Last Name of the Company User"
      • changedInput schema / properties / mobile_phone / description
        Previous value: -"The Mobile Phone of the Company User"New value: +"JSON request body field — the Mobile Phone of the Company User"
      • changedInput schema / properties / notes / description
        Previous 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"
      • changedInput schema / properties / origin_data / description
        Previous value: -"The Origin Data of the Company User"New value: +"JSON request body field — the Origin Data of the Company User"
      • changedInput schema / properties / origin_id / description
        Previous value: -"The Origin ID of the Company User"New value: +"JSON request body field — the Origin ID of the Company User"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / state_code / description
        Previous 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)"
      • changedInput schema / properties / vendor_id / description
        Previous 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"
      • changedInput schema / properties / work_classification_id / description
        Previous 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"
      • changedInput schema / properties / zip / description
        Previous value: -"The Zip code of the Company User"New value: +"JSON request body field — the Zip code of the Company User"
    • Removedcreate_company_user_v1_0_2
    • Removedcreate_company_user_v1_1
    • Removedcreate_company_user_v1_2
    • Changedcreate_company_user_v1_329 fields changed
      • changedInput schema / properties / address / description
        Previous value: -"The Address of the Company User"New value: +"JSON request body field — the Address of the Company User"
      • changedInput schema / properties / avatar / description
        Previous 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."
      • changedInput schema / properties / bid_contact / description
        Previous 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."
      • changedInput schema / properties / business_phone / description
        Previous value: -"The Business Phone of the Company User"New value: +"JSON request body field — the Business Phone of the Company User"
      • changedInput schema / properties / business_phone_extension / description
        Previous value: -"The Business Phone Extension of the Company User"New value: +"JSON request body field — the Business Phone Extension of the Company User"
      • changedInput schema / properties / city / description
        Previous value: -"The City of the Company User"New value: +"JSON request body field — the City of the Company User"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / company_permission_template_id / description
        Previous 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"
      • changedInput schema / properties / country_code / description
        Previous 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)"
      • changedInput schema / properties / default_permission_template_id / description
        Previous 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"
      • changedInput schema / properties / email_address / description
        Previous 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"
      • changedInput schema / properties / email_signature / description
        Previous value: -"The Email Signature of the Company User"New value: +"JSON request body field — the Email Signature of the Company User"
      • changedInput schema / properties / employee_id / description
        Previous 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`"
      • changedInput schema / properties / fax_number / description
        Previous value: -"The Fax Number of the Company User"New value: +"JSON request body field — the Fax Number of the Company User"
      • changedInput schema / properties / first_name / description
        Previous value: -"The First Name of the Company User"New value: +"JSON request body field — the First Name of the Company User"
      • changedInput schema / properties / initials / description
        Previous value: -"The Initials of the Company User"New value: +"JSON request body field — the Initials of the Company User"
      • changedInput schema / properties / is_active / description
        Previous value: -"The Active status of the Company User"New value: +"JSON request body field — the Active status of the Company User"
      • changedInput schema / properties / is_employee / description
        Previous value: -"The Employee status of the Company User"New value: +"JSON request body field — the Employee status of the Company User"
      • changedInput schema / properties / job_title / description
        Previous value: -"The Job Title of the Company User"New value: +"JSON request body field — the Job Title of the Company User"
      • changedInput schema / properties / last_name / description
        Previous value: -"The Last Name of the Company User"New value: +"JSON request body field — the Last Name of the Company User"
      • changedInput schema / properties / mobile_phone / description
        Previous value: -"The Mobile Phone of the Company User"New value: +"JSON request body field — the Mobile Phone of the Company User"
      • changedInput schema / properties / notes / description
        Previous 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"
      • changedInput schema / properties / origin_data / description
        Previous value: -"The Origin Data of the Company User"New value: +"JSON request body field — the Origin Data of the Company User"
      • changedInput schema / properties / origin_id / description
        Previous value: -"The Origin ID of the Company User"New value: +"JSON request body field — the Origin ID of the Company User"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / state_code / description
        Previous 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)"
      • changedInput schema / properties / vendor_id / description
        Previous 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"
      • changedInput schema / properties / work_classification_id / description
        Previous 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"
      • changedInput schema / properties / zip / description
        Previous value: -"The Zip code of the Company User"New value: +"JSON request body field — the Zip code of the Company User"
    • Changedcreate_company_vendor4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / vendor / description
        Previous value: -"vendor"New value: +"JSON request body field — the vendor for this Directory operation"
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedcreate_company_vendor_business_register4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Company Vendor"New value: +"URL path parameter — iD of the Company Vendor"
      • changedInput schema / properties / identifier / description
        Previous value: -"Entity ID. This field ignores spaces and dashes."New value: +"JSON request body field — entity ID. This field ignores spaces and dashes."
      • changedInput schema / properties / type / description
        Previous value: -"Entity Type"New value: +"JSON request body field — entity Type"
    • Changedcreate_company_vendor_insurance18 fields changed
      • changedInput schema / properties / additional_insured / description
        Previous value: -"Additional Individuals and/or Companies Insured"New value: +"JSON request body field — additional Individuals and/or Companies Insured"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / division_template / description
        Previous value: -"Division Template"New value: +"JSON request body field — the division template for this Directory operation"
      • changedInput schema / properties / effective_date / description
        Previous value: -"Effective date"New value: +"JSON request body field — the effective date in YYYY-MM-DD format"
      • changedInput schema / properties / enable_expired_insurance_notifications / description
        Previous value: -"Enable/Disable expired insurance notifications"New value: +"JSON request body field — enable/Disable expired insurance notifications"
      • changedInput schema / properties / exempt / description
        Previous value: -"Exempt status"New value: +"JSON request body field — exempt status"
      • changedInput schema / properties / expiration_date / description
        Previous value: -"Expiration date"New value: +"JSON request body field — the expiration date in YYYY-MM-DD format"
      • changedInput schema / properties / info_received / description
        Previous value: -"Information received (or not)"New value: +"JSON request body field — information received (or not)"
      • changedInput schema / properties / insurance_sets / description
        Previous value: -"Insurance Sets"New value: +"JSON request body field — the insurance sets for this Directory operation"
      • changedInput schema / properties / insurance_type / description
        Previous value: -"Insurance type"New value: +"JSON request body field — the insurance type for this Directory operation"
      • changedInput schema / properties / limit / description
        Previous value: -"Limit"New value: +"JSON request body field — the limit for this Directory operation"
      • changedInput schema / properties / name / description
        Previous value: -"Provider name"New value: +"JSON request body field — provider name"
      • changedInput schema / properties / notes / description
        Previous value: -"Notes"New value: +"JSON request body field — the notes for this Directory operation"
      • changedInput schema / properties / origin_data / description
        Previous value: -"Origin data"New value: +"JSON request body field — the origin data for this Directory operation"
      • changedInput schema / properties / origin_id / description
        Previous value: -"Origin ID"New value: +"JSON request body field — unique identifier of the origin"
      • changedInput schema / properties / policy_number / description
        Previous value: -"Policy number"New value: +"JSON request body field — the policy number for this Directory operation"
      • changedInput schema / properties / status / description
        Previous value: -"Status"New value: +"JSON request body field — the status for this Directory operation"
      • changedInput schema / properties / vendor_id / description
        Previous value: -"Vendor ID"New value: +"URL path parameter — unique identifier of the vendor"
    • Addedcreate_company_webhooks_hook
    • Removedcreate_company_webhooks_hook_v2_0
    • Addedcreate_company_webhooks_triggers
    • Removedcreate_company_webhooks_triggers_v2_0
    • Addedcreate_compliance_document
    • Removedcreate_compliance_document_v2_0
    • Changedcreate_configurable_field_sets12 fields changed
      • changedInput schema / properties / action_plan_type_id / description
        Previous value: -"Action Plan Type unique identifier"New value: +"JSON request body field — action Plan Type unique identifier"
      • changedInput schema / properties / category / description
        Previous 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)"
      • changedInput schema / properties / class_name / description
        Previous 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"
      • changedInput schema / properties / company_configurable_field_set_default_column_name / description
        Previous 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."
      • changedInput schema / properties / company_default / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / fields / description
        Previous 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."
      • changedInput schema / properties / generic_tool_id / description
        Previous value: -"Generic tool unique identifier"New value: +"JSON request body field — generic tool unique identifier"
      • changedInput schema / properties / include_lov_entries / description
        Previous 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)"
      • changedInput schema / properties / inspection_type_id / description
        Previous value: -"Inspection type unique identifier"New value: +"JSON request body field — inspection type unique identifier"
      • changedInput schema / properties / name / description
        Previous value: -"Name"New value: +"JSON request body field — the name for this Custom - Configurable Tools operation"
      • changedInput schema / properties / project_ids / description
        Previous value: -"project_ids"New value: +"JSON request body field — array of project identifiers"
    • Changedcreate_contract_payment4 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / contract_id / description
        Previous value: -"Contract ID"New value: +"JSON request body field — unique identifier of the contract"
      • changedInput schema / properties / contract_payment / description
        Previous value: -"Contract Payment object"New value: +"JSON request body field — contract Payment object"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedcreate_contributing_behavior3 fields changed
      • changedInput schema / properties / active / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Contributing Behavior"New value: +"JSON request body field — the Name of the Contributing Behavior"
    • Changedcreate_contributing_condition3 fields changed
      • changedInput schema / properties / active / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Contributing Condition"New value: +"JSON request body field — the Name of the Contributing Condition"
    • Changedcreate_coordination_issue2 fields changed
      • changedInput schema / properties / coordination_issue / description
        Previous value: -"Coordination Issue"New value: +"JSON request body field — the coordination issue for this Coordination Issues operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedcreate_coordination_issue_assignment3 fields changed
      • changedInput schema / properties / coordination_issue_assignment / description
        Previous value: -"coordination_issue_assignment"New value: +"JSON request body field — coordination_issue_assignment"
      • changedInput schema / properties / coordination_issue_id / description
        Previous value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedcreate_cost_code3 fields changed
      • changedInput schema / properties / cost_code / description
        Previous value: -"Cost Code object"New value: +"JSON request body field — cost Code object"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / sub_job_id / description
        Previous value: -"Unique identifier for the Sub Job"New value: +"JSON request body field — unique identifier for the Sub Job"
    • Addedcreate_cost_item
    • Removedcreate_cost_item_v2_0
    • Addedcreate_csv_export_for_commitment_change_order_rows
    • Removedcreate_csv_export_for_commitment_change_order_rows_v2_0
    • Addedcreate_csv_export_for_prime_change_order_rows
    • Removedcreate_csv_export_for_prime_change_order_rows_v2_0
    • Changedcreate_custom_field10 fields changed
      • changedInput schema / properties / can_filter / description
        Previous 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."
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / description / description
        Previous 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."
      • changedInput schema / properties / integration_only / description
        Previous value: -"If true, only integrations can update this field."New value: +"JSON request body field — if true, only integrations can update this field."
      • changedInput schema / properties / name / description
        Previous 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."
      • changedInput schema / properties / on_people / description
        Previous value: -"If true, the field is available on People."New value: +"JSON request body field — if true, the field is available on People."
      • changedInput schema / properties / on_projects / description
        Previous value: -"If true, the field is available on Projects."New value: +"JSON request body field — if true, the field is available on Projects."
      • changedInput schema / properties / sort_by / description
        Previous 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"
      • changedInput schema / properties / type / description
        Previous 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"
      • changedInput schema / properties / values / description
        Previous 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"
    • Changedcreate_daily_construction_report_log4 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / daily_construction_report_log / description
        Previous value: -"daily_construction_report_log"New value: +"JSON request body field — daily_construction_report_log"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
    • Changedcreate_delay_log4 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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[]` ..."
      • changedInput schema / properties / delay_log / description
        Previous value: -"delay_log"New value: +"JSON request body field — the delay log for this Daily Log operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
    • Changedcreate_delivery_log3 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / delivery_log / description
        Previous value: -"delivery_log"New value: +"JSON request body field — the delivery log for this Daily Log operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_department2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company"
      • changedInput schema / properties / department / description
        Previous value: -"department"New value: +"JSON request body field — the department for this Directory operation"
    • Changedcreate_direct_cost_item5 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • addedInput schema / properties / direct_cost
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — direct Cost Item object",
        +  "type": "object"
        +}
      • removedInput schema / properties / item
        Removed value: -{
        -  "additionalProperties": {},
        -  "description": "Direct Cost Item object",
        -  "type": "object"
        -}
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / required
        Previous value: -[
        -  "project_id",
        -  "item"
        -]New value: +[
        +  "project_id",
        +  "direct_cost"
        +]
    • Removedcreate_direct_cost_item_v1_1
    • Changedcreate_direct_cost_line_item14 fields changed
      • changedInput schema / properties / amount / description
        Previous value: -"Amount"New value: +"JSON request body field — the amount for this Direct Costs operation"
      • changedInput schema / properties / cost_code_id / description
        Previous value: -"Cost Code ID"New value: +"JSON request body field — unique identifier of the cost code"
      • changedInput schema / properties / description / description
        Previous value: -"Description"New value: +"JSON request body field — the description for this Direct Costs operation"
      • changedInput schema / properties / direct_cost_id / description
        Previous value: -"Direct Cost ID"New value: +"JSON request body field — unique identifier of the direct cost"
      • changedInput schema / properties / extended_type / description
        Previous 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"
      • changedInput schema / properties / line_item_type_id / description
        Previous value: -"Line Item Type ID"New value: +"JSON request body field — unique identifier of the line item type"
      • changedInput schema / properties / origin_data / description
        Previous value: -"Origin Data"New value: +"JSON request body field — the origin data for this Direct Costs operation"
      • changedInput schema / properties / origin_id / description
        Previous value: -"Origin ID"New value: +"JSON request body field — unique identifier of the origin"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / quantity / description
        Previous value: -"Quantity of described item"New value: +"JSON request body field — quantity of described item"
      • changedInput schema / properties / tax_code_id / description
        Previous value: -"Tax Code ID"New value: +"JSON request body field — unique identifier of the tax code"
      • changedInput schema / properties / unit_cost / description
        Previous value: -"Unit cost of described item"New value: +"JSON request body field — unit cost of described item"
      • changedInput schema / properties / uom / description
        Previous value: -"Unit of measure of the described item"New value: +"JSON request body field — unit of measure of the described item"
      • changedInput schema / properties / wbs_code_id / description
        Previous value: -"WBS Code ID"New value: +"JSON request body field — unique identifier of the wbs code"
    • Changedcreate_document_custom_tag3 fields changed
      • changedInput schema / properties / document_custom_tag / description
        Previous value: -"Document Custom Tag object"New value: +"JSON request body field — document Custom Tag object"
      • changedInput schema / properties / document_id / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedcreate_drawing
    • Changedcreate_drawing_area3 fields changed
      • changedInput schema / properties / description / description
        Previous value: -"Drawing Area description"New value: +"JSON request body field — drawing Area description"
      • changedInput schema / properties / name / description
        Previous value: -"Drawing Area name"New value: +"JSON request body field — drawing Area name"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedcreate_drawing_area_v1_1
    • Changedcreate_drawing_set3 fields changed
      • changedInput schema / properties / date / description
        Previous value: -"Drawing Set date"New value: +"JSON request body field — drawing Set date"
      • changedInput schema / properties / name / description
        Previous value: -"Drawing Set name"New value: +"JSON request body field — drawing Set name"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_drawing_upload12 fields changed
      • changedInput schema / properties / Idempotency-Token / description
        Previous value: -"Unique idempotent token"New value: +"JSON request body field — unique idempotent token"
      • changedInput schema / properties / drawing_area_id / description
        Previous 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"
      • removedInput schema / properties / drawing_date
        Removed value: -{
        -  "description": "Drawing date",
        -  "type": "string"
        -}
      • addedInput schema / properties / drawing_log_imports
        Added 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"
        +}
      • changedInput schema / properties / drawing_number_contains_revision / description
        Previous value: -"Drawing number contains revision status"New value: +"JSON request body field — drawing number contains revision status"
      • changedInput schema / properties / drawing_set_id / description
        Previous value: -"Drawing Set ID"New value: +"JSON request body field — unique identifier of the drawing set"
      • removedInput schema / properties / files
        Removed 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"
        -}
      • changedInput schema / properties / get_info_from_filename / description
        Previous value: -"Get info from filename"New value: +"JSON request body field — get drawing title, number from filename"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • removedInput schema / properties / received_date
        Removed value: -{
        -  "description": "Received date",
        -  "type": "string"
        -}
      • removedInput schema / properties / upload_uuids
        Removed value: -{
        -  "description": "Array of uploaded files UUIDs.\n*Required only if files is empty",
        -  "items": {},
        -  "type": "array"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "project_id",
        -  "drawing_set_id"
        -]New value: +[
        +  "project_id",
        +  "drawing_set_id",
        +  "drawing_log_imports"
        +]
    • Removedcreate_drawing_upload_v1_1
    • Removedcreate_drawing_v1_1
    • Changedcreate_dumpster_log3 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / dumpster_log / description
        Previous value: -"dumpster_log"New value: +"JSON request body field — the dumpster log for this Daily Log operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_early_pay_program7 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / dateConfiguration / description
        Previous value: -"Date configuration for the program"New value: +"JSON request body field — date configuration for the program"
      • changedInput schema / properties / messageToVendor / description
        Previous value: -"Custom message to vendor"New value: +"JSON request body field — custom message to vendor"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the early pay program"New value: +"JSON request body field — name of the early pay program"
      • changedInput schema / properties / preferredRate / description
        Previous value: -"Preferred rate in basis points (1% = 100)"New value: +"JSON request body field — preferred rate in basis points (1% = 100)"
      • changedInput schema / properties / standardRate / description
        Previous value: -"Standard rate in basis points (1% = 100)"New value: +"JSON request body field — standard rate in basis points (1% = 100)"
      • changedInput schema / properties / type / description
        Previous value: -"Type of the early pay program"New value: +"JSON request body field — type of the early pay program"
    • Changedcreate_email5 fields changed
      • changedInput schema / properties / communication_id / description
        Previous value: -"Communication ID"New value: +"URL path parameter — unique identifier of the communication"
      • changedInput schema / properties / email / description
        Previous value: -"email"New value: +"JSON request body field — the email for this Emails operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / topic_id / description
        Previous value: -"Topic ID"New value: +"Query string parameter — unique identifier of the topic"
      • changedInput schema / properties / topic_type / description
        Previous 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"
    • Changedcreate_email_communication5 fields changed
      • changedInput schema / properties / communication / description
        Previous value: -"communication"New value: +"JSON request body field — the communication for this Emails operation"
      • changedInput schema / properties / email / description
        Previous value: -"email"New value: +"JSON request body field — the email for this Emails operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / topic_id / description
        Previous value: -"Topic ID"New value: +"Query string parameter — unique identifier of the topic"
      • changedInput schema / properties / topic_type / description
        Previous 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"
    • Changedcreate_environmental11 fields changed
      • changedInput schema / properties / affected_company_id / description
        Previous value: -"The ID of the Affected Company"New value: +"JSON request body field — the ID of the Affected Company"
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / description / description
        Previous value: -"Description of event in Rich Text format"New value: +"JSON request body field — description of event in Rich Text format"
      • changedInput schema / properties / environmental_type_id / description
        Previous value: -"The ID of the Environmental Type"New value: +"JSON request body field — the ID of the Environmental Type"
      • changedInput schema / properties / estimated_cost_impact / description
        Previous value: -"Estimated cost impact of the record"New value: +"JSON request body field — estimated cost impact of the record"
      • changedInput schema / properties / incident_id / description
        Previous value: -"The ID of the Incident"New value: +"JSON request body field — the ID of the Incident"
      • changedInput schema / properties / managed_equipment_id / description
        Previous value: -"The ID of the Managed Equipment"New value: +"JSON request body field — the ID of the Managed Equipment"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / quantity_unit_of_measure / description
        Previous 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)"
      • changedInput schema / properties / quantity_value / description
        Previous value: -"Numeric portion of the \"quantity\" field"New value: +"JSON request body field — numeric portion of the \"quantity\" field"
      • changedInput schema / properties / work_activity_id / description
        Previous value: -"The ID of the Work Activity"New value: +"JSON request body field — the ID of the Work Activity"
    • Changedcreate_equipment15 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / company_visible / description
        Previous value: -"Company visible"New value: +"JSON request body field — the company visible for this Field Productivity operation"
      • changedInput schema / properties / current_project_id / description
        Previous 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"
      • changedInput schema / properties / description / description
        Previous value: -"description of the equipment"New value: +"JSON request body field — description of the equipment"
      • changedInput schema / properties / identification_number / description
        Previous value: -"Identification number of the equipment"New value: +"JSON request body field — identification number of the equipment"
      • changedInput schema / properties / managed_equipment_category_id / description
        Previous value: -"ID of the equipment category"New value: +"JSON request body field — iD of the equipment category"
      • changedInput schema / properties / managed_equipment_make_id / description
        Previous value: -"ID of the equipment make"New value: +"JSON request body field — iD of the equipment make"
      • changedInput schema / properties / managed_equipment_model_id / description
        Previous value: -"ID of the equipment model"New value: +"JSON request body field — iD of the equipment model"
      • changedInput schema / properties / managed_equipment_type_id / description
        Previous value: -"ID of the equipment type"New value: +"JSON request body field — iD of the equipment type"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the equipment"New value: +"JSON request body field — name of the equipment"
      • changedInput schema / properties / ownership / description
        Previous value: -"The type of ownership"New value: +"JSON request body field — the type of ownership"
      • changedInput schema / properties / serial_number / description
        Previous value: -"Serial number of the equipment"New value: +"JSON request body field — serial number of the equipment"
      • changedInput schema / properties / status / description
        Previous value: -"Status"New value: +"JSON request body field — the status for this Field Productivity operation"
      • changedInput schema / properties / upload_uuids / description
        Previous value: -"Array of upload uuids"New value: +"JSON request body field — array of upload uuids"
      • changedInput schema / properties / year / description
        Previous value: -"Year the equipment was manufactured in"New value: +"JSON request body field — year the equipment was manufactured in"
    • Addedcreate_equipment_attachment_company
    • Removedcreate_equipment_attachment_company_v2_0
    • Addedcreate_equipment_attachment_project
    • Removedcreate_equipment_attachment_project_v2_0
    • Changedcreate_equipment_category3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / is_active / description
        Previous value: -"If the category is active"New value: +"JSON request body field — if the category is active"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the category"New value: +"JSON request body field — name of the category"
    • Addedcreate_equipment_category_company
    • Removedcreate_equipment_category_company_v2_0
    • Addedcreate_equipment_category_project
    • Removedcreate_equipment_category_project_v2_0
    • Addedcreate_equipment_company
    • Removedcreate_equipment_company_v2_0
    • Removedcreate_equipment_company_v2_1
    • Changedcreate_equipment_log_company9 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / induction_checklist_list_id / description
        Previous value: -"Id of the inspection list the equipment uses"New value: +"JSON request body field — id of the inspection list the equipment uses"
      • changedInput schema / properties / induction_number / description
        Previous value: -"The number used for equipment induction"New value: +"JSON request body field — the number used for equipment induction"
      • changedInput schema / properties / induction_status / description
        Previous 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"
      • changedInput schema / properties / inspection_date / description
        Previous value: -"The date the equipment was inspected"New value: +"JSON request body field — the date the equipment was inspected"
      • changedInput schema / properties / managed_equipment_id / description
        Previous value: -"Equipment Id the log is associated with"New value: +"JSON request body field — equipment Id the log is associated with"
      • changedInput schema / properties / offsite / description
        Previous value: -"The Date equipment left the site"New value: +"JSON request body field — the Date equipment left the site"
      • changedInput schema / properties / onsite / description
        Previous value: -"The Date equipment arrived on site"New value: +"JSON request body field — the Date equipment arrived on site"
      • changedInput schema / properties / project_id / description
        Previous 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"
    • Changedcreate_equipment_log_project4 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / equipment_log / description
        Previous value: -"equipment_log"New value: +"JSON request body field — the equipment log for this Daily Log operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
    • Changedcreate_equipment_maintenance_log5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / last_service_date / description
        Previous value: -"The Date the equipment was last services"New value: +"JSON request body field — the Date the equipment was last services"
      • changedInput schema / properties / managed_equipment_id / description
        Previous value: -"Equipment Id the maintenance log is associated with"New value: +"JSON request body field — equipment Id the maintenance log is associated with"
      • changedInput schema / properties / next_service_date / description
        Previous value: -"Next service date for the equipment"New value: +"JSON request body field — next service date for the equipment"
      • changedInput schema / properties / upload_ids / description
        Previous 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."
    • Addedcreate_equipment_make_company
    • Removedcreate_equipment_make_company_v2_0
    • Addedcreate_equipment_make_project
    • Removedcreate_equipment_make_project_v2_0
    • Addedcreate_equipment_model_company
    • Removedcreate_equipment_model_company_v2_0
    • Addedcreate_equipment_model_project
    • Removedcreate_equipment_model_project_v2_0
    • Addedcreate_equipment_project
    • Removedcreate_equipment_project_v2_0
    • Removedcreate_equipment_project_v2_1
    • Addedcreate_equipment_status_company
    • Removedcreate_equipment_status_company_v2_0
    • Addedcreate_equipment_type_company
    • Removedcreate_equipment_type_company_v2_0
    • Addedcreate_equipment_type_project
    • Removedcreate_equipment_type_project_v2_0
    • Changedcreate_form7 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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."
      • changedInput schema / properties / description / description
        Previous value: -"The Description of the Form"New value: +"JSON request body field — the Description of the Form"
      • changedInput schema / properties / fillable_pdf / description
        Previous 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."
      • changedInput schema / properties / form_template_id / description
        Previous 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"
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Form"New value: +"JSON request body field — the Name of the Form"
      • changedInput schema / properties / private / description
        Previous value: -"The Private status of the Form"New value: +"JSON request body field — the Private status of the Form"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_generic_tool6 fields changed
      • changedInput schema / properties / abbreviation / description
        Previous value: -"An abbreviation for the generic tool."New value: +"JSON request body field — an abbreviation for the generic tool."
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / new_project_default / description
        Previous 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."
      • changedInput schema / properties / private_by_default / description
        Previous 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."
      • changedInput schema / properties / send_overdue_notifications / description
        Previous 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."
      • changedInput schema / properties / title / description
        Previous value: -"The title of the generic tool."New value: +"JSON request body field — the title of the generic tool."
    • Changedcreate_generic_tool_item29 fields changed
      • changedInput schema / properties / assignee_ids / description
        Previous 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."
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / cost_code_id / description
        Previous 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."
      • changedInput schema / properties / cost_impact / description
        Previous value: -"The cost impact of the generic tool item."New value: +"JSON request body field — the cost impact of the generic tool item."
      • changedInput schema / properties / cost_impact_value / description
        Previous 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."
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / description / description
        Previous value: -"The description of the generic tool item."New value: +"JSON request body field — the description of the generic tool item."
      • changedInput schema / properties / distribution_member_ids / description
        Previous 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."
      • changedInput schema / properties / document_management_document_revision_ids / description
        Previous value: -"PDM document to attach to the response"New value: +"JSON request body field — pDM document to attach to the response"
      • changedInput schema / properties / drawing_revision_ids / description
        Previous value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response"
      • changedInput schema / properties / due_date / description
        Previous value: -"The due date for the generic tool item."New value: +"JSON request body field — the due date for the generic tool item."
      • changedInput schema / properties / file_version_ids / description
        Previous value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response"
      • changedInput schema / properties / form_ids / description
        Previous value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response"
      • changedInput schema / properties / generic_tool_id / description
        Previous value: -"Unique identifier for the Generic Tool"New value: +"URL path parameter — unique identifier for the Generic Tool"
      • changedInput schema / properties / image_ids / description
        Previous value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response"
      • changedInput schema / properties / location_id / description
        Previous value: -"The location identifier for the generic tool item."New value: +"JSON request body field — the location identifier for the generic tool item."
      • changedInput schema / properties / position / description
        Previous value: -"The position/number of the generic tool item."New value: +"JSON request body field — the position/number of the generic tool item."
      • changedInput schema / properties / private / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / received_from_id / description
        Previous value: -"The unique identifier for the Received From entity."New value: +"JSON request body field — the unique identifier for the Received From entity."
      • changedInput schema / properties / schedule_impact / description
        Previous 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."
      • changedInput schema / properties / schedule_impact_value / description
        Previous 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."
      • changedInput schema / properties / skip_emails / description
        Previous 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."
      • changedInput schema / properties / specification_section_id / description
        Previous 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."
      • changedInput schema / properties / status / description
        Previous value: -"The status of the generic tool item."New value: +"JSON request body field — the status of the generic tool item."
      • changedInput schema / properties / title / description
        Previous value: -"The title of the generic tool item."New value: +"JSON request body field — the title of the generic tool item."
      • changedInput schema / properties / trade_id / description
        Previous value: -"The trade identifier for the generic tool item."New value: +"JSON request body field — the trade identifier for the generic tool item."
      • changedInput schema / properties / upload_ids / description
        Previous value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
      • changedInput schema / properties / view / description
        Previous value: -"If supplied customize the response format"New value: +"Query string parameter — if supplied customize the response format"
    • Changedcreate_generic_tool_item_response4 fields changed
      • changedInput schema / properties / generic_tool_id / description
        Previous value: -"Unique identifier for the generic tool."New value: +"URL path parameter — unique identifier for the generic tool."
      • changedInput schema / properties / generic_tool_item_id / description
        Previous value: -"Unique identifier for the generic tool item."New value: +"URL path parameter — unique identifier for the generic tool item."
      • changedInput schema / properties / generic_tool_item_response / description
        Previous value: -"generic_tool_item_response"New value: +"JSON request body field — generic_tool_item_response"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_generic_tool_status4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / generic_tool_id / description
        Previous value: -"Unique identifier for the Generic Tool"New value: +"URL path parameter — unique identifier for the Generic Tool"
      • changedInput schema / properties / status / description
        Previous value: -"The status of the generic tool status."New value: +"JSON request body field — the status of the generic tool status."
      • changedInput schema / properties / status_name / description
        Previous value: -"The name of the generic tool status."New value: +"JSON request body field — the name of the generic tool status."
    • Changedcreate_gps_position7 fields changed
      • changedInput schema / properties / altitude / description
        Previous value: -"The altitude, measured in meters."New value: +"JSON request body field — the altitude, measured in meters."
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / horizontal_accuracy / description
        Previous 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."
      • changedInput schema / properties / latitude / description
        Previous value: -"The latitude in degrees."New value: +"JSON request body field — the latitude in degrees."
      • changedInput schema / properties / longitude / description
        Previous value: -"The longitude in degrees."New value: +"JSON request body field — the longitude in degrees."
      • changedInput schema / properties / timestamp / description
        Previous value: -"The time at which this location was determined."New value: +"JSON request body field — the time at which this location was determined."
      • changedInput schema / properties / vertical_accuracy / description
        Previous 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."
    • Changedcreate_group_and_move_markups8 fields changed
      • changedInput schema / properties / action / description
        Previous value: -"action"New value: +"JSON request body field — the action for this Document Markup operation"
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / escalate_to_pin / description
        Previous value: -"escalate_to_pin"New value: +"JSON request body field — the escalate to pin for this Document Markup operation"
      • changedInput schema / properties / markup_ids / description
        Previous value: -"markup_ids"New value: +"JSON request body field — array of markup identifiers"
      • changedInput schema / properties / pin_id / description
        Previous value: -"pin_id"New value: +"JSON request body field — unique identifier of the pin"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
      • changedInput schema / properties / source_group_id / description
        Previous value: -"source_group_id"New value: +"JSON request body field — unique identifier of the source group"
      • changedInput schema / properties / viewer_doc_id / description
        Previous value: -"viewer_doc_id"New value: +"URL path parameter — unique identifier of the viewer doc"
    • Changedcreate_harm_source3 fields changed
      • changedInput schema / properties / active / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Harm Source"New value: +"JSON request body field — the Name of the Harm Source"
    • Changedcreate_hazard3 fields changed
      • changedInput schema / properties / active / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Hazard"New value: +"JSON request body field — the Name of the Hazard"
    • Changedcreate_image4 fields changed
      • changedInput schema / properties / image / description
        Previous 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"
      • changedInput schema / properties / image_name / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / upload_uuid / description
        Previous 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..."
    • Changedcreate_image_category4 fields changed
      • changedInput schema / properties / album_cover_id / description
        Previous 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."
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Image Category"New value: +"JSON request body field — the Name of the Image Category"
      • changedInput schema / properties / private / description
        Previous value: -"The Private status of the Image Category"New value: +"JSON request body field — the Private status of the Image Category"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedcreate_incident28 fields changed
      • changedInput schema / properties / assignee_ids / description
        Previous 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."
      • changedInput schema / properties / contributing_behavior_id / description
        Previous value: -"The ID of a Contributing Behavior"New value: +"JSON request body field — the ID of a Contributing Behavior"
      • changedInput schema / properties / contributing_condition_id / description
        Previous value: -"The ID of a Contributing Condition"New value: +"JSON request body field — the ID of a Contributing Condition"
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / custom_status_id / description
        Previous 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."
      • changedInput schema / properties / description / description
        Previous value: -"Description of the Incident"New value: +"JSON request body field — description of the Incident"
      • changedInput schema / properties / distribution_member_ids / description
        Previous 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)"
      • changedInput schema / properties / drawing_revision_ids / description
        Previous value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response"
      • changedInput schema / properties / environmentals / description
        Previous value: -"Associated Environmentals to create"New value: +"JSON request body field — associated Environmentals to create"
      • changedInput schema / properties / event_date / description
        Previous 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."
      • changedInput schema / properties / file_version_ids / description
        Previous value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response"
      • changedInput schema / properties / form_ids / description
        Previous value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response"
      • changedInput schema / properties / hazard_id / description
        Previous value: -"The ID of a Hazard"New value: +"JSON request body field — unique identifier of the hazard"
      • changedInput schema / properties / image_ids / description
        Previous value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response"
      • changedInput schema / properties / injuries / description
        Previous value: -"Associated Injuries to create"New value: +"JSON request body field — associated Injuries to create"
      • changedInput schema / properties / location_id / description
        Previous value: -"The ID of a Location"New value: +"JSON request body field — the ID of a Location"
      • changedInput schema / properties / near_misses / description
        Previous value: -"Associated Near Misses to create"New value: +"JSON request body field — associated Near Misses to create"
      • changedInput schema / properties / private / description
        Previous value: -"Indicates whether an Incident is private"New value: +"JSON request body field — indicates whether an Incident is private"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / property_damages / description
        Previous value: -"Associated Property Damages to create"New value: +"JSON request body field — associated Property Damages to create"
      • changedInput schema / properties / recordable / description
        Previous value: -"Indicates whether an Incident is recordable"New value: +"JSON request body field — indicates whether an Incident is recordable"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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..."
      • changedInput schema / properties / status / description
        Previous 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)"
      • changedInput schema / properties / time_unknown / description
        Previous 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"
      • changedInput schema / properties / title / description
        Previous value: -"Incident Title"New value: +"JSON request body field — incident Title"
      • changedInput schema / properties / type_id / description
        Previous 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."
      • changedInput schema / properties / upload_uuids / description
        Previous value: -"Array of uploaded file UUIDs."New value: +"JSON request body field — array of uploaded file UUIDs."
      • changedInput schema / properties / witness_statements_attributes / description
        Previous value: -"Associated Witness Statement to create"New value: +"JSON request body field — associated Witness Statement to create"
    • Changedcreate_incident_action_type3 fields changed
      • changedInput schema / properties / active / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Incident Action Type"New value: +"JSON request body field — the Name of the Incident Action Type"
    • Changedcreate_injury27 fields changed
      • changedInput schema / properties / affected_body_parts / description
        Previous 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."
      • changedInput schema / properties / affected_company_id / description
        Previous value: -"The ID of the Affected Company"New value: +"JSON request body field — the ID of the Affected Company"
      • changedInput schema / properties / affected_party_id / description
        Previous 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."
      • changedInput schema / properties / affected_person_id / description
        Previous 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."
      • changedInput schema / properties / affliction_type_id / description
        Previous 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."
      • changedInput schema / properties / body_diagram_type / description
        Previous value: -"body_diagram_type"New value: +"JSON request body field — the body diagram type for this Incidents operation"
      • changedInput schema / properties / body_part_ids / description
        Previous 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."
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / date_of_death / description
        Previous value: -"Date of death"New value: +"JSON request body field — the date of death for this Incidents operation"
      • changedInput schema / properties / date_returned_to_work / description
        Previous value: -"Date returned to work"New value: +"JSON request body field — date returned to work"
      • changedInput schema / properties / description / description
        Previous value: -"Description of event in Rich Text format"New value: +"JSON request body field — description of event in Rich Text format"
      • changedInput schema / properties / filing_type / description
        Previous 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'."
      • changedInput schema / properties / harm_source_id / description
        Previous value: -"The ID of the Harm Source"New value: +"JSON request body field — the ID of the Harm Source"
      • changedInput schema / properties / hospitalized_overnight / description
        Previous value: -"Represents whether the injured person was hospitalized overnight"New value: +"JSON request body field — represents whether the injured person was hospitalized overnight"
      • changedInput schema / properties / incident_id / description
        Previous value: -"The ID of the Incident"New value: +"JSON request body field — the ID of the Incident"
      • changedInput schema / properties / managed_equipment_id / description
        Previous value: -"The ID of the Managed Equipment"New value: +"JSON request body field — the ID of the Managed Equipment"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / recordable / description
        Previous value: -"Represents whether the Injury record is recordable"New value: +"JSON request body field — represents whether the Injury record is recordable"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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..."
      • changedInput schema / properties / treated_in_er / description
        Previous 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"
      • changedInput schema / properties / treatment_facility / description
        Previous value: -"The name of the treatment facility"New value: +"JSON request body field — the name of the treatment facility"
      • changedInput schema / properties / treatment_facility_address / description
        Previous value: -"The street address of the treatment facility"New value: +"JSON request body field — the street address of the treatment facility"
      • changedInput schema / properties / treatment_provider / description
        Previous value: -"The name of the treatment provider"New value: +"JSON request body field — the name of the treatment provider"
      • changedInput schema / properties / work_activity_id / description
        Previous value: -"The ID of the Work Activity"New value: +"JSON request body field — the ID of the Work Activity"
      • changedInput schema / properties / work_days_absent / description
        Previous value: -"The number of days absent from work"New value: +"JSON request body field — the number of days absent from work"
      • changedInput schema / properties / work_days_restricted / description
        Previous value: -"The number of days on restricted work"New value: +"JSON request body field — the number of days on restricted work"
      • changedInput schema / properties / work_days_transferred / description
        Previous value: -"The number of days transferred"New value: +"JSON request body field — the number of days transferred"
    • Changedcreate_inspection_log3 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / inspection_log / description
        Previous value: -"inspection_log"New value: +"JSON request body field — the inspection log for this Daily Log operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_inspection_type2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / name / description
        Previous value: -"Name"New value: +"JSON request body field — the name for this Inspections operation"
    • Changedcreate_installation_request4 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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."
      • changedInput schema / properties / developer_app_id / description
        Previous value: -"ID of an application from the developer portal"New value: +"JSON request body field — iD of an application from the developer portal"
      • changedInput schema / properties / implicit / description
        Previous value: -"Implicit. Defines whether request has been made implicitly."New value: +"JSON request body field — implicit. Defines whether request has been made implicitly."
      • changedInput schema / properties / notes / description
        Previous 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."
    • Changedcreate_instruction_types2 fields changed
      • changedInput schema / properties / name / description
        Previous value: -"Name of Instruction Type"New value: +"JSON request body field — name of Instruction Type"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_instructions16 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / attention_ids / description
        Previous 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"
      • changedInput schema / properties / cost_impact / description
        Previous value: -"The Cost Impact of the Instruction"New value: +"JSON request body field — the Cost Impact of the Instruction"
      • changedInput schema / properties / date_received / description
        Previous value: -"date_received"New value: +"JSON request body field — the date received for this Daily Log operation"
      • changedInput schema / properties / description / description
        Previous value: -"The Description of the Instruction"New value: +"JSON request body field — the Description of the Instruction"
      • changedInput schema / properties / distribution_member_ids / description
        Previous 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"
      • changedInput schema / properties / instruction_from_id / description
        Previous 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"
      • changedInput schema / properties / instruction_type_id / description
        Previous value: -"ID of the Instruction Type"New value: +"JSON request body field — iD of the Instruction Type"
      • changedInput schema / properties / number / description
        Previous value: -"The Number of the Instruction"New value: +"JSON request body field — the Number of the Instruction"
      • changedInput schema / properties / private / description
        Previous value: -"The Private status of the Instruction"New value: +"JSON request body field — the Private status of the Instruction"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / schedule_impact / description
        Previous value: -"The Schedule Impact of the Instruction"New value: +"JSON request body field — the Schedule Impact of the Instruction"
      • changedInput schema / properties / status / description
        Previous value: -"The Status of the Instruction"New value: +"JSON request body field — the Status of the Instruction"
      • changedInput schema / properties / title / description
        Previous value: -"The Title of the Instruction"New value: +"JSON request body field — the Title of the Instruction"
      • changedInput schema / properties / trade_ids / description
        Previous 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"
      • changedInput schema / properties / upload_ids / description
        Previous 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."
    • Changedcreate_item_response_set4 fields changed
      • changedInput schema / properties / active / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / memberships_attributes / description
        Previous value: -"Array of Response Set Memberships (Responses)"New value: +"JSON request body field — array of Response Set Memberships (Responses)"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the Response Set"New value: +"JSON request body field — name of the Response Set"
    • Changedcreate_line_item_type2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company"
      • changedInput schema / properties / line_item_type / description
        Previous value: -"Line Item Type object"New value: +"JSON request body field — line Item Type object"
    • Changedcreate_line_items_and_line_item_groups_in_bulk_to_the_project3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique company identifier associated with the Procore User Account."New value: +"URL path parameter — unique company identifier associated with the Procore User Account."
      • changedInput schema / properties / groups / description
        Previous value: -"groups"New value: +"JSON request body field — the groups for this Estimating operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique project identifier"New value: +"URL path parameter — unique project identifier"
    • Changedcreate_line_items_and_line_item_groups_in_bulk_to_the_project_23 fields changed
      • changedInput schema / properties / bid_board_project_id / description
        Previous value: -"Unique BidBoard project identifier"New value: +"URL path parameter — unique BidBoard project identifier"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique company identifier associated with the Procore User Account."New value: +"URL path parameter — unique company identifier associated with the Procore User Account."
      • changedInput schema / properties / groups / description
        Previous value: -"groups"New value: +"JSON request body field — the groups for this Bid Board operation"
    • Changedcreate_link3 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / title / description
        Previous value: -"The user-facing title of the link"New value: +"JSON request body field — the user-facing title of the link"
      • changedInput schema / properties / url / description
        Previous value: -"The full URL for the link"New value: +"JSON request body field — the full URL for the link"
    • Changedcreate_location2 fields changed
      • changedInput schema / properties / location / description
        Previous value: -"location"New value: +"JSON request body field — the location for this Project operation"
      • changedInput schema / properties / project_id / description
        Previous 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"
    • Changedcreate_location_admin3 fields changed
      • changedInput schema / properties / node_name / description
        Previous value: -"The Node Name of the Location"New value: +"JSON request body field — the Node Name of the Location"
      • changedInput schema / properties / parent_id / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_lookahead4 fields changed
      • changedInput schema / properties / copied_from_id / description
        Previous 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."
      • changedInput schema / properties / end_date / description
        Previous value: -"Lookahead end date, in project time zone"New value: +"JSON request body field — lookahead end date, in project time zone"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / start_date / description
        Previous value: -"Lookahead start date, in project time zone"New value: +"JSON request body field — lookahead start date, in project time zone"
    • Changedcreate_lookahead_task11 fields changed
      • changedInput schema / properties / assignee_ids / description
        Previous 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"
      • changedInput schema / properties / comment / description
        Previous value: -"Additional comments"New value: +"JSON request body field — additional comments"
      • changedInput schema / properties / end_date / description
        Previous value: -"Task end date, in project time zone"New value: +"JSON request body field — task end date, in project time zone"
      • changedInput schema / properties / lookahead_id / description
        Previous value: -"ID of the associated Lookahead"New value: +"JSON request body field — iD of the associated Lookahead"
      • changedInput schema / properties / name / description
        Previous value: -"The name of the Task"New value: +"JSON request body field — the name of the Task"
      • changedInput schema / properties / parent_id / description
        Previous value: -"ID of the parent Lookahead Task"New value: +"JSON request body field — iD of the parent Lookahead Task"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / resource_ids / description
        Previous 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"
      • changedInput schema / properties / segments / description
        Previous value: -"segments"New value: +"JSON request body field — the segments for this Schedule (Legacy) operation"
      • changedInput schema / properties / start_date / description
        Previous value: -"Task start date, in project time zone"New value: +"JSON request body field — task start date, in project time zone"
      • changedInput schema / properties / vendor_ids / description
        Previous 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"
    • Removedcreate_lookahead_v1_1
    • Changedcreate_maintenance_log_attachment6 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / documents / description
        Previous value: -"documents"New value: +"JSON request body field — the documents for this Field Productivity operation"
      • changedInput schema / properties / folders / description
        Previous value: -"folders"New value: +"JSON request body field — the folders for this Field Productivity operation"
      • changedInput schema / properties / id / description
        Previous value: -"Id of the Managed Equipment Maintenance Log"New value: +"URL path parameter — id of the Managed Equipment Maintenance Log"
      • changedInput schema / properties / managed_equipment_maintenance_logs_id / description
        Previous 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"
      • changedInput schema / properties / upload_uuids / description
        Previous value: -"upload_uuids"New value: +"JSON request body field — the upload uuids for this Field Productivity operation"
    • Changedcreate_manpower_log4 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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."
      • changedInput schema / properties / manpower_log / description
        Previous value: -"manpower_log"New value: +"JSON request body field — the manpower log for this Daily Log operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
    • Changedcreate_material6 fields changed
      • changedInput schema / properties / description / description
        Previous value: -"Description of the material"New value: +"JSON request body field — description of the material"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the material"New value: +"JSON request body field — name of the material"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / quantity / description
        Previous value: -"Quantity of the material"New value: +"JSON request body field — quantity of the material"
      • changedInput schema / properties / time_and_material_entry_id / description
        Previous 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"
      • changedInput schema / properties / uom / description
        Previous value: -"Unit of measure for the material"New value: +"JSON request body field — unit of measure for the material"
    • Removedcreate_meeting
    • Changedcreate_meeting_attendee_record4 fields changed
      • changedInput schema / properties / login_information_id / description
        Previous 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"
      • changedInput schema / properties / meeting_id / description
        Previous value: -"ID of the Meeting"New value: +"Query string parameter — unique identifier of the meeting"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / status / description
        Previous value: -"Attendance status"New value: +"JSON request body field — attendance status"
    • Changedcreate_meeting_category3 fields changed
      • changedInput schema / properties / meeting_category / description
        Previous value: -"Meeting Category object"New value: +"JSON request body field — meeting Category object"
      • changedInput schema / properties / meeting_id / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous 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"
    • Addedcreate_meeting_project
    • Removedcreate_meeting_topic
    • Addedcreate_meeting_topic_project
    • Addedcreate_meeting_topic_v1_0
    • Removedcreate_meeting_topic_v1_1
    • Addedcreate_meeting_v1_0
    • Removedcreate_meeting_v1_1
    • Changedcreate_monitoring_resource8 fields changed
      • changedInput schema / properties / budget_line_item_id / description
        Previous value: -"Budget Line Item ID"New value: +"JSON request body field — unique identifier of the budget line item"
      • changedInput schema / properties / description / description
        Previous value: -"Description"New value: +"JSON request body field — the description for this Budget operation"
      • changedInput schema / properties / end_date / description
        Previous 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)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / start_date / description
        Previous 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)"
      • changedInput schema / properties / unit_cost / description
        Previous value: -"Unit Cost"New value: +"JSON request body field — the unit cost for this Budget operation"
      • changedInput schema / properties / unit_of_measure / description
        Previous value: -"Unit of Measure"New value: +"JSON request body field — the unit of measure for this Budget operation"
      • changedInput schema / properties / utilization / description
        Previous 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%"
    • Changedcreate_near_miss10 fields changed
      • changedInput schema / properties / affected_company_id / description
        Previous value: -"The ID of the Affected Company"New value: +"JSON request body field — the ID of the Affected Company"
      • changedInput schema / properties / affected_party_id / description
        Previous 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."
      • changedInput schema / properties / affected_person_id / description
        Previous 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."
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / description / description
        Previous value: -"Description of event in Rich Text format"New value: +"JSON request body field — description of event in Rich Text format"
      • changedInput schema / properties / harm_source_id / description
        Previous value: -"The ID of the Harm Source"New value: +"JSON request body field — the ID of the Harm Source"
      • changedInput schema / properties / incident_id / description
        Previous value: -"The ID of the Incident"New value: +"JSON request body field — the ID of the Incident"
      • changedInput schema / properties / managed_equipment_id / description
        Previous value: -"The ID of the Managed Equipment"New value: +"JSON request body field — the ID of the Managed Equipment"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / work_activity_id / description
        Previous value: -"The ID of the Work Activity"New value: +"JSON request body field — the ID of the Work Activity"
    • Changedcreate_new_delay_log_type3 fields changed
      • changedInput schema / properties / display_name / description
        Previous value: -"The name displayed in the web UI"New value: +"JSON request body field — the name displayed in the web UI"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / visible / description
        Previous 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"
    • Addedcreate_new_sub_cost_catalog
    • Removedcreate_new_sub_cost_catalog_v2_0
    • Changedcreate_notes_log4 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / notes_log / description
        Previous value: -"notes_log"New value: +"JSON request body field — the notes log for this Daily Log operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
    • Changedcreate_observation_item5 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / inspection_item_failed / description
        Previous 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..."
      • changedInput schema / properties / observation / description
        Previous value: -"Item object"New value: +"JSON request body field — item object"
      • changedInput schema / properties / project_id / description
        Previous 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"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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..."
    • Changedcreate_observation_item_response_log6 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / item_id / description
        Previous value: -"Observation Item ID"New value: +"URL path parameter — unique identifier of the item"
      • changedInput schema / properties / project_id / description
        Previous 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"
      • changedInput schema / properties / response_log / description
        Previous value: -"Response Log body"New value: +"JSON request body field — response Log body"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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..."
      • changedInput schema / properties / status / description
        Previous value: -"The Status of the Observation"New value: +"JSON request body field — the Status of the Observation"
    • Changedcreate_or_find_bim_view_folder_by_path2 fields changed
      • changedInput schema / properties / bim_view_folder / description
        Previous value: -"bim_view_folder"New value: +"JSON request body field — the bim view folder for this BIM operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedcreate_payment_application_owner_invoice_for_prime_contract4 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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[]`..."
      • changedInput schema / properties / payment_application / description
        Previous value: -"Payment Application (Owner Invoice)"New value: +"JSON request body field — payment Application (Owner Invoice)"
      • changedInput schema / properties / prime_contract_id / description
        Previous value: -"Prime Contract ID"New value: +"URL path parameter — unique identifier of the prime contract"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Addedcreate_pdf_export_for_a_commitment_change_order
    • Addedcreate_pdf_export_for_a_commitment_change_order_batch
    • Removedcreate_pdf_export_for_a_commitment_change_order_batch_v2_0
    • Removedcreate_pdf_export_for_a_commitment_change_order_v2_0
    • Addedcreate_pdf_export_for_a_prime_change_order
    • Addedcreate_pdf_export_for_a_prime_change_order_batch
    • Removedcreate_pdf_export_for_a_prime_change_order_batch_v2_0
    • Removedcreate_pdf_export_for_a_prime_change_order_v2_0
    • Addedcreate_pdf_export_for_a_prime_contract
    • Removedcreate_pdf_export_for_a_prime_contract_v2_0
    • Addedcreate_pdf_export_for_commitment_contracts
    • Removedcreate_pdf_export_for_commitment_contracts_v2_0
    • Changedcreate_pdf_template_config5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / default_project / description
        Previous 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"
      • changedInput schema / properties / description / description
        Previous value: -"description of the PdfTemplateConfig"New value: +"JSON request body field — description of the PdfTemplateConfig"
      • changedInput schema / properties / pdf_config_options / description
        Previous value: -"pdf_config_options"New value: +"JSON request body field — the pdf config options for this Documents operation"
      • changedInput schema / properties / template_name / description
        Previous value: -"PdfTemplate name"New value: +"JSON request body field — pdfTemplate name"
    • Changedcreate_permission_template10 fields changed
      • changedInput schema / properties / category / description
        Previous value: -"The category of the Permission Template"New value: +"JSON request body field — the category of the Permission Template"
      • changedInput schema / properties / company_id / description
        Previous 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"
      • changedInput schema / properties / id / description
        Previous value: -"The ID of the Permission Template"New value: +"JSON request body field — the ID of the Permission Template"
      • changedInput schema / properties / name / description
        Previous value: -"The name of the Permission Template"New value: +"JSON request body field — the name of the Permission Template"
      • changedInput schema / properties / permissions / description
        Previous value: -"permitted actions for active tools"New value: +"JSON request body field — permitted actions for active tools"
      • changedInput schema / properties / project_id / description
        Previous value: -"id of corresponding project if provider_type == Project"New value: +"JSON request body field — id of corresponding project if provider_type == Project"
      • changedInput schema / properties / provider_id / description
        Previous 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"
      • changedInput schema / properties / provider_type / description
        Previous value: -"'Project' or 'Company'"New value: +"JSON request body field — 'Project' or 'Company'"
      • changedInput schema / properties / type / description
        Previous value: -"'company_tools', 'global' or 'project_specific'"New value: +"JSON request body field — 'company_tools', 'global' or 'project_specific'"
      • changedInput schema / properties / user_access_levels / description
        Previous value: -"user access levels for active tools"New value: +"JSON request body field — user access levels for active tools"
    • Changedcreate_plan_revision_log3 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / plan_revision_log / description
        Previous value: -"plan_revision_log"New value: +"JSON request body field — the plan revision log for this Daily Log operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_potential_change_order3 fields changed
      • changedInput schema / properties / change_order / description
        Previous value: -"change_order"New value: +"JSON request body field — the change order for this Change Orders operation"
      • changedInput schema / properties / contract_id / description
        Previous value: -"Contract ID"New value: +"JSON request body field — unique identifier of the contract"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedcreate_potential_change_order_line_item3 fields changed
      • changedInput schema / properties / line_item / description
        Previous value: -"The Line Item object"New value: +"JSON request body field — the Line Item object"
      • changedInput schema / properties / potential_change_order_id / description
        Previous value: -"Potential Change Order ID"New value: +"URL path parameter — potential Change Order ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedcreate_prime_change_order31 fields changed
      • changedInput schema / properties / attachment_ids / description
        Previous value: -"Existing attachments to preserve on the response"New value: +"JSON request body field — existing attachments to preserve on the response"
      • changedInput schema / properties / batch_id / description
        Previous value: -"Unique identifier for a change order batch."New value: +"JSON request body field — unique identifier for a change order batch."
      • changedInput schema / properties / change_event_attachment_ids / description
        Previous 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."
      • changedInput schema / properties / change_order_change_reason_id / description
        Previous value: -"Unique identifier for the change reason."New value: +"JSON request body field — unique identifier for the change reason."
      • changedInput schema / properties / contract_id / description
        Previous value: -"Unique identifier for the contract."New value: +"JSON request body field — unique identifier for the contract."
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / description / description
        Previous value: -"Description"New value: +"JSON request body field — the description for this Prime Contracts operation"
      • changedInput schema / properties / designated_reviewer_id / description
        Previous 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."
      • changedInput schema / properties / drawing_revision_ids / description
        Previous value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response"
      • changedInput schema / properties / due_date / description
        Previous value: -"Due Date"New value: +"JSON request body field — due date in YYYY-MM-DD format"
      • changedInput schema / properties / enable_ssov / description
        Previous 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."
      • changedInput schema / properties / executed / description
        Previous value: -"Whether or not the Change Order is executed"New value: +"JSON request body field — whether or not the Change Order is executed"
      • changedInput schema / properties / field_change / description
        Previous value: -"Field Change"New value: +"JSON request body field — the field change for this Prime Contracts operation"
      • changedInput schema / properties / file_version_ids / description
        Previous value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response"
      • changedInput schema / properties / invoiced_date / description
        Previous value: -"Invoiced Date"New value: +"JSON request body field — the invoiced date in YYYY-MM-DD format"
      • changedInput schema / properties / location_id / description
        Previous value: -"Unique identifier for the location."New value: +"JSON request body field — unique identifier for the location."
      • changedInput schema / properties / number / description
        Previous value: -"Number of the Change Order"New value: +"JSON request body field — number of the Change Order"
      • changedInput schema / properties / paid / description
        Previous 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"
      • changedInput schema / properties / paid_date / description
        Previous value: -"Paid Date"New value: +"JSON request body field — the paid date in YYYY-MM-DD format"
      • changedInput schema / properties / private / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / reason / description
        Previous value: -"Reason for the change order"New value: +"JSON request body field — reason for the change order"
      • changedInput schema / properties / received_from_id / description
        Previous value: -"Unique identifier for the received from entity."New value: +"JSON request body field — unique identifier for the received from entity."
      • changedInput schema / properties / reference / description
        Previous value: -"Reference"New value: +"JSON request body field — the reference for this Prime Contracts operation"
      • changedInput schema / properties / revision / description
        Previous value: -"Revision Number"New value: +"JSON request body field — revision Number"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / schedule_impact_amount / description
        Previous value: -"Schedule impact in days"New value: +"JSON request body field — schedule impact in days"
      • changedInput schema / properties / signature_required / description
        Previous 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"
      • changedInput schema / properties / signed_change_order_received_date / description
        Previous value: -"Signed Change Order Received Date"New value: +"JSON request body field — signed Change Order Received Date"
      • changedInput schema / properties / status / description
        Previous value: -"Status"New value: +"JSON request body field — the status for this Prime Contracts operation"
      • changedInput schema / properties / title / description
        Previous value: -"Title of the Contract"New value: +"JSON request body field — title of the Contract"
    • Changedcreate_prime_change_order_batch28 fields changed
      • changedInput schema / properties / attachment_ids / description
        Previous value: -"Existing attachments to preserve on the response"New value: +"JSON request body field — existing attachments to preserve on the response"
      • changedInput schema / properties / change_event_attachment_ids / description
        Previous 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."
      • changedInput schema / properties / change_order_ids / description
        Previous 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."
      • changedInput schema / properties / contract_id / description
        Previous value: -"Unique identifier for the contract."New value: +"JSON request body field — unique identifier for the contract."
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / description / description
        Previous value: -"Description"New value: +"JSON request body field — the description for this Prime Contracts operation"
      • changedInput schema / properties / designated_reviewer_id / description
        Previous 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."
      • changedInput schema / properties / drawing_revision_ids / description
        Previous value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response"
      • changedInput schema / properties / due_date / description
        Previous value: -"Due Date"New value: +"JSON request body field — due date in YYYY-MM-DD format"
      • changedInput schema / properties / executed / description
        Previous 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"
      • changedInput schema / properties / file_version_ids / description
        Previous value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response"
      • changedInput schema / properties / form_ids / description
        Previous value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response"
      • changedInput schema / properties / image_ids / description
        Previous value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response"
      • changedInput schema / properties / invoiced_date / description
        Previous value: -"Invoiced Date"New value: +"JSON request body field — the invoiced date in YYYY-MM-DD format"
      • changedInput schema / properties / legacy_request_ids / description
        Previous 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."
      • changedInput schema / properties / number / description
        Previous value: -"Number of the Change Order Batch"New value: +"JSON request body field — number of the Change Order Batch"
      • changedInput schema / properties / paid_date / description
        Previous value: -"Paid Date"New value: +"JSON request body field — the paid date in YYYY-MM-DD format"
      • changedInput schema / properties / private / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / revised_substantial_completion_date / description
        Previous value: -"Revised substantial completion date"New value: +"JSON request body field — revised substantial completion date"
      • changedInput schema / properties / revision / description
        Previous value: -"Revision Number"New value: +"JSON request body field — revision Number"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / schedule_impact_amount / description
        Previous value: -"Schedule impact in days"New value: +"JSON request body field — schedule impact in days"
      • changedInput schema / properties / signature_required / description
        Previous 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"
      • changedInput schema / properties / signed_change_order_received_date / description
        Previous value: -"Signed Change Order Batch Received Date"New value: +"JSON request body field — signed Change Order Batch Received Date"
      • changedInput schema / properties / status / description
        Previous value: -"Status"New value: +"JSON request body field — the status for this Prime Contracts operation"
      • changedInput schema / properties / title / description
        Previous value: -"Title of the Change Order Batch"New value: +"JSON request body field — title of the Change Order Batch"
      • changedInput schema / properties / upload_ids / description
        Previous value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
    • Addedcreate_prime_change_order_line_item
    • Removedcreate_prime_change_order_line_item_v2_0
    • Removedcreate_prime_contract
    • Removedcreate_prime_contract_line_item
    • Addedcreate_prime_contract_line_item_project
    • Addedcreate_prime_contract_line_item_v1_0
    • Removedcreate_prime_contract_line_item_v2_0
    • Addedcreate_prime_contract_project
    • Addedcreate_prime_contract_v1_0
    • Removedcreate_prime_contract_v2_0
    • Changedcreate_procore_item_association3 fields changed
      • changedInput schema / properties / coordination_issue_id / description
        Previous value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID"
      • changedInput schema / properties / procore_item / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedcreate_productivity_log2 fields changed
      • changedInput schema / properties / productivity_log / description
        Previous value: -"productivity_log"New value: +"JSON request body field — the productivity log for this Daily Log operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_program5 fields changed
      • changedInput schema / properties / address_freeform / description
        Previous value: -"The Address of the Program"New value: +"JSON request body field — the Address of the Program"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Program"New value: +"JSON request body field — the Name of the Program"
      • changedInput schema / properties / website / description
        Previous value: -"The Website of the Program"New value: +"JSON request body field — the Website of the Program"
      • changedInput schema / properties / zip / description
        Previous value: -"The Zip code of the Program"New value: +"JSON request body field — the Zip code of the Program"
    • Changedcreate_project3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"The company identifier the project is associated with."New value: +"JSON request body field — the company identifier the project is associated with."
      • changedInput schema / properties / project / description
        Previous value: -"project"New value: +"JSON request body field — the project for this Portfolio operation"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
    • Changedcreate_project_action_plan_template_reference4 fields changed
      • changedInput schema / properties / payload / description
        Previous 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..."
      • changedInput schema / properties / plan_template_item_id / description
        Previous value: -"Project Action Plan Template Item ID"New value: +"JSON request body field — project Action Plan Template Item ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / type / description
        Previous value: -"Action Plan Reference Type"New value: +"JSON request body field — action Plan Reference Type"
    • Changedcreate_project_bid_type2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Project Bid Type"New value: +"JSON request body field — the Name of the Project Bid Type"
    • Changedcreate_project_checklist_template3 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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[]..."
      • changedInput schema / properties / list_template / description
        Previous value: -"Checklist Template object"New value: +"JSON request body field — checklist Template object"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_project_currency_configuration6 fields changed
      • changedInput schema / properties / company_currency_exchange_rate_override / description
        Previous value: -"Override for the Company Currency Exchange Rate"New value: +"JSON request body field — override for the Company Currency Exchange Rate"
      • changedInput schema / properties / company_id / description
        Previous value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / currency_display / description
        Previous value: -"Currency Display Options"New value: +"JSON request body field — currency Display Options"
      • changedInput schema / properties / currency_iso_code / description
        Previous value: -"Currency ISO Code"New value: +"JSON request body field — the currency iso code for this Currency Configurations operation"
      • changedInput schema / properties / multicurrency_enabled / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"ID of the project"New value: +"URL path parameter — unique identifier for the Procore project"
    • Changedcreate_project_distribution_group5 fields changed
      • changedInput schema / properties / Idempotency-Token / description
        Previous value: -"Unique idempotent token"New value: +"JSON request body field — unique idempotent token"
      • changedInput schema / properties / description / description
        Previous value: -"Description"New value: +"JSON request body field — the description for this Directory operation"
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Distribution Group"New value: +"JSON request body field — the Name of the Distribution Group"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / user_ids / description
        Previous value: -"User IDs to associate with the Distribution Group"New value: +"JSON request body field — user IDs to associate with the Distribution Group"
    • Changedcreate_project_equipment_maintenance_log5 fields changed
      • changedInput schema / properties / last_service_date / description
        Previous value: -"The Date the equipment was last services"New value: +"JSON request body field — the Date the equipment was last services"
      • changedInput schema / properties / managed_equipment_id / description
        Previous value: -"Equipment Id the maintenance log is associated with"New value: +"JSON request body field — equipment Id the maintenance log is associated with"
      • changedInput schema / properties / next_service_date / description
        Previous value: -"Next service date for the equipment"New value: +"JSON request body field — next service date for the equipment"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / upload_ids / description
        Previous 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."
    • Changedcreate_project_exchange_rates4 fields changed
      • changedInput schema / properties / base_currency_iso_code / description
        Previous value: -"Base Currency ISO Code"New value: +"JSON request body field — base Currency ISO Code"
      • changedInput schema / properties / company_id / description
        Previous value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / exchange_rates / description
        Previous value: -"Project exchange rates"New value: +"JSON request body field — project exchange rates"
      • changedInput schema / properties / project_id / description
        Previous value: -"ID of the project"New value: +"URL path parameter — unique identifier for the Procore project"
    • Changedcreate_project_file10 fields changed
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / data / description
        Previous 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..."
      • changedInput schema / properties / description / description
        Previous value: -"A description of the file"New value: +"JSON request body field — a description of the file"
      • changedInput schema / properties / explicit_permissions / description
        Previous value: -"Set file to private (true/false)"New value: +"JSON request body field — set file to private (true/false)"
      • changedInput schema / properties / is_tracked / description
        Previous 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)"
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the file"New value: +"JSON request body field — the Name of the file"
      • changedInput schema / properties / parent_id / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / unique_name / description
        Previous 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)."
      • changedInput schema / properties / upload_uuid / description
        Previous 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..."
    • Changedcreate_project_file_version6 fields changed
      • changedInput schema / properties / data / description
        Previous 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..."
      • changedInput schema / properties / file_id / description
        Previous value: -"The id of the File"New value: +"Query string parameter — unique identifier of the file"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the file when downloaded"New value: +"JSON request body field — name of the file when downloaded"
      • changedInput schema / properties / notes / description
        Previous value: -"Notes about the File Version"New value: +"JSON request body field — notes about the File Version"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / upload_uuid / description
        Previous 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..."
    • Changedcreate_project_folder6 fields changed
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / explicit_permissions / description
        Previous value: -"Set folder to private (true/false)"New value: +"JSON request body field — set folder to private (true/false)"
      • changedInput schema / properties / is_tracked / description
        Previous 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)"
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the folder"New value: +"JSON request body field — the Name of the folder"
      • changedInput schema / properties / parent_id / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedcreate_project_inspection_template_item_reference5 fields changed
      • changedInput schema / properties / inspection_template_id / description
        Previous value: -"The ID of the Project Inspection Template"New value: +"URL path parameter — the ID of the Project Inspection Template"
      • changedInput schema / properties / item_id / description
        Previous value: -"ID of the associated Project Inspection Template Item"New value: +"JSON request body field — iD of the associated Project Inspection Template Item"
      • changedInput schema / properties / payload / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / type / description
        Previous value: -"Project Inspection Template Item Reference Type"New value: +"JSON request body field — project Inspection Template Item Reference Type"
    • Changedcreate_project_insurance18 fields changed
      • changedInput schema / properties / additional_insured / description
        Previous value: -"Additional Individuals and/or Companies Insured"New value: +"JSON request body field — additional Individuals and/or Companies Insured"
      • changedInput schema / properties / division_template / description
        Previous value: -"Division Template"New value: +"JSON request body field — the division template for this Directory operation"
      • changedInput schema / properties / effective_date / description
        Previous value: -"Effective date"New value: +"JSON request body field — the effective date in YYYY-MM-DD format"
      • changedInput schema / properties / enable_expired_insurance_notifications / description
        Previous value: -"Enable/Disable expired insurance notifications"New value: +"JSON request body field — enable/Disable expired insurance notifications"
      • changedInput schema / properties / exempt / description
        Previous value: -"Exempt status"New value: +"JSON request body field — exempt status"
      • changedInput schema / properties / expiration_date / description
        Previous value: -"Expiration date"New value: +"JSON request body field — the expiration date in YYYY-MM-DD format"
      • changedInput schema / properties / info_received / description
        Previous value: -"Information received (or not)"New value: +"JSON request body field — information received (or not)"
      • changedInput schema / properties / insurance_sets / description
        Previous value: -"Insurance Sets"New value: +"JSON request body field — the insurance sets for this Directory operation"
      • changedInput schema / properties / insurance_type / description
        Previous value: -"Insurance type"New value: +"JSON request body field — the insurance type for this Directory operation"
      • changedInput schema / properties / limit / description
        Previous value: -"Limit"New value: +"JSON request body field — the limit for this Directory operation"
      • changedInput schema / properties / name / description
        Previous value: -"Provider name"New value: +"JSON request body field — provider name"
      • changedInput schema / properties / notes / description
        Previous value: -"Notes"New value: +"JSON request body field — the notes for this Directory operation"
      • changedInput schema / properties / origin_data / description
        Previous value: -"Origin data"New value: +"JSON request body field — the origin data for this Directory operation"
      • changedInput schema / properties / origin_id / description
        Previous value: -"Origin ID"New value: +"JSON request body field — unique identifier of the origin"
      • changedInput schema / properties / policy_number / description
        Previous value: -"Policy number"New value: +"JSON request body field — the policy number for this Directory operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / status / description
        Previous value: -"Status"New value: +"JSON request body field — the status for this Directory operation"
      • changedInput schema / properties / vendor_id / description
        Previous value: -"Vendor ID"New value: +"JSON request body field — unique identifier of the vendor"
    • Changedcreate_project_membership2 fields changed
      • changedInput schema / properties / party_id / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_project_observation_type6 fields changed
      • changedInput schema / properties / active / description
        Previous value: -"Active or no."New value: +"JSON request body field — active or no."
      • changedInput schema / properties / category / description
        Previous 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."
      • changedInput schema / properties / name / description
        Previous 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."
      • changedInput schema / properties / observations_category_id / description
        Previous 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."
      • changedInput schema / properties / parent_id / description
        Previous value: -"Parent id"New value: +"JSON request body field — unique identifier of the parent"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_project_owner_type2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Project Owner Type"New value: +"JSON request body field — the Name of the Project Owner Type"
    • Changedcreate_project_person9 fields changed
      • changedInput schema / properties / employee_id / description
        Previous value: -"The Employee ID of the Project Person"New value: +"JSON request body field — the Employee ID of the Project Person"
      • changedInput schema / properties / first_name / description
        Previous value: -"The First Name of the Project Person"New value: +"JSON request body field — the First Name of the Project Person"
      • changedInput schema / properties / is_employee / description
        Previous value: -"The Employee status of the Project Person"New value: +"JSON request body field — the Employee status of the Project Person"
      • changedInput schema / properties / job_title / description
        Previous value: -"The Job Title of the Project Person"New value: +"JSON request body field — the Job Title of the Project Person"
      • changedInput schema / properties / last_name / description
        Previous value: -"The Last Name of the Project Person"New value: +"JSON request body field — the Last Name of the Project Person"
      • changedInput schema / properties / origin_id / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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..."
      • changedInput schema / properties / work_classification_id / description
        Previous 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."
    • Changedcreate_project_region2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Project Region"New value: +"JSON request body field — the Name of the Project Region"
    • Changedcreate_project_role2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / project_role / description
        Previous value: -"project_role"New value: +"JSON request body field — the project role for this Project operation"
    • Changedcreate_project_segment_item6 fields changed
      • changedInput schema / properties / code / description
        Previous value: -"Segment Item Code"New value: +"JSON request body field — segment Item Code"
      • changedInput schema / properties / name / description
        Previous value: -"Segment Item Name"New value: +"JSON request body field — segment Item Name"
      • changedInput schema / properties / parent_id / description
        Previous value: -"Parent ID"New value: +"JSON request body field — unique identifier of the parent"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / segment_id / description
        Previous value: -"Segment ID"New value: +"URL path parameter — unique identifier of the segment"
      • changedInput schema / properties / sub_job_id / description
        Previous 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"
    • Changedcreate_project_stage4 fields changed
      • changedInput schema / properties / category / description
        Previous value: -"The Category Type of the Project Stage"New value: +"JSON request body field — the Category Type of the Project Stage"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / is_bidding_stage / description
        Previous value: -"The Bidding Stage status of the Project Stage"New value: +"JSON request body field — the Bidding Stage status of the Project Stage"
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Project Stage"New value: +"JSON request body field — the Name of the Project Stage"
    • Addedcreate_project_task_company
    • Addedcreate_project_task_company_v2_0
    • Removedcreate_project_task_v2_0_company
    • Removedcreate_project_task_v2_0_company_v2_0
    • Changedcreate_project_type2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Project Type"New value: +"JSON request body field — the Name of the Project Type"
    • Changedcreate_project_upload7 fields changed
      • changedInput schema / properties / attachment_content_disposition / description
        Previous 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..."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / response_content_type / description
        Previous 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..."
      • changedInput schema / properties / response_filename / description
        Previous 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..."
      • changedInput schema / properties / segments / description
        Previous value: -"Upload segments"New value: +"JSON request body field — upload segments"
      • changedInput schema / properties / size / description
        Previous value: -"File size in bytes"New value: +"JSON request body field — file size in bytes"
      • changedInput schema / required
        Previous value: -[
        -  "project_id"
        -]New value: +[
        +  "project_id",
        +  "response_filename"
        +]
    • Removedcreate_project_upload_v1_1
    • Changedcreate_project_user24 fields changed
      • changedInput schema / properties / address / description
        Previous value: -"The street Address of the Project User"New value: +"JSON request body field — the street Address of the Project User"
      • changedInput schema / properties / avatar / description
        Previous 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."
      • changedInput schema / properties / business_phone / description
        Previous value: -"The Business Phone number of the Project User"New value: +"JSON request body field — the Business Phone number of the Project User"
      • changedInput schema / properties / business_phone_extension / description
        Previous value: -"The Business Phone Extension of the Project User"New value: +"JSON request body field — the Business Phone Extension of the Project User"
      • changedInput schema / properties / city / description
        Previous value: -"The City in which the Project User resides"New value: +"JSON request body field — the City in which the Project User resides"
      • changedInput schema / properties / country_code / description
        Previous 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)"
      • changedInput schema / properties / email_address / description
        Previous value: -"The Email Address of the Project User"New value: +"JSON request body field — the Email Address of the Project User"
      • changedInput schema / properties / email_signature / description
        Previous value: -"The Email Signature of the Project User"New value: +"JSON request body field — the Email Signature of the Project User"
      • changedInput schema / properties / employee_id / description
        Previous value: -"The Employee ID of the Project User"New value: +"JSON request body field — the Employee ID of the Project User"
      • changedInput schema / properties / fax_number / description
        Previous value: -"The Fax Number of the Project User"New value: +"JSON request body field — the Fax Number of the Project User"
      • changedInput schema / properties / first_name / description
        Previous value: -"The First Name of the Project User"New value: +"JSON request body field — the First Name of the Project User"
      • changedInput schema / properties / initials / description
        Previous value: -"The Initials of the Project User"New value: +"JSON request body field — the Initials of the Project User"
      • changedInput schema / properties / is_active / description
        Previous value: -"The Active status of the Project User"New value: +"JSON request body field — the Active status of the Project User"
      • changedInput schema / properties / is_employee / description
        Previous value: -"The Employee status of the Project User"New value: +"JSON request body field — the Employee status of the Project User"
      • changedInput schema / properties / job_title / description
        Previous value: -"The Job Title of the Project User"New value: +"JSON request body field — the Job Title of the Project User"
      • changedInput schema / properties / last_name / description
        Previous value: -"The Last Name of the Project User"New value: +"JSON request body field — the Last Name of the Project User"
      • changedInput schema / properties / mobile_phone / description
        Previous value: -"The Mobile Phone number of the Project User"New value: +"JSON request body field — the Mobile Phone number of the Project User"
      • changedInput schema / properties / notes / description
        Previous 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"
      • changedInput schema / properties / permission_template_id / description
        Previous value: -"The Permission Template ID of the Project User"New value: +"JSON request body field — the Permission Template ID of the Project User"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / state_code / description
        Previous 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)"
      • changedInput schema / properties / vendor_id / description
        Previous value: -"The Vendor ID of the Project User"New value: +"JSON request body field — the Vendor ID of the Project User"
      • changedInput schema / properties / zip / description
        Previous value: -"The Zip Code of the Project User"New value: +"JSON request body field — the Zip Code of the Project User"
    • Changedcreate_project_vendor30 fields changed
      • changedInput schema / properties / abbreviated_name / description
        Previous value: -"Abbreviated name"New value: +"JSON request body field — the abbreviated name for this Directory operation"
      • changedInput schema / properties / address / description
        Previous value: -"Street address"New value: +"JSON request body field — street address"
      • changedInput schema / properties / authorized_bidder / description
        Previous value: -"Authorized bidder status"New value: +"JSON request body field — authorized bidder status"
      • changedInput schema / properties / business_phone / description
        Previous value: -"Business phone number"New value: +"JSON request body field — business phone number"
      • changedInput schema / properties / city / description
        Previous value: -"City"New value: +"JSON request body field — the city for this Directory operation"
      • changedInput schema / properties / country_code / description
        Previous value: -"Country code (ISO-3166 Alpha-2 format)"New value: +"JSON request body field — country code (ISO-3166 Alpha-2 format)"
      • changedInput schema / properties / email_address / description
        Previous value: -"Email address"New value: +"JSON request body field — the email address for this Directory operation"
      • changedInput schema / properties / fax_number / description
        Previous value: -"Fax number"New value: +"JSON request body field — the fax number for this Directory operation"
      • changedInput schema / properties / is_active / description
        Previous value: -"Active status"New value: +"JSON request body field — active status"
      • changedInput schema / properties / labor_union / description
        Previous value: -"Labor union"New value: +"JSON request body field — the labor union for this Directory operation"
      • changedInput schema / properties / license_number / description
        Previous value: -"License number"New value: +"JSON request body field — the license number for this Directory operation"
      • changedInput schema / properties / mobile_phone / description
        Previous value: -"Mobile phone number"New value: +"JSON request body field — mobile phone number"
      • changedInput schema / properties / name / description
        Previous value: -"Name"New value: +"JSON request body field — the name for this Directory operation"
      • changedInput schema / properties / non_union_prevailing_wage / description
        Previous value: -"Non union prevailing wage status"New value: +"JSON request body field — non union prevailing wage status"
      • changedInput schema / properties / notes / description
        Previous value: -"Notes (notes/keywords/tags)"New value: +"JSON request body field — notes (notes/keywords/tags)"
      • changedInput schema / properties / origin_code / description
        Previous value: -"Origin Code"New value: +"JSON request body field — the origin code for this Directory operation"
      • changedInput schema / properties / origin_data / description
        Previous value: -"Origin Data"New value: +"JSON request body field — the origin data for this Directory operation"
      • changedInput schema / properties / origin_id / description
        Previous value: -"Origin ID"New value: +"JSON request body field — unique identifier of the origin"
      • changedInput schema / properties / parent_id / description
        Previous 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)."
      • changedInput schema / properties / prequalified / description
        Previous value: -"Prequalified status"New value: +"JSON request body field — prequalified status"
      • changedInput schema / properties / primary_contact_id / description
        Previous value: -"Primary Contact ID"New value: +"JSON request body field — unique identifier of the primary contact"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / state_code / description
        Previous value: -"State code (ISO-3166 Alpha-2 format)"New value: +"JSON request body field — state code (ISO-3166 Alpha-2 format)"
      • changedInput schema / properties / trade_name / description
        Previous 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)."
      • changedInput schema / properties / union_member / description
        Previous value: -"Union member status"New value: +"JSON request body field — union member status"
      • changedInput schema / properties / view / description
        Previous 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."
      • changedInput schema / properties / view / enum
        Previous value: -[
        -  "normal",
        -  "extended"
        -]New value: +[
        +  "extended",
        +  "normal"
        +]
      • changedInput schema / properties / website / description
        Previous value: -"Website url"New value: +"JSON request body field — website url"
      • changedInput schema / properties / zip / description
        Previous value: -"Zip code"New value: +"JSON request body field — postal/ZIP code"
    • Changedcreate_project_vendor_insurance18 fields changed
      • changedInput schema / properties / additional_insured / description
        Previous value: -"Additional Individuals and/or Companies Insured"New value: +"JSON request body field — additional Individuals and/or Companies Insured"
      • changedInput schema / properties / division_template / description
        Previous value: -"Division Template"New value: +"JSON request body field — the division template for this Directory operation"
      • changedInput schema / properties / effective_date / description
        Previous value: -"Effective date"New value: +"JSON request body field — the effective date in YYYY-MM-DD format"
      • changedInput schema / properties / enable_expired_insurance_notifications / description
        Previous value: -"Enable/Disable expired insurance notifications"New value: +"JSON request body field — enable/Disable expired insurance notifications"
      • changedInput schema / properties / exempt / description
        Previous value: -"Exempt status"New value: +"JSON request body field — exempt status"
      • changedInput schema / properties / expiration_date / description
        Previous value: -"Expiration date"New value: +"JSON request body field — the expiration date in YYYY-MM-DD format"
      • changedInput schema / properties / info_received / description
        Previous value: -"Information received (or not)"New value: +"JSON request body field — information received (or not)"
      • changedInput schema / properties / insurance_sets / description
        Previous value: -"Insurance Sets"New value: +"JSON request body field — the insurance sets for this Directory operation"
      • changedInput schema / properties / insurance_type / description
        Previous value: -"Insurance type"New value: +"JSON request body field — the insurance type for this Directory operation"
      • changedInput schema / properties / limit / description
        Previous value: -"Limit"New value: +"JSON request body field — the limit for this Directory operation"
      • changedInput schema / properties / name / description
        Previous value: -"Provider name"New value: +"JSON request body field — provider name"
      • changedInput schema / properties / notes / description
        Previous value: -"Notes"New value: +"JSON request body field — the notes for this Directory operation"
      • changedInput schema / properties / origin_data / description
        Previous value: -"Origin data"New value: +"JSON request body field — the origin data for this Directory operation"
      • changedInput schema / properties / origin_id / description
        Previous value: -"Origin ID"New value: +"JSON request body field — unique identifier of the origin"
      • changedInput schema / properties / policy_number / description
        Previous value: -"Policy number"New value: +"JSON request body field — the policy number for this Directory operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / status / description
        Previous value: -"Status"New value: +"JSON request body field — the status for this Directory operation"
      • changedInput schema / properties / vendor_id / description
        Previous value: -"Vendor ID"New value: +"URL path parameter — unique identifier of the vendor"
    • Removedcreate_project_vendor_v1_1
    • Addedcreate_project_webhooks_hook
    • Removedcreate_project_webhooks_hook_v2_0
    • Addedcreate_project_webhooks_triggers
    • Removedcreate_project_webhooks_triggers_v2_0
    • Changedcreate_property_damage9 fields changed
      • changedInput schema / properties / affected_company_id / description
        Previous value: -"The ID of the Affected Company"New value: +"JSON request body field — the ID of the Affected Company"
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / description / description
        Previous value: -"Description of event in Rich Text format"New value: +"JSON request body field — description of event in Rich Text format"
      • changedInput schema / properties / estimated_cost_impact / description
        Previous value: -"Estimated cost impact of the record"New value: +"JSON request body field — estimated cost impact of the record"
      • changedInput schema / properties / incident_id / description
        Previous value: -"The ID of the Incident"New value: +"JSON request body field — the ID of the Incident"
      • changedInput schema / properties / managed_equipment_id / description
        Previous value: -"The ID of the Managed Equipment"New value: +"JSON request body field — the ID of the Managed Equipment"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / responsible_company_id / description
        Previous value: -"The ID of the Responsible Company"New value: +"JSON request body field — the ID of the Responsible Company"
      • changedInput schema / properties / work_activity_id / description
        Previous value: -"The ID of the Work Activity"New value: +"JSON request body field — the ID of the Work Activity"
    • Changedcreate_punch_item4 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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[..."
      • changedInput schema / properties / project_id / description
        Previous 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"
      • changedInput schema / properties / punch_item / description
        Previous value: -"punch_item"New value: +"JSON request body field — the punch item for this Punch List operation"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
    • Changedcreate_punch_item_comment4 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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."
      • changedInput schema / properties / comment / description
        Previous value: -"comment"New value: +"JSON request body field — the comment for this Punch List operation"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Punch Item"New value: +"URL path parameter — iD of the Punch Item"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedcreate_punch_item_type2 fields changed
      • changedInput schema / properties / project_id / description
        Previous 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"
      • changedInput schema / properties / punch_item_type / description
        Previous value: -"punch_item_type"New value: +"JSON request body field — the punch item type for this Punch List operation"
    • Removedcreate_punch_item_v1_1
    • Changedcreate_purchase_order_contract4 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / purchase_order_contract / description
        Previous value: -"Purchase Order Contract object"New value: +"JSON request body field — purchase Order Contract object"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
    • Changedcreate_purchase_order_contract_detail_line_item3 fields changed
      • changedInput schema / properties / contract_detail_line_item / description
        Previous value: -"The Detail Line Item object"New value: +"JSON request body field — the Detail Line Item object"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / purchase_order_contract_id / description
        Previous value: -"Purchase Order Contract ID"New value: +"URL path parameter — purchase Order Contract ID"
    • Changedcreate_purchase_order_contract_line_item3 fields changed
      • changedInput schema / properties / line_item / description
        Previous value: -"The Line Item object"New value: +"JSON request body field — the Line Item object"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / purchase_order_contract_id / description
        Previous value: -"Purchase Order Contract ID"New value: +"URL path parameter — purchase Order Contract ID"
    • Changedcreate_quantity_log3 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / quantity_log / description
        Previous value: -"quantity_log"New value: +"JSON request body field — the quantity log for this Daily Log operation"
    • Addedcreate_reinspections
    • Removedcreate_reinspections_v2_0
    • Addedcreate_requested_change
    • Removedcreate_requested_change_v1_1
    • Changedcreate_requisition_subcontractor_invoices_for_commitment6 fields changed
      • removedInput schema / properties / attachments
        Removed 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"
        -}
      • changedInput schema / properties / commitment_id / description
        Previous value: -"Commitment ID"New value: +"JSON request body field — unique identifier of the commitment"
      • addedInput schema / properties / invite_id
        Added value: +{
        +  "description": "Query string parameter — unique identifier for the invite to associate with the requisition.",
        +  "type": "number"
        +}
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the Procore project"
      • changedInput schema / properties / requisition / description
        Previous value: -"Requisition (Subcontractor Invoice)"New value: +"JSON request body field — requisition (Subcontractor Invoice)"
      • addedInput schema / properties / view
        Added 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"
        +}
    • Removedcreate_requisition_subcontractor_invoices_for_commitment_v1_1
    • Removedcreate_resource
    • Addedcreate_resource_project
    • Addedcreate_resource_v1_0
    • Removedcreate_resource_v1_1
    • Changedcreate_rfi28 fields changed
      • changedInput schema / properties / assignee_id / description
        Previous 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"
      • changedInput schema / properties / assignee_ids / description
        Previous 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"
      • changedInput schema / properties / cost_code_id / description
        Previous 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"
      • changedInput schema / properties / cost_impact / description
        Previous value: -"The Cost Impact of the RFI"New value: +"JSON request body field — the Cost Impact of the RFI"
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / custom_textfield_1 / description
        Previous value: -"The Custom Textfield 1 of the RFI"New value: +"JSON request body field — the Custom Textfield 1 of the RFI"
      • changedInput schema / properties / custom_textfield_2 / description
        Previous value: -"The Custom Textfield 2 of the RFI"New value: +"JSON request body field — the Custom Textfield 2 of the RFI"
      • changedInput schema / properties / distribution_ids / description
        Previous 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"
      • changedInput schema / properties / draft / description
        Previous value: -"The Draft status of the RFI"New value: +"JSON request body field — the Draft status of the RFI"
      • changedInput schema / properties / drawing_number / description
        Previous value: -"The Drawing Number of the RFI"New value: +"JSON request body field — the Drawing Number of the RFI"
      • changedInput schema / properties / due_date / description
        Previous 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"
      • changedInput schema / properties / location_id / description
        Previous value: -"The ID of the Location of the RFI"New value: +"JSON request body field — the ID of the Location of the RFI"
      • changedInput schema / properties / number / description
        Previous 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."
      • changedInput schema / properties / private / description
        Previous value: -"The Private status of the RFI"New value: +"JSON request body field — the Private status of the RFI"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / project_stage_id / description
        Previous 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..."
      • changedInput schema / properties / question / description
        Previous value: -"The Question of the RFI"New value: +"JSON request body field — the Question of the RFI"
      • changedInput schema / properties / received_from_login_information_id / description
        Previous 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"
      • changedInput schema / properties / reference / description
        Previous value: -"The Reference of the RFI"New value: +"JSON request body field — the Reference of the RFI"
      • changedInput schema / properties / required_assignee_ids / description
        Previous 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"
      • changedInput schema / properties / responsible_contractor_id / description
        Previous 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"
      • changedInput schema / properties / revision / description
        Previous 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.  "
      • changedInput schema / properties / rfi_manager_id / description
        Previous 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"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / schedule_impact / description
        Previous value: -"The Schedule Impact of the RFI"New value: +"JSON request body field — the Schedule Impact of the RFI"
      • changedInput schema / properties / source_rfi_header_id / description
        Previous 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."
      • changedInput schema / properties / specification_section_id / description
        Previous 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"
      • changedInput schema / properties / subject / description
        Previous value: -"The Subject of the RFI"New value: +"JSON request body field — the Subject of the RFI"
    • Changedcreate_rfi_reply4 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / reply / description
        Previous value: -"reply"New value: +"JSON request body field — the reply for this RFI operation"
      • changedInput schema / properties / rfi_id / description
        Previous value: -"RFI ID"New value: +"URL path parameter — unique identifier of the rfi"
    • Changedcreate_rfq3 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"Contract ID"New value: +"JSON request body field — unique identifier of the contract"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / rfq / description
        Previous value: -"rfq"New value: +"JSON request body field — the rfq for this Commitments operation"
    • Changedcreate_rfq_quote4 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"Contract ID"New value: +"JSON request body field — unique identifier of the contract"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / rfq_id / description
        Previous value: -"RFQ ID"New value: +"URL path parameter — unique identifier of the rfq"
      • changedInput schema / properties / rfq_quote / description
        Previous value: -"rfq_quote"New value: +"JSON request body field — the rfq quote for this Commitments operation"
    • Changedcreate_rfq_response4 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"Contract ID"New value: +"JSON request body field — unique identifier of the contract"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / rfq_id / description
        Previous value: -"RFQ ID"New value: +"URL path parameter — unique identifier of the rfq"
      • changedInput schema / properties / rfq_response / description
        Previous value: -"rfq_response"New value: +"JSON request body field — the rfq response for this Commitments operation"
    • Changedcreate_rounding_configuration3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / rule / description
        Previous 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'"
      • changedInput schema / properties / time_increment / description
        Previous 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"
    • Changedcreate_safety_violation_log3 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / safety_violation_log / description
        Previous value: -"safety_violation_log"New value: +"JSON request body field — safety_violation_log"
    • Changedcreate_signature_for_time_and_material_entry5 fields changed
      • changedInput schema / properties / data / description
        Previous 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`..."
      • changedInput schema / properties / party_id / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / signature_text / description
        Previous value: -"Acknowedgement text the signature was signed against."New value: +"JSON request body field — acknowedgement text the signature was signed against."
      • changedInput schema / properties / upload_id / description
        Previous value: -"Signature Upload ID"New value: +"JSON request body field — unique identifier of the upload"
    • Changedcreate_signature_for_timesheet_company5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / data / description
        Previous 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`..."
      • changedInput schema / properties / signature_text / description
        Previous value: -"Acknowedgement text the signature was signed against."New value: +"JSON request body field — acknowedgement text the signature was signed against."
      • changedInput schema / properties / upload_id / description
        Previous value: -"Signature Upload ID"New value: +"JSON request body field — unique identifier of the upload"
      • changedInput schema / properties / user_id / description
        Previous 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"
    • Changedcreate_signature_for_timesheet_project4 fields changed
      • changedInput schema / properties / data / description
        Previous 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`..."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / signature_text / description
        Previous value: -"Acknowedgement text the signature was signed against."New value: +"JSON request body field — acknowedgement text the signature was signed against."
      • changedInput schema / properties / user_id / description
        Previous 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"
    • Addedcreate_specification_area
    • Removedcreate_specification_area_v2_1
    • Changedcreate_specification_section_division_for_a_project3 fields changed
      • changedInput schema / properties / description / description
        Previous value: -"description"New value: +"JSON request body field — the description for this Specifications operation"
      • changedInput schema / properties / number / description
        Previous value: -"number"New value: +"JSON request body field — the number for this Specifications operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedcreate_specification_section_for_a_project4 fields changed
      • changedInput schema / properties / description / description
        Previous value: -"description"New value: +"JSON request body field — the description for this Specifications operation"
      • changedInput schema / properties / number / description
        Previous value: -"number"New value: +"JSON request body field — the number for this Specifications operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / specification_section_division_id / description
        Previous value: -"The ID of the parent Specification Section Division"New value: +"JSON request body field — the ID of the parent Specification Section Division"
    • Changedcreate_specification_set3 fields changed
      • changedInput schema / properties / date / description
        Previous value: -"Creation date of specification set"New value: +"JSON request body field — creation date of specification set"
      • changedInput schema / properties / name / description
        Previous value: -"Name of specification set"New value: +"JSON request body field — name of specification set"
      • changedInput schema / properties / project_id / description
        Previous value: -"The ID of the project for the new set"New value: +"URL path parameter — the ID of the project for the new set"
    • Changedcreate_specification_upload10 fields changed
      • changedInput schema / properties / default_revision / description
        Previous 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"
      • changedInput schema / properties / files / description
        Previous 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..."
      • changedInput schema / properties / ignore_number / description
        Previous 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..."
      • changedInput schema / properties / issued_date / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"The ID of the project to upload to"New value: +"URL path parameter — the ID of the project to upload to"
      • changedInput schema / properties / received_date / description
        Previous 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"
      • changedInput schema / properties / spec_format / description
        Previous value: -"Specification format to apply to the upload."New value: +"JSON request body field — specification format to apply to the upload."
      • changedInput schema / properties / specification_section_id / description
        Previous 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."
      • changedInput schema / properties / specification_set_id / description
        Previous 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"
      • changedInput schema / properties / upload_uuids / description
        Previous 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"
    • Changedcreate_standard_cost_code4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company"
      • changedInput schema / properties / standard_cost_code / description
        Previous value: -"standard_cost_code"New value: +"JSON request body field — the standard cost code for this Work Breakdown Structure operation"
      • changedInput schema / properties / standard_cost_code_list_id / description
        Previous value: -"Standard Cost Code List ID"New value: +"JSON request body field — standard Cost Code List ID"
      • changedInput schema / properties / view / description
        Previous 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..."
    • Changedcreate_standard_cost_code_list2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"JSON request body field — unique identifier for the company."
      • changedInput schema / properties / standard_cost_code_list / description
        Previous value: -"standard_cost_code_list"New value: +"JSON request body field — standard_cost_code_list"
    • Changedcreate_sub_job2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / sub_job / description
        Previous value: -"sub_job"New value: +"JSON request body field — the sub job for this Work Breakdown Structure operation"
    • Changedcreate_submittal34 fields changed
      • changedInput schema / properties / actual_delivery_date / description
        Previous 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"
      • addedInput schema / properties / attachments
        Added 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"
        +}
      • changedInput schema / properties / confirmed_delivery_date / description
        Previous 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"
      • changedInput schema / properties / cost_code_id / description
        Previous 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"
      • changedInput schema / properties / custom_textarea_1 / description
        Previous value: -"*This field can only be set by admins"New value: +"JSON request body field — *This field can only be set by admins\n"
      • changedInput schema / properties / custom_textfield_1 / description
        Previous value: -"*This field can only be set by admins"New value: +"JSON request body field — *This field can only be set by admins\n"
      • changedInput schema / properties / description / description
        Previous value: -"The Description of the Submittal"New value: +"JSON request body field — the Description of the Submittal"
      • changedInput schema / properties / design_team_review_time / description
        Previous 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"
      • changedInput schema / properties / distribution_member_ids / description
        Previous 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"
      • changedInput schema / properties / due_date / description
        Previous 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"
      • changedInput schema / properties / internal_review_time / description
        Previous 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"
      • changedInput schema / properties / issue_date / description
        Previous 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"
      • changedInput schema / properties / lead_time / description
        Previous 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"
      • changedInput schema / properties / location_id / description
        Previous value: -"The Location of the Submittal"New value: +"JSON request body field — the Location of the Submittal"
      • changedInput schema / properties / number / description
        Previous value: -"The Number of the Submittal"New value: +"JSON request body field — the Number of the Submittal"
      • changedInput schema / properties / private / description
        Previous value: -"Whether the Submittal is Private or not"New value: +"JSON request body field — whether the Submittal is Private or not"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • addedInput schema / properties / prostore_file_ids
        Added 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"
        +}
      • changedInput schema / properties / received_date / description
        Previous 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"
      • changedInput schema / properties / received_from_id / description
        Previous value: -"The Received From of the Submittal"New value: +"JSON request body field — the Received From of the Submittal"
      • changedInput schema / properties / required_on_site_date / description
        Previous 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"
      • changedInput schema / properties / responsible_contractor_id / description
        Previous value: -"The Responsible Contractor of the Submittal"New value: +"JSON request body field — the Responsible Contractor of the Submittal"
      • changedInput schema / properties / revision / description
        Previous value: -"The Revision of the Submittal"New value: +"JSON request body field — the Revision of the Submittal"
      • changedInput schema / properties / scheduled_task_id / description
        Previous 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"
      • changedInput schema / properties / scheduled_task_key / description
        Previous 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..."
      • changedInput schema / properties / send_emails / description
        Previous 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)"
      • addedInput schema / properties / source_submittal_log_id
        Added 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"
        +}
      • changedInput schema / properties / specification_section_id / description
        Previous 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"
      • changedInput schema / properties / status_id / description
        Previous 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"
      • changedInput schema / properties / sub_job_id / description
        Previous 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"
      • changedInput schema / properties / submit_by / description
        Previous 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"
      • removedInput schema / properties / submittal_manager_id
        Removed value: -{
        -  "description": "The ID of the Submittal Manager of the Submittal\n*This field can only be set by admins",
        -  "type": "number"
        -}
      • removedInput schema / properties / submittal_package_id
        Removed value: -{
        -  "description": "The ID of the Submittal Package of the Submittal\n*This field can only be set by admins",
        -  "type": "number"
        -}
      • removedInput schema / properties / title
        Removed value: -{
        -  "description": "The Title of the Submittal",
        -  "type": "string"
        -}
    • Changedcreate_submittal_response3 fields changed
      • changedInput schema / properties / considered / description
        Previous value: -"Mapping of the Submittal Response"New value: +"JSON request body field — mapping of the Submittal Response"
      • changedInput schema / properties / name / description
        Previous value: -"Name of Submittal Response"New value: +"JSON request body field — name of Submittal Response"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedcreate_submittal_v1_1
    • Addedcreate_support_pin
    • Removedcreate_support_pin_v2_0
    • Changedcreate_task2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"ID of the project this task belongs to."New value: +"JSON request body field — iD of the project this task belongs to."
      • changedInput schema / properties / task / description
        Previous value: -"Task object."New value: +"JSON request body field — task object."
    • Changedcreate_task_item19 fields changed
      • changedInput schema / properties / assigned_id / description
        Previous value: -"Assignee ID"New value: +"JSON request body field — unique identifier of the assigned"
      • changedInput schema / properties / assignee_ids / description
        Previous value: -"Assignee IDs"New value: +"JSON request body field — array of assignee identifiers"
      • changedInput schema / properties / attachments / description
        Previous 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."
      • changedInput schema / properties / description / description
        Previous value: -"Description"New value: +"JSON request body field — the description for this Tasks operation"
      • changedInput schema / properties / distribution_member_ids / description
        Previous value: -"Distribution Member IDs"New value: +"JSON request body field — distribution Member IDs"
      • changedInput schema / properties / document_management_document_revision_ids / description
        Previous value: -"PDM document to attach to the response"New value: +"JSON request body field — pDM document to attach to the response"
      • changedInput schema / properties / drawing_revision_ids / description
        Previous value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response"
      • changedInput schema / properties / due_date / description
        Previous value: -"Date and time due"New value: +"JSON request body field — due date in YYYY-MM-DD format"
      • changedInput schema / properties / file_version_ids / description
        Previous value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response"
      • changedInput schema / properties / form_ids / description
        Previous value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response"
      • changedInput schema / properties / image_ids / description
        Previous value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response"
      • changedInput schema / properties / number / description
        Previous value: -"Number"New value: +"JSON request body field — the number for this Tasks operation"
      • changedInput schema / properties / private / description
        Previous value: -"Privacy flag"New value: +"JSON request body field — privacy flag"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / prostore_file_ids / description
        Previous value: -"Prostore File IDs"New value: +"JSON request body field — array of prostore file identifiers"
      • changedInput schema / properties / status / description
        Previous value: -"Status"New value: +"JSON request body field — the status for this Tasks operation"
      • changedInput schema / properties / task_item_category_id / description
        Previous 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."
      • changedInput schema / properties / title / description
        Previous value: -"Title"New value: +"JSON request body field — the title for this Tasks operation"
      • changedInput schema / properties / upload_ids / description
        Previous value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
    • Changedcreate_tax_code8 fields changed
      • changedInput schema / properties / archived / description
        Previous 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"
      • changedInput schema / properties / code / description
        Previous value: -"The Tax Code"New value: +"JSON request body field — the Tax Code"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / default_tax_code / description
        Previous 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"
      • changedInput schema / properties / description / description
        Previous value: -"The Description of the Tax Code"New value: +"JSON request body field — the Description of the Tax Code"
      • changedInput schema / properties / origin_data / description
        Previous 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."
      • changedInput schema / properties / origin_id / description
        Previous value: -"The Third-party ID of the Tax Code"New value: +"JSON request body field — the Third-party ID of the Tax Code"
      • changedInput schema / properties / rate1 / description
        Previous value: -"Rate to apply for first Tax Type"New value: +"JSON request body field — rate to apply for first Tax Type"
    • Changedcreate_tax_type5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / description / description
        Previous value: -"The Description of the Tax Type"New value: +"JSON request body field — the Description of the Tax Type"
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Tax Type"New value: +"JSON request body field — the Name of the Tax Type"
      • changedInput schema / properties / origin_data / description
        Previous 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."
      • changedInput schema / properties / origin_id / description
        Previous value: -"The Third-party ID of the Tax Type"New value: +"JSON request body field — the Third-party ID of the Tax Type"
    • Changedcreate_time_and_material_timecard7 fields changed
      • changedInput schema / properties / hours_worked / description
        Previous value: -"Total hours worked"New value: +"JSON request body field — total hours worked"
      • changedInput schema / properties / login_information_id / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / time_and_material_entry_id / description
        Previous 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"
      • changedInput schema / properties / timecard_time_type_id / description
        Previous 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"
      • changedInput schema / properties / work_classification_id / description
        Previous value: -"ID of the worker's work classification"New value: +"JSON request body field — iD of the worker's work classification"
    • Changedcreate_time_off_for_a_person13 fields changed
      • changedInput schema / properties / apply_to_saturday / description
        Previous value: -"Whether the time off applies to Saturdays."New value: +"JSON request body field — whether the time off applies to Saturdays."
      • changedInput schema / properties / apply_to_sunday / description
        Previous value: -"Whether the time off applies to Sundays."New value: +"JSON request body field — whether the time off applies to Sundays."
      • changedInput schema / properties / batch_end_time / description
        Previous 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)."
      • changedInput schema / properties / batch_start_time / description
        Previous 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)."
      • changedInput schema / properties / cadence / description
        Previous value: -"Cadence of the repeating time off."New value: +"JSON request body field — cadence of the repeating time off."
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / end_day / description
        Previous value: -"The end date of the time off."New value: +"JSON request body field — the end date of the time off."
      • changedInput schema / properties / is_paid / description
        Previous value: -"Whether the time off is paid."New value: +"JSON request body field — whether the time off is paid."
      • changedInput schema / properties / person_id / description
        Previous value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person"
      • changedInput schema / properties / reason / description
        Previous value: -"The reason for the time off."New value: +"JSON request body field — the reason for the time off."
      • changedInput schema / properties / repeat / description
        Previous value: -"Repeat interval of the time off instances."New value: +"JSON request body field — repeat interval of the time off instances."
      • changedInput schema / properties / repeat_end_day / description
        Previous value: -"The end date of the repeating time off."New value: +"JSON request body field — the end date of the repeating time off."
      • changedInput schema / properties / start_day / description
        Previous value: -"The start date of the time off."New value: +"JSON request body field — the start date of the time off."
    • Removedcreate_timecard_entry
    • Changedcreate_timecard_entry_company3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / project_id / description
        Previous 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"
      • changedInput schema / properties / timecard_entry / description
        Previous value: -"Timecard Entry object"New value: +"JSON request body field — timecard Entry object"
    • Changedcreate_timecard_entry_project22 fields changed
      • changedInput schema / properties / billable / description
        Previous 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."
      • changedInput schema / properties / cost_code_id / description
        Previous 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."
      • addedInput 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"
        +}
      • removedInput schema / properties / daily_log_segment_id
        Removed value: -{
        -  "description": "Daily Log Segment ID",
        -  "type": "number"
        -}
      • changedInput schema / properties / date / description
        Previous 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."
      • removedInput schema / properties / datetime
        Removed value: -{
        -  "description": "The date and time value of record. This property is mutually exclusive with the Date property.",
        -  "type": "string"
        -}
      • changedInput schema / properties / description / description
        Previous value: -"The description of the timecard entry."New value: +"JSON request body field — the description of the Timecard Entry."
      • changedInput schema / properties / hours / description
        Previous 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."
      • changedInput schema / properties / line_item_type_id / description
        Previous 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."
      • changedInput schema / properties / location_id / description
        Previous 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."
      • changedInput schema / properties / login_information_id / description
        Previous 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."
      • changedInput schema / properties / lunch_time / description
        Previous 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."
      • changedInput schema / properties / origin_data / description
        Previous value: -"The value of the related external data."New value: +"JSON request body field — the value of the related external data."
      • changedInput schema / properties / origin_id / description
        Previous value: -"The ID of the related external data."New value: +"JSON request body field — the ID of the related external data."
      • changedInput schema / properties / party_id / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sub_job_id / description
        Previous 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."
      • changedInput schema / properties / time_in / description
        Previous 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."
      • changedInput schema / properties / time_out / description
        Previous 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."
      • changedInput schema / properties / timecard_time_type_id / description
        Previous 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."
      • changedInput schema / properties / timesheet_id / description
        Previous 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."
      • changedInput schema / required
        Previous value: -[
        -  "project_id",
        -  "hours",
        -  "lunch_time",
        -  "time_in",
        -  "time_out"
        -]New value: +[
        +  "project_id"
        +]
    • Addedcreate_timecard_entry_project_2
    • Addedcreate_timecard_entry_v1_0
    • Removedcreate_timecard_entry_v1_1
    • Addedcreate_timeline_event
    • Removedcreate_timeline_event_v2_0
    • Changedcreate_timesheet2 fields changed
      • changedInput schema / properties / date / description
        Previous value: -"The Date of the Timesheet"New value: +"JSON request body field — the Date of the Timesheet"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreate_timesheet_to_budget_configuration3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / erp_default_line_item_type_id / description
        Previous value: -"ERP Line Item Type ID"New value: +"JSON request body field — eRP Line Item Type ID"
      • changedInput schema / properties / line_item_type_id / description
        Previous value: -"Line Item Type ID"New value: +"JSON request body field — unique identifier of the line item type"
    • Changedcreate_todo2 fields changed
      • changedInput schema / properties / project_id / description
        Previous 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"
      • changedInput schema / properties / todo / description
        Previous value: -"ToDo object"New value: +"JSON request body field — toDo object"
    • Changedcreate_trade3 fields changed
      • changedInput schema / properties / active / description
        Previous value: -"The availability status of the Trade"New value: +"JSON request body field — the availability status of the Trade"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / name / description
        Previous value: -"The name of the Trade"New value: +"JSON request body field — the name of the Trade"
    • Changedcreate_unit_of_measure3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / name / description
        Previous value: -"Name of the Unit of Measure"New value: +"JSON request body field — name of the Unit of Measure"
      • changedInput schema / properties / uom_category_id / description
        Previous value: -"ID of the Unit of Measure Category"New value: +"JSON request body field — iD of the Unit of Measure Category"
    • Addedcreate_unmanaged_equipment_project
    • Removedcreate_unmanaged_equipment_project_v2_0
    • Changedcreate_viewpoint_and_procore_item_association3 fields changed
      • changedInput schema / properties / bim_viewpoint_id / description
        Previous value: -"BIM Viewpoint ID"New value: +"URL path parameter — unique identifier of the bim viewpoint"
      • changedInput schema / properties / procore_item / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedcreate_visitor_log3 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / visitor_log / description
        Previous value: -"visitor_log"New value: +"JSON request body field — the visitor log for this Daily Log operation"
    • Changedcreate_waste_log3 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / waste_log / description
        Previous value: -"waste_log"New value: +"JSON request body field — the waste log for this Daily Log operation"
    • Addedcreate_wbs_attribute_item
    • Removedcreate_wbs_attribute_item_v2_0
    • Addedcreate_wbs_attribute_items_in_bulk
    • Removedcreate_wbs_attribute_items_in_bulk_v2_0
    • Addedcreate_wbs_attributes
    • Removedcreate_wbs_attributes_v2_0
    • Removedcreate_weather_log
    • Addedcreate_weather_log_project
    • Addedcreate_weather_log_project_v1_0
    • Removedcreate_weather_log_v1_1
    • Changedcreate_webhooks_trigger1 field changed
      • changedInput schema / properties / hook_id / description
        Previous value: -"Webhooks Hook ID"New value: +"URL path parameter — unique identifier of the hook"
    • Changedcreate_witness_statement12 fields changed
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / date_received / description
        Previous 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."
      • changedInput schema / properties / drawing_revision_ids / description
        Previous value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response"
      • changedInput schema / properties / file_version_ids / description
        Previous value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response"
      • changedInput schema / properties / form_ids / description
        Previous value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response"
      • changedInput schema / properties / image_ids / description
        Previous value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response"
      • changedInput schema / properties / incident_id / description
        Previous value: -"The ID of the Incident"New value: +"JSON request body field — the ID of the Incident"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / recording / description
        Previous value: -"recording"New value: +"JSON request body field — the recording for this Incidents operation"
      • changedInput schema / properties / statement / description
        Previous 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."
      • changedInput schema / properties / upload_uuids / description
        Previous value: -"Array of uploaded file UUIDs."New value: +"JSON request body field — array of uploaded file UUIDs."
      • changedInput schema / properties / witness_id / description
        Previous value: -"Witness ID"New value: +"JSON request body field — unique identifier of the witness"
    • Changedcreate_work_activity3 fields changed
      • changedInput schema / properties / active / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Work Activity"New value: +"JSON request body field — the Name of the Work Activity"
    • Changedcreate_work_log3 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / work_log / description
        Previous value: -"work_log"New value: +"JSON request body field — the work log for this Daily Log operation"
    • Changedcreate_work_order_contract4 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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[]`..."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / work_order_contract / description
        Previous value: -"Work Order Contract object"New value: +"JSON request body field — work Order Contract object"
    • Changedcreate_work_order_contract_detail_line_item3 fields changed
      • changedInput schema / properties / contract_detail_line_item / description
        Previous value: -"The Detail Line Item object"New value: +"JSON request body field — the Detail Line Item object"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / work_order_contract_id / description
        Previous value: -"Work Order Contract ID"New value: +"URL path parameter — work Order Contract ID"
    • Changedcreate_work_order_contract_line_item3 fields changed
      • changedInput schema / properties / line_item / description
        Previous value: -"The Line Item object"New value: +"JSON request body field — the Line Item object"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / work_order_contract_id / description
        Previous value: -"Work Order Contract ID"New value: +"URL path parameter — work Order Contract ID"
    • Changedcreate_workflow_activity_history7 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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."
      • changedInput schema / properties / comments / description
        Previous value: -"Comments"New value: +"JSON request body field — the comments for this Workflows operation"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / performed_by_id / description
        Previous 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."
      • changedInput schema / properties / workflow_activity_id / description
        Previous value: -"Workflow Activity ID"New value: +"JSON request body field — workflow Activity ID"
      • changedInput schema / properties / workflow_instance_id / description
        Previous value: -"Workflow Instance ID"New value: +"JSON request body field — workflow Instance ID"
      • changedInput schema / properties / workflow_user_role_id / description
        Previous value: -"Workflow User Role ID"New value: +"JSON request body field — workflow User Role ID"
    • Addedcreates_a_inspection_item_signature_request_project
    • Addedcreates_a_inspection_item_signature_request_project_v2_0
    • Removedcreates_a_inspection_item_signature_request_v2_0_project
    • Removedcreates_a_inspection_item_signature_request_v2_0_project_v2_0
    • Changedcreates_an_inspection_item_comment2 fields changed
      • changedInput schema / properties / inspection_id / description
        Previous value: -"Unique identifier for the inspection."New value: +"URL path parameter — unique identifier for the inspection."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreates_or_updates_a_budget_note_for_a_budget_or_a_forecasting5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / label / description
        Previous 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"
      • changedInput schema / properties / note / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"ID of the project"New value: +"URL path parameter — unique identifier for the Procore project"
      • changedInput schema / properties / wbs_code_id / description
        Previous value: -"ID of the WBS code"New value: +"URL path parameter — unique identifier of the wbs code"
    • Changedcreates_or_updates_project_date2 fields changed
      • changedInput schema / properties / project_dates / description
        Previous value: -"project_dates"New value: +"JSON request body field — the project dates for this Project operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedcreates_requested_change6 fields changed
      • changedInput schema / properties / change_reason / description
        Previous value: -"Requested change reason"New value: +"JSON request body field — requested change reason"
      • changedInput schema / properties / notes / description
        Previous value: -"Requested change notes"New value: +"JSON request body field — requested change notes"
      • changedInput schema / properties / other_change / description
        Previous value: -"other_change"New value: +"JSON request body field — the other change for this Schedule (Legacy) operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / task / description
        Previous value: -"task"New value: +"JSON request body field — the task for this Schedule (Legacy) operation"
      • changedInput schema / properties / task_id / description
        Previous 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."
    • Changeddeactivate_early_pay_program2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / early_pay_program_id / description
        Previous value: -"UUID of the early pay program"New value: +"URL path parameter — uUID of the early pay program"
    • Changeddelete_a_budget_change2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Unique identifier of budget change"New value: +"URL path parameter — unique identifier of budget change"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_a_budgeted_production_quantity6 fields changed
      • changedInput schema / properties / cost_code_id / description
        Previous 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."
      • changedInput schema / properties / id / description
        Previous value: -"Id of the Budgeted Production Quantity"New value: +"URL path parameter — id of the Budgeted Production Quantity"
      • changedInput schema / properties / project_id / description
        Previous value: -"Project"New value: +"JSON request body field — unique identifier for the Procore project"
      • changedInput schema / properties / quantity / description
        Previous value: -"Quantity budgeted for a project cost code"New value: +"JSON request body field — quantity budgeted for a project cost code"
      • changedInput schema / properties / unit_of_measure / description
        Previous value: -"Unit of Measure"New value: +"JSON request body field — the unit of measure for this Budget operation"
      • changedInput schema / properties / wbs_code_id / description
        Previous 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."
    • Addeddelete_a_change_order_change_reason
    • Removeddelete_a_change_order_change_reason_v2_0
    • Changeddelete_a_classification2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Id of the classification"New value: +"URL path parameter — id of the classification"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_a_company_action_plan_templates2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Company Action Plan Template ID"New value: +"URL path parameter — company Action Plan Template ID"
    • Removeddelete_a_company_action_plan_templates_v1_1
    • Changeddelete_a_company_office2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the office"New value: +"URL path parameter — unique identifier of the Company Settings resource"
    • Changeddelete_a_compliance_document_project3 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"identifier for the commitment contract"New value: +"URL path parameter — identifier for the commitment contract"
      • changedInput schema / properties / id / description
        Previous value: -"identifier for the document"New value: +"URL path parameter — identifier for the document"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_a_compliance_document_project_v1_03 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"identifier for the commitment contract"New value: +"URL path parameter — identifier for the commitment contract"
      • changedInput schema / properties / id / description
        Previous value: -"identifier for the document"New value: +"URL path parameter — identifier for the document"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addeddelete_a_coordination_issue_rest_v2_0
    • Removeddelete_a_coordination_issue_rest_v2_0_v2_0
    • Changeddelete_a_crew6 fields changed
      • changedInput schema / properties / equipment_ids / description
        Previous value: -"equipment_ids"New value: +"JSON request body field — array of equipment identifiers"
      • changedInput schema / properties / id / description
        Previous value: -"Id of the Crew"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / lead_party_id / description
        Previous value: -"Party Id of crew leader"New value: +"JSON request body field — party Id of crew leader"
      • changedInput schema / properties / name / description
        Previous value: -"Crew Name"New value: +"JSON request body field — crew Name"
      • changedInput schema / properties / party_ids / description
        Previous value: -"party_ids"New value: +"JSON request body field — array of party identifiers"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_a_direct_cost_line_item3 fields changed
      • changedInput schema / properties / direct_cost_id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the direct cost"
      • changedInput schema / properties / id / description
        Previous value: -"Direct Cost Line Item ID"New value: +"URL path parameter — direct Cost Line Item ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_a_drawing_area2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Unique identifier for the drawing area."New value: +"URL path parameter — unique identifier for the drawing area."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removeddelete_a_drawing_area_v1_1
    • Changeddelete_a_equipment_type2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the company to get the types for"New value: +"URL path parameter — iD of the company to get the types for"
    • Changeddelete_a_job_title2 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / job_title_id / description
        Previous value: -"Unique identifier for the Job Title."New value: +"URL path parameter — unique identifier for the Job Title."
    • Addeddelete_a_line_item_group_from_the_proposal_company
    • Addeddelete_a_line_item_group_from_the_proposal_project
    • Removeddelete_a_line_item_group_from_the_proposal_v2_0_company
    • Removeddelete_a_line_item_group_from_the_proposal_v2_0_project
    • Addeddelete_a_link
    • Removeddelete_a_link_v2_0
    • Addeddelete_a_maintenance_record_by_id
    • Addeddelete_a_maintenance_record_by_id_project
    • Removeddelete_a_maintenance_record_by_id_project_v2_0
    • Removeddelete_a_maintenance_record_by_id_v2_0
    • Changeddelete_a_manual_forecast_line_item4 fields changed
      • changedInput schema / properties / budget_line_item_id / description
        Previous 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"
      • changedInput schema / properties / id / description
        Previous value: -"Unique identifier for the manual forecast line item."New value: +"URL path parameter — unique identifier for the manual forecast line item."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / wbs_code_id / description
        Previous 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"
    • Addeddelete_a_note_from_the_project_company
    • Addeddelete_a_note_from_the_project_company_v2_0
    • Removeddelete_a_note_from_the_project_v2_0_company
    • Removeddelete_a_note_from_the_project_v2_0_company_v2_0
    • Changeddelete_a_payment_application_owner_invoice2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Payment Application (Owner Invoice) ID"New value: +"URL path parameter — payment Application (Owner Invoice) ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_a_person2 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / person_id / description
        Previous value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person"
    • Changeddelete_a_prime_contract_line_item3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Line Item ID"New value: +"URL path parameter — unique identifier of the Prime Contracts resource"
      • changedInput schema / properties / prime_contract_id / description
        Previous value: -"Prime Contract ID"New value: +"URL path parameter — unique identifier of the prime contract"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Addeddelete_a_proposal_from_the_project_company
    • Addeddelete_a_proposal_from_the_project_company_v2_0
    • Removeddelete_a_proposal_from_the_project_v2_0_company
    • Removeddelete_a_proposal_from_the_project_v2_0_company_v2_0
    • Changeddelete_a_resource_planning_tag2 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / tag_id / description
        Previous value: -"Unique identifier for the tag."New value: +"URL path parameter — unique identifier for the tag."
    • Changeddelete_a_resource_request2 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / request_id / description
        Previous value: -"Unique identifier for the Resource Request."New value: +"URL path parameter — unique identifier for the Resource Request."
    • Changeddelete_a_response2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"The ID of the Response"New value: +"URL path parameter — the ID of the Response"
    • Changeddelete_a_signature2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
    • Changeddelete_a_single_group2 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / group_id / description
        Previous value: -"Unique identifier for the group"New value: +"URL path parameter — unique identifier for the group"
    • Changeddelete_a_single_project2 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project"
    • Changeddelete_a_task_item_comment3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Task Item Comment ID"New value: +"URL path parameter — task Item Comment ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_a_time_and_material_attachment2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the time and material attachment"New value: +"URL path parameter — iD of the time and material attachment"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_a_time_and_material_entry2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Id of Time And Material Entry"New value: +"URL path parameter — id of Time And Material Entry"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_a_time_and_material_equipment_log2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Id of the Time And Material Equipment Log"New value: +"URL path parameter — id of the Time And Material Equipment Log"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_a_time_and_material_notification1 field changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_a_time_off_record3 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / person_id / description
        Previous value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person"
      • changedInput schema / properties / time_off_id / description
        Previous value: -"The UUID of the Time Off record."New value: +"URL path parameter — the UUID of the Time Off record."
    • Changeddelete_accident_log2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Accident log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_action_plan2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan ID"New value: +"URL path parameter — unique identifier of the Action Plans resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_action_plan_approver_signature2 fields changed
      • changedInput schema / properties / plan_approver_id / description
        Previous value: -"Action Plan Approver ID"New value: +"URL path parameter — action Plan Approver ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_action_plan_item2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Item ID"New value: +"URL path parameter — unique identifier of the Action Plans resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_action_plan_item_assignee2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Item Assignee ID"New value: +"URL path parameter — action Plan Item Assignee ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_action_plan_item_assignee_signature2 fields changed
      • changedInput schema / properties / plan_item_assignee_id / description
        Previous value: -"Action Plan Item Assignee ID"New value: +"URL path parameter — action Plan Item Assignee ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_action_plan_receiver_signature2 fields changed
      • changedInput schema / properties / plan_receiver_id / description
        Previous value: -"Action Plan Receiver ID"New value: +"URL path parameter — action Plan Receiver ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_action_plan_reference2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Reference ID"New value: +"URL path parameter — action Plan Reference ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_action_plan_section2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Section ID"New value: +"URL path parameter — action Plan Section ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_action_plan_template_approver2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Template Approver ID"New value: +"URL path parameter — action Plan Template Approver ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_action_plan_template_receiver2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Template Receiver ID"New value: +"URL path parameter — action Plan Template Receiver ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_action_plan_test_record2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Test Record ID"New value: +"URL path parameter — action Plan Test Record ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_action_plan_test_record_request2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Test Record Request ID"New value: +"URL path parameter — test Record Request ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_action_plan_verification_method2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Verification Method ID"New value: +"URL path parameter — action Plan Verification Method ID"
    • Changeddelete_actual_production_quantity2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_affliction_type2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Affliction Type ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
    • Changeddelete_an_equipment2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Id of the equipment"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_an_equipment_make2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the equipment make"New value: +"URL path parameter — iD of the equipment make"
    • Changeddelete_an_equipment_model2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the company to get the models for"New value: +"URL path parameter — iD of the company to get the models for"
    • Addeddelete_an_estimate_line_item_from_the_proposal_company
    • Addeddelete_an_estimate_line_item_from_the_proposal_project
    • Removeddelete_an_estimate_line_item_from_the_proposal_v2_0_company
    • Removeddelete_an_estimate_line_item_from_the_proposal_v2_0_project
    • Changeddelete_an_inspection_item_attachment3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Item Attachment ID"New value: +"URL path parameter — unique identifier of the Inspections resource"
      • changedInput schema / properties / inspection_id / description
        Previous value: -"Unique identifier for the inspection."New value: +"URL path parameter — unique identifier for the inspection."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_an_project_equipment_log2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the company to get the logs for"New value: +"URL path parameter — iD of the company to get the logs for"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_an_rfi_response3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Reply ID"New value: +"URL path parameter — unique identifier of the RFI resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / rfi_id / description
        Previous value: -"RFI ID"New value: +"URL path parameter — unique identifier of the rfi"
    • Changeddelete_app_configuration2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"App Configuration ID"New value: +"URL path parameter — app Configuration ID"
    • Changeddelete_attachment3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Attachment ID"New value: +"URL path parameter — unique identifier of the Inspections resource"
      • changedInput schema / properties / list_id / description
        Previous value: -"Checklist (Inspection) ID"New value: +"URL path parameter — checklist (Inspection) ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addeddelete_bid_board_project
    • Removeddelete_bid_board_project_v2_0
    • Changeddelete_bid_form3 fields changed
      • changedInput schema / properties / bid_form_id / description
        Previous value: -"Bid Form ID"New value: +"URL path parameter — unique identifier of the bid form"
      • changedInput schema / properties / bid_package_id / description
        Previous value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_bid_form_item3 fields changed
      • changedInput schema / properties / bid_form_item_id / description
        Previous value: -"Bid Form Item ID"New value: +"URL path parameter — unique identifier of the bid form item"
      • changedInput schema / properties / bid_package_id / description
        Previous value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_bid_form_section3 fields changed
      • changedInput schema / properties / bid_form_section_id / description
        Previous value: -"Bid Form Section ID"New value: +"URL path parameter — unique identifier of the bid form section"
      • changedInput schema / properties / bid_package_id / description
        Previous value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_billing_period2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Billing Period ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_bim_file2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"BIM File ID"New value: +"URL path parameter — unique identifier of the BIM resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_bim_level2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"BIM Level ID"New value: +"URL path parameter — unique identifier of the BIM resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_bim_model2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"BIM Model ID"New value: +"URL path parameter — unique identifier of the BIM resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_bim_model_revision2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"BIM Model Revision ID"New value: +"URL path parameter — bIM Model Revision ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_bim_model_revision_plan2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"BIM Model Revision Plan ID"New value: +"URL path parameter — bIM Model Revision Plan ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_bim_model_revision_viewpoint2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Bim Model Revision Viewpoint ID"New value: +"URL path parameter — bim Model Revision Viewpoint ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_bim_plan2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"BIM Plan ID"New value: +"URL path parameter — unique identifier of the BIM resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Addeddelete_budget_line_item
    • Removeddelete_budget_line_item_v2_0
    • Changeddelete_budget_lock2 fields changed
      • changedInput schema / properties / destroy_all_budget_line_item_transfers / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_budget_modification2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Budget resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_bulk_coordination_issues2 fields changed
      • changedInput schema / properties / deletes / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changeddelete_calendar_item2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Calendar Item ID"New value: +"URL path parameter — unique identifier of the Schedule (Legacy) resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_call_log2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Call log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addeddelete_catalog
    • Removeddelete_catalog_v2_0
    • Changeddelete_category3 fields changed
      • changedInput schema / properties / category_id / description
        Previous value: -"Unique identifier for the Category."New value: +"URL path parameter — unique identifier for the Category."
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project"
    • Addeddelete_change_event
    • Changeddelete_change_event_production_quantity3 fields changed
      • changedInput schema / properties / change_event_id / description
        Previous value: -"Unique identifier for the Change Event"New value: +"URL path parameter — unique identifier for the Change Event"
      • changedInput schema / properties / id / description
        Previous value: -"Change Event Production Quantity ID"New value: +"URL path parameter — change Event Production Quantity ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removeddelete_change_event_v1_1
    • Changeddelete_checklist2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the Inspections resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_checklist_inspection2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the Inspections resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removeddelete_checklist_inspection_v1_1
    • Changeddelete_checklist_inspections_item_attachment2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Item ID"New value: +"URL path parameter — unique identifier of the Inspections resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_checklist_item_response2 fields changed
      • changedInput schema / properties / item_id / description
        Previous value: -"Checklist Item ID"New value: +"URL path parameter — unique identifier of the item"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_checklist_schedule2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Checklist Schedule ID"New value: +"URL path parameter — checklist Schedule ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_checklist_schedule_attachment3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Checklist Schedule Attachment ID"New value: +"URL path parameter — checklist Schedule Attachment ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / schedule_id / description
        Previous value: -"Checklist Schedule ID"New value: +"URL path parameter — checklist Schedule ID"
    • Changeddelete_checklist_section3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Checklist Section ID"New value: +"URL path parameter — checklist Section ID"
      • changedInput schema / properties / list_id / description
        Previous value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_checklist_signature3 fields changed
      • changedInput schema / properties / list_id / description
        Previous value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / signature_request_id / description
        Previous value: -"Checklist Signature Request ID"New value: +"URL path parameter — checklist Signature Request ID"
    • Changeddelete_checklist_signature_request3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Signature Request ID"New value: +"URL path parameter — signature Request ID"
      • changedInput schema / properties / list_id / description
        Previous value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_classification2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Id of the Classification"New value: +"URL path parameter — id of the Classification"
    • Changeddelete_commitment_change_order2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Commitment Change Order"New value: +"URL path parameter — iD of the Commitment Change Order"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_commitment_change_order_batch2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Commitment Change Order Batch"New value: +"URL path parameter — iD of the Commitment Change Order Batch"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addeddelete_commitment_change_order_line_item
    • Removeddelete_commitment_change_order_line_item_v2_0
    • Addeddelete_commitment_contract
    • Addeddelete_commitment_contract_line_item
    • Removeddelete_commitment_contract_line_item_v2_0
    • Removeddelete_commitment_contract_v2_0
    • Changeddelete_company_action_plan_template_item_assignee2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Assignee ID"New value: +"URL path parameter — unique identifier of the Action Plans resource"
    • Changeddelete_company_action_plan_template_reference2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Reference ID"New value: +"URL path parameter — unique identifier of the Action Plans resource"
    • Changeddelete_company_action_plan_template_test_record_request2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Company Action Plan Template Test Record Request ID"New value: +"URL path parameter — company Action Plan Template Test Record Request ID"
    • Changeddelete_company_action_plan_type2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Company Action Plan Type ID"New value: +"URL path parameter — company Action Plan Type ID"
    • Changeddelete_company_checklist_section2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Company Checklist Section ID"New value: +"URL path parameter — company Checklist Section ID"
    • Changeddelete_company_checklist_template2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Company Checklist Template ID"New value: +"URL path parameter — company Checklist Template ID"
    • Changeddelete_company_currency_configuration1 field changed
      • changedInput schema / properties / company_id / description
        Previous value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company"
    • Changeddelete_company_file2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the File"New value: +"URL path parameter — unique identifier of the Documents resource"
    • Changeddelete_company_folder2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Folder"New value: +"URL path parameter — unique identifier of the Documents resource"
    • Changeddelete_company_form_template2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Company Form Template ID"New value: +"URL path parameter — company Form Template ID"
    • Changeddelete_company_inspection_template_item3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Company Inspection Template Item ID"New value: +"URL path parameter — company Inspection Template Item ID"
      • changedInput schema / properties / inspection_template_id / description
        Previous value: -"The ID of the Company Inspection Template"New value: +"URL path parameter — the ID of the Company Inspection Template"
    • Changeddelete_company_inspection_template_item_reference3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"The ID of the Company Inspection Template Item Reference"New value: +"URL path parameter — the ID of the Company Inspection Template Item Reference"
      • changedInput schema / properties / inspection_template_id / description
        Previous value: -"The ID of the Company Inspection Template"New value: +"URL path parameter — the ID of the Company Inspection Template"
    • Changeddelete_company_insurance2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Directory resource"
    • Changeddelete_company_logo1 field changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
    • Addeddelete_company_role
    • Removeddelete_company_role_v2_0
    • Changeddelete_company_segment_item3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Segment Item ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource"
      • changedInput schema / properties / segment_id / description
        Previous value: -"Segment ID"New value: +"URL path parameter — unique identifier of the segment"
    • Changeddelete_company_vendor_insurance3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / vendor_id / description
        Previous value: -"Vendor ID"New value: +"URL path parameter — unique identifier of the vendor"
    • Addeddelete_company_webhooks_hook
    • Removeddelete_company_webhooks_hook_v2_0
    • Addeddelete_company_webhooks_trigger
    • Removeddelete_company_webhooks_trigger_v2_0
    • Changeddelete_configurable_field_set2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Configurable Field Set ID"New value: +"URL path parameter — configurable Field Set ID"
    • Changeddelete_context_by_id4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / context_id / description
        Previous value: -"context_id"New value: +"URL path parameter — unique identifier of the context"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
      • changedInput schema / properties / skip_resource_deletion / description
        Previous value: -"skip_resource_deletion"New value: +"Query string parameter — skip_resource_deletion"
    • Changeddelete_context_by_query_parameters7 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / context_type / description
        Previous value: -"context_type"New value: +"Query string parameter — the context type for this Document Markup operation"
      • changedInput schema / properties / context_type_id / description
        Previous value: -"context_type_id"New value: +"Query string parameter — unique identifier of the context type"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
      • changedInput schema / properties / skip_resource_deletion / description
        Previous value: -"skip_resource_deletion"New value: +"Query string parameter — skip_resource_deletion"
      • changedInput schema / properties / sub_context_type / description
        Previous value: -"sub_context_type"New value: +"Query string parameter — the sub context type for this Document Markup operation"
      • changedInput schema / properties / sub_context_type_id / description
        Previous value: -"sub_context_type_id"New value: +"Query string parameter — unique identifier of the sub context type"
    • Changeddelete_contract_payment3 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"ID of the Contract"New value: +"Query string parameter — unique identifier of the contract"
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_contributing_behavior2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Contributing Behavior ID"New value: +"URL path parameter — contributing Behavior ID"
    • Changeddelete_contributing_condition2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Contributing Condition ID"New value: +"URL path parameter — contributing Condition ID"
    • Changeddelete_coordination_issue2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_coordination_issue_attachment3 fields changed
      • changedInput schema / properties / coordination_issue_id / description
        Previous value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID"
      • changedInput schema / properties / id / description
        Previous value: -"Attachment ID"New value: +"URL path parameter — unique identifier of the Coordination Issues resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Addeddelete_coordination_issue_workflow_issue
    • Removeddelete_coordination_issue_workflow_issue_v2_0
    • Addeddelete_cost_item
    • Removeddelete_cost_item_v2_0
    • Addeddelete_cost_items
    • Removeddelete_cost_items_v2_0
    • Changeddelete_custom_field2 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / field_id / description
        Previous value: -"UUID of the Custom Field."New value: +"URL path parameter — uUID of the Custom Field."
    • Changeddelete_daily_construction_report_log2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Daily Construction Report Log ID"New value: +"URL path parameter — daily Construction Report Log ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_delay_log2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Delay log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_delivery_log2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Delivery Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_department2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Department ID"New value: +"URL path parameter — unique identifier of the Directory resource"
    • Changeddelete_direct_cost_item2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Direct Costs resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removeddelete_direct_cost_item_v1_1
    • Changeddelete_document_custom_tag3 fields changed
      • changedInput schema / properties / document_id / description
        Previous 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"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Custom Tag"New value: +"URL path parameter — iD of the Custom Tag"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_drawing_set2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the drawing set"New value: +"URL path parameter — iD of the drawing set"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_drawing_upload4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the drawing upload"New value: +"URL path parameter — unique identifier of the Drawings resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • addedInput schema / properties / view
        Added 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"
        +}
      • changedInput schema / required
        Previous value: -[
        -  "project_id",
        -  "id"
        -]New value: +[
        +  "id",
        +  "project_id"
        +]
    • Removeddelete_drawing_upload_v1_1
    • Changeddelete_dumpster_log2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Dumpster Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_equipment2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Id of the Equipment"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
    • Addeddelete_equipment_attachment_company
    • Removeddelete_equipment_attachment_company_v2_0
    • Addeddelete_equipment_attachment_project
    • Removeddelete_equipment_attachment_project_v2_0
    • Changeddelete_equipment_category2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Equipment Category"New value: +"URL path parameter — iD of the Equipment Category"
    • Addeddelete_equipment_category_company
    • Removeddelete_equipment_category_company_v2_0
    • Addeddelete_equipment_company
    • Removeddelete_equipment_company_v2_0
    • Changeddelete_equipment_log2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Equipment Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_equipment_maintenance_log2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the company to get the makes for"New value: +"URL path parameter — iD of the company to get the makes for"
    • Addeddelete_equipment_make_company
    • Removeddelete_equipment_make_company_v2_0
    • Addeddelete_equipment_model_company
    • Removeddelete_equipment_model_company_v2_0
    • Addeddelete_equipment_status_company
    • Removeddelete_equipment_status_company_v2_0
    • Changeddelete_equipment_timecard_entry_project3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the equipment timecard entry"New value: +"URL path parameter — iD of the equipment timecard entry"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addeddelete_equipment_type_company
    • Removeddelete_equipment_type_company_v2_0
    • Changeddelete_form2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Form ID"New value: +"URL path parameter — unique identifier of the Forms resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_from_project2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the vendor"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removeddelete_from_project_v1_1
    • Changeddelete_generic_tool_item4 fields changed
      • changedInput schema / properties / generic_tool_id / description
        Previous value: -"Unique identifier for the Generic Tool"New value: +"URL path parameter — unique identifier for the Generic Tool"
      • changedInput schema / properties / generic_tool_item_id / description
        Previous value: -"Unique identifier for the Generic Tool Item"New value: +"URL path parameter — unique identifier for the Generic Tool Item"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous value: -"If supplied customize the response format"New value: +"Query string parameter — if supplied customize the response format"
    • Changeddelete_generic_tool_status3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / generic_tool_id / description
        Previous value: -"Unique identifier for the Generic Tool"New value: +"URL path parameter — unique identifier for the Generic Tool"
      • changedInput schema / properties / id / description
        Previous value: -"Unique identifier for the Status"New value: +"URL path parameter — unique identifier for the Status"
    • Changeddelete_group4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / delete_resources / description
        Previous value: -"delete_resources"New value: +"Query string parameter — the delete resources for this Document Markup operation"
      • changedInput schema / properties / group_id / description
        Previous value: -"group_id"New value: +"URL path parameter — unique identifier of the group"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
    • Changeddelete_harm_source2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Harm Source ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
    • Changeddelete_hazard2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Hazard ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
    • Changeddelete_image3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the image"New value: +"URL path parameter — unique identifier of the Photos resource"
      • changedInput schema / properties / permanent / description
        Previous value: -"If true, permanently deletes the image."New value: +"Query string parameter — if true, permanently deletes the image."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_image_category2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the image category"New value: +"URL path parameter — iD of the image category"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_incident2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Incident ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_incident_action_type2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Incident Action Type ID"New value: +"URL path parameter — incident Action Type ID"
    • Changeddelete_incident_alert_recipient3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Incident Alert Recipient's User ID"New value: +"URL path parameter — incident Alert Recipient's User ID"
      • changedInput schema / properties / severity_level_id / description
        Previous value: -"Incident Severity Level ID"New value: +"URL path parameter — incident Severity Level ID"
    • Changeddelete_inspection_log2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Inspection Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_inspection_type2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Inspection Type ID"New value: +"URL path parameter — unique identifier of the Inspections resource"
    • Changeddelete_instruction2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Instruction ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_instruction_type2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Instruction ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_item_response_set2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Item Response Set ID"New value: +"URL path parameter — item Response Set ID"
    • Changeddelete_layer3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / layer_id / description
        Previous value: -"layer_id"New value: +"URL path parameter — unique identifier of the layer"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
    • Changeddelete_link2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Link ID"New value: +"URL path parameter — unique identifier of the Project-Level Configuration resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_location2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the location"New value: +"URL path parameter — unique identifier of the Project resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_lookahead2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Lookahead ID"New value: +"URL path parameter — unique identifier of the Schedule (Legacy) resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_lookahead_task2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Lookahead Task ID"New value: +"URL path parameter — unique identifier of the Schedule (Legacy) resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removeddelete_lookahead_v1_1
    • Changeddelete_managed_equipment_attachment3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Id of the Managed Equipment Attachment"New value: +"URL path parameter — id of the Managed Equipment Attachment"
      • changedInput schema / properties / managed_equipment_id / description
        Previous value: -"Id of the Equipment"New value: +"URL path parameter — unique identifier of the managed equipment"
    • Changeddelete_managed_equipment_maintenance_log_attachment3 fields changed
      • changedInput schema / properties / attachment_id / description
        Previous value: -"ID of the managed equipment maintenance log attachment"New value: +"URL path parameter — iD of the managed equipment maintenance log attachment"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous 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"
    • Changeddelete_manpower_log2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Manpower Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_markups4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / markups / description
        Previous value: -"markups"New value: +"JSON request body field — the markups for this Document Markup operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
      • changedInput schema / properties / viewer_doc_id / description
        Previous value: -"viewer_doc_id"New value: +"URL path parameter — unique identifier of the viewer doc"
    • Changeddelete_material2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the project"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removeddelete_meeting
    • Changeddelete_meeting_attendee_record3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Meeting Attendee record"New value: +"URL path parameter — iD of the Meeting Attendee record"
      • changedInput schema / properties / meeting_id / description
        Previous value: -"ID of the Meeting"New value: +"Query string parameter — unique identifier of the meeting"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Addeddelete_meeting_category
    • Removeddelete_meeting_category_v2_0
    • Addeddelete_meeting_project
    • Addeddelete_meeting_v1_0
    • Removeddelete_meeting_v1_1
    • Changeddelete_monitoring_resource2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Monitoring Resource ID"New value: +"URL path parameter — monitoring Resource ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_multiple_signatures2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / time_and_material_signature_ids / description
        Previous value: -"time_and_material_signature_ids"New value: +"JSON request body field — time_and_material_signature_ids"
    • Changeddelete_notes_log2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Notes Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_observation_item2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Observation ID"New value: +"URL path parameter — unique identifier of the Observations resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_payout4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / deletedReason / description
        Previous value: -"Reason for deleting the payout"New value: +"JSON request body field — reason for deleting the payout"
      • changedInput schema / properties / disbursement_id / description
        Previous value: -"Unique identifier for the disbursement."New value: +"URL path parameter — unique identifier for the disbursement."
      • changedInput schema / properties / payout_id / description
        Previous value: -"Unique identifier for the payout."New value: +"URL path parameter — unique identifier for the payout."
    • Changeddelete_pdf_template_config2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"PDF Template Configs ID"New value: +"URL path parameter — pDF Template Configs ID"
    • Changeddelete_plan_revision_log2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Plan Revision Log ID"New value: +"URL path parameter — plan Revision Log ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_potential_change_order_line_item3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Change Orders resource"
      • changedInput schema / properties / potential_change_order_id / description
        Previous value: -"Potential Change Order ID"New value: +"URL path parameter — potential Change Order ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_prime_change_order2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Prime Change Order"New value: +"URL path parameter — iD of the Prime Change Order"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_prime_change_order_batch2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Prime Change Order Batch"New value: +"URL path parameter — iD of the Prime Change Order Batch"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addeddelete_prime_change_order_line_item
    • Removeddelete_prime_change_order_line_item_v2_0
    • Removeddelete_prime_contract
    • Addeddelete_prime_contract_line_item
    • Removeddelete_prime_contract_line_item_v2_0
    • Addeddelete_prime_contract_project
    • Addeddelete_prime_contract_v1_0
    • Removeddelete_prime_contract_v2_0
    • Changeddelete_procore_item_association4 fields changed
      • changedInput schema / properties / coordination_issue_id / description
        Previous value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID"
      • changedInput schema / properties / id / description
        Previous value: -"Procore Item Association ID"New value: +"URL path parameter — procore Item Association ID"
      • changedInput schema / properties / item_type / description
        Previous value: -"Type of Procore item"New value: +"Query string parameter — type of Procore item"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_productivity_log2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Productivity Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_program2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the program"New value: +"URL path parameter — unique identifier of the Company Settings resource"
    • Changeddelete_project_action_plan_template_reference2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Project Action Plan Template Reference ID"New value: +"URL path parameter — project Action Plan Template Reference ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_project_bid_type2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Project Bid Type"New value: +"URL path parameter — iD of the Project Bid Type"
    • Changeddelete_project_checklist_template2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Checklist Template ID"New value: +"URL path parameter — checklist Template ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_project_currency_configuration2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / project_id / description
        Previous value: -"ID of the project"New value: +"URL path parameter — unique identifier for the Procore project"
    • Changeddelete_project_distribution_group2 fields changed
      • changedInput schema / properties / distribution_group_id / description
        Previous value: -"Unique identifier for the distribution group."New value: +"URL path parameter — unique identifier for the distribution group."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_project_equipment_maintenance_log2 fields changed
      • changedInput schema / properties / id / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_project_file2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the File"New value: +"URL path parameter — unique identifier of the Documents resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_project_folder2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the folder"New value: +"URL path parameter — unique identifier of the Documents resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_project_inspection_template_item_reference3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"The ID of the Project Inspection Template Item Reference"New value: +"URL path parameter — the ID of the Project Inspection Template Item Reference"
      • changedInput schema / properties / inspection_template_id / description
        Previous value: -"The ID of the Project Inspection Template"New value: +"URL path parameter — the ID of the Project Inspection Template"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_project_insurance3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous value: -"Extended view of data"New value: +"Query string parameter — extended view of data"
    • Changeddelete_project_location2 fields changed
      • changedInput schema / properties / location_id / description
        Previous value: -"ID of the location"New value: +"URL path parameter — unique identifier of the location"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removeddelete_project_location_v1_1
    • Changeddelete_project_membership3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"The ID of the Project Membership"New value: +"URL path parameter — the ID of the Project Membership"
      • changedInput schema / properties / party_id / description
        Previous value: -"The ID of the Party (reference user)"New value: +"Query string parameter — the ID of the Party (reference user)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_project_observation_type2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Project Observation Type ID"New value: +"URL path parameter — project Observation Type ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_project_owner_type2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Project Owner Type"New value: +"URL path parameter — iD of the Project Owner Type"
    • Changeddelete_project_region2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Project Region"New value: +"URL path parameter — iD of the Project Region"
    • Changeddelete_project_role2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Project Role"New value: +"URL path parameter — iD of the Project Role"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_project_segment_item4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Segment Item ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / segment_id / description
        Previous value: -"Segment ID"New value: +"URL path parameter — unique identifier of the segment"
      • changedInput schema / properties / sub_job_id / description
        Previous 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)"
    • Changeddelete_project_stage2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the project stage"New value: +"URL path parameter — iD of the project stage"
    • Addeddelete_project_task_company
    • Addeddelete_project_task_company_v2_0
    • Removeddelete_project_task_v2_0_company
    • Removeddelete_project_task_v2_0_company_v2_0
    • Changeddelete_project_type2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the project type"New value: +"URL path parameter — iD of the project type"
    • Changeddelete_project_vendor_insurance4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / vendor_id / description
        Previous value: -"Vendor ID"New value: +"URL path parameter — unique identifier of the vendor"
      • changedInput schema / properties / view / description
        Previous value: -"Extended view of data"New value: +"Query string parameter — extended view of data"
    • Addeddelete_project_webhooks_hook
    • Removeddelete_project_webhooks_hook_v2_0
    • Addeddelete_project_webhooks_trigger
    • Removeddelete_project_webhooks_trigger_v2_0
    • Changeddelete_punch_item2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Punch Item"New value: +"URL path parameter — iD of the Punch Item"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_punch_item_type2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Punch Item Type"New value: +"URL path parameter — iD of the Punch Item Type"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Removeddelete_punch_item_v1_1
    • Changeddelete_purchase_order_contract2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_purchase_order_contract_detail_line_item3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / purchase_order_contract_id / description
        Previous value: -"Purchase Order Contract ID"New value: +"URL path parameter — purchase Order Contract ID"
    • Changeddelete_purchase_order_contract_line_item3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / purchase_order_contract_id / description
        Previous value: -"Purchase Order Contract ID"New value: +"URL path parameter — purchase Order Contract ID"
    • Changeddelete_quantity_log2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Quantity Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addeddelete_requisition_compliance_document
    • Removeddelete_requisition_compliance_document_v2_0
    • Changeddelete_requisition_subcontractor_invoice2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Removeddelete_requisition_subcontractor_invoice_v1_1
    • Removeddelete_resource
    • Addeddelete_resource_project
    • Addeddelete_resource_v1_0
    • Removeddelete_resource_v1_1
    • Changeddelete_rfq3 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"Contract ID"New value: +"Query string parameter — unique identifier of the contract"
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_rounding_configuration1 field changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
    • Changeddelete_safety_violation_log2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Safety Violation Log ID"New value: +"URL path parameter — safety Violation Log ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_signature_project2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Signature ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_signature_project_v1_02 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Signature ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addeddelete_specification_area
    • Removeddelete_specification_area_v2_1
    • Changeddelete_stamp3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — the unique identifier of the company"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — the unique identifier of the project"
      • changedInput schema / properties / stamp_id / description
        Previous value: -"stamp_id"New value: +"URL path parameter — the unique identifier of the stamp to delete"
    • Removeddelete_stamp_v2_0
    • Changeddelete_standard_cost_code2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource"
    • Changeddelete_sub_job2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_subcategory4 fields changed
      • changedInput schema / properties / category_id / description
        Previous value: -"Unique identifier for the Category."New value: +"URL path parameter — unique identifier for the Category."
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project"
      • changedInput schema / properties / subcategory_id / description
        Previous value: -"Unique identifier for the Subcategory."New value: +"URL path parameter — unique identifier for the Subcategory."
    • Addeddelete_submittal
    • Removeddelete_submittal_v1_1
    • Changeddelete_task2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the task"New value: +"URL path parameter — unique identifier of the Schedule (Legacy) resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_tax_type2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"The Tax Type ID"New value: +"URL path parameter — unique identifier of the Tax resource"
    • Changeddelete_the_project_logo1 field changed
      • changedInput schema / properties / id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_time_and_material_timecard2 fields changed
      • changedInput schema / properties / id / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_timecard_entries2 fields changed
      • changedInput schema / properties / ids / description
        Previous value: -"IDs of Timesheets to be deleted"New value: +"JSON request body field — iDs of Timesheets to be deleted"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_timecard_entry2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the timecard entry"New value: +"URL path parameter — iD of the timecard entry"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_timecard_entry_company2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the timecard entry"New value: +"URL path parameter — iD of the timecard entry"
    • Changeddelete_timecard_entry_project2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the timecard entry"New value: +"URL path parameter — iD of the timecard entry"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addeddelete_timeline_event
    • Removeddelete_timeline_event_v2_0
    • Changeddelete_timesheet2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_timesheet_to_budget_configuration1 field changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
    • Changeddelete_todo2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the todo"New value: +"URL path parameter — unique identifier of the Schedule (Legacy) resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_unit_of_measure2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Unit of Measure ID"New value: +"URL path parameter — unique identifier of the Units of Measure resource"
    • Changeddelete_viewpoint_and_procore_item_association4 fields changed
      • changedInput schema / properties / bim_viewpoint_id / description
        Previous value: -"BIM Viewpoint ID"New value: +"URL path parameter — unique identifier of the bim viewpoint"
      • changedInput schema / properties / item_id / description
        Previous value: -"Procore Item ID"New value: +"Query string parameter — unique identifier of the item"
      • changedInput schema / properties / item_type / description
        Previous value: -"Procore Item Type"New value: +"Query string parameter — procore Item Type"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_visitor_log2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Visitor Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_wage_override3 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project"
      • changedInput schema / properties / wage_override_id / description
        Previous value: -"Unique identifier for the Wage Override."New value: +"URL path parameter — unique identifier for the Wage Override."
    • Changeddelete_waste_log2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Waste Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addeddelete_wbs_attribute_item
    • Removeddelete_wbs_attribute_item_v2_0
    • Addeddelete_wbs_attributes
    • Removeddelete_wbs_attributes_v2_0
    • Changeddelete_wbs_segment3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource"
      • changedInput schema / properties / segment_item_list_id / description
        Previous value: -"Segment Item List ID"New value: +"Query string parameter — segment Item List ID"
    • Removeddelete_weather_log
    • Addeddelete_weather_log_project
    • Addeddelete_weather_log_project_v1_0
    • Removeddelete_weather_log_v1_1
    • Changeddelete_webhooks_hook3 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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."
      • changedInput schema / properties / id / description
        Previous value: -"Webhooks Hook ID"New value: +"URL path parameter — unique identifier of the Webhooks resource"
      • changedInput schema / properties / project_id / description
        Previous 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."
    • Changeddelete_webhooks_trigger4 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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."
      • changedInput schema / properties / hook_id / description
        Previous value: -"Webhooks Hook ID"New value: +"URL path parameter — unique identifier of the hook"
      • changedInput schema / properties / id / description
        Previous value: -"Webhooks Trigger ID"New value: +"URL path parameter — unique identifier of the Webhooks resource"
      • changedInput schema / properties / project_id / description
        Previous 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."
    • Changeddelete_work_activity2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Work Activity ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
    • Changeddelete_work_log2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Work Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddelete_work_order_contract2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddelete_work_order_contract_detail_line_item3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / work_order_contract_id / description
        Previous value: -"Work Order Contract ID"New value: +"URL path parameter — work Order Contract ID"
    • Changeddelete_work_order_contract_line_item3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / work_order_contract_id / description
        Previous value: -"Work Order Contract ID"New value: +"URL path parameter — work Order Contract ID"
    • Addeddeletes_an_inspection_item_signature
    • Addeddeletes_an_inspection_item_signature_request
    • Removeddeletes_an_inspection_item_signature_request_v2_0
    • Removeddeletes_an_inspection_item_signature_v2_0
    • Changeddestroy_action3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddestroy_environmental3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Environmental ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddestroy_injury3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Injury ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddestroy_near_miss3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Near Miss ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddestroy_property_damage3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Property Damage ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddestroy_task_item2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Task Item ID"New value: +"URL path parameter — unique identifier of the Tasks resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changeddestroy_witness_statement3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Witness Statement ID"New value: +"URL path parameter — witness Statement ID"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddisable_payments2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / projectIds / description
        Previous value: -"projectIds"New value: +"JSON request body field — the projectids for this Payments operation"
    • Addeddisassociate_equipment_with_project_company
    • Removeddisassociate_equipment_with_project_company_v2_0
    • Addeddisassociate_equipment_with_project_project
    • Removeddisassociate_equipment_with_project_project_v2_0
    • Changeddocument_markup_permissions4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
    • Changeddownload_all_company_level_email_attachments5 fields changed
      • changedInput schema / properties / communication_id / description
        Previous value: -"Communication ID"New value: +"URL path parameter — unique identifier of the communication"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / email_id / description
        Previous value: -"Email ID"New value: +"URL path parameter — unique identifier of the email"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changeddownload_all_email_attachments5 fields changed
      • changedInput schema / properties / communication_id / description
        Previous value: -"Communication ID"New value: +"URL path parameter — unique identifier of the communication"
      • changedInput schema / properties / email_id / description
        Previous value: -"Email ID"New value: +"URL path parameter — unique identifier of the email"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changeddownload_coordination_issues19 fields changed
      • changedInput schema / properties / column_state / description
        Previous 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 ..."
      • changedInput schema / properties / export_format / description
        Previous value: -"Export File Format."New value: +"Query string parameter — export File Format."
      • changedInput schema / properties / filters__assignee_company_id__ / description
        Previous value: -"Filter item(s) with matching assignee vendor companies."New value: +"Query string parameter — filter item(s) with matching assignee vendor companies."
      • changedInput schema / properties / filters__assignee_id__ / description
        Previous value: -"Filter item(s) with matching assignees."New value: +"Query string parameter — filter item(s) with matching assignees."
      • changedInput schema / properties / filters__coordination_issue_file_id__ / description
        Previous value: -"Filter item(s) with the exact coordination issue file."New value: +"Query string parameter — filter item(s) with the exact coordination issue file."
      • changedInput schema / properties / filters__ids__ / description
        Previous value: -"Filter item(s) with matching ids."New value: +"Query string parameter — filter item(s) with matching ids."
      • changedInput schema / properties / filters__issue_type__ / description
        Previous value: -"Filter item(s) with matching issue_type."New value: +"Query string parameter — filter item(s) with matching issue_type."
      • changedInput schema / properties / filters__location_id__ / description
        Previous value: -"Filter item(s) with matching locations."New value: +"Query string parameter — filter item(s) with matching locations."
      • changedInput schema / properties / filters__overdue / description
        Previous value: -"Filter item(s) with matching Overdue."New value: +"Query string parameter — filter item(s) with matching Overdue."
      • changedInput schema / properties / filters__priority__ / description
        Previous value: -"Filter item(s) with matching priority."New value: +"Query string parameter — filter item(s) with matching priority."
      • changedInput schema / properties / filters__search / description
        Previous 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."
      • changedInput schema / properties / filters__status__ / description
        Previous value: -"Filter item(s) with matching status."New value: +"Query string parameter — filter item(s) with matching status."
      • changedInput schema / properties / filters__trade_id__ / description
        Previous value: -"Filter item(s) with matching trades."New value: +"Query string parameter — filter item(s) with matching trades."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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 '-'"
      • changedInput schema / properties / view / description
        Previous value: -"Export View."New value: +"Query string parameter — response detail level. Use 'normal' for standard fields or 'extended' for all fields"
    • Changeddownload_rfis_list6 fields changed
      • changedInput schema / properties / export_format / description
        Previous value: -"File format for the export - 'pdf' or 'csv'."New value: +"Query string parameter — file format for the export - 'pdf' or 'csv'."
      • changedInput schema / properties / filters__query / description
        Previous value: -"Search Query"New value: +"Query string parameter — filter results by query"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • removedInput schema / properties / table_configuration_for_export
        Removed 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"
        -}
    • Removeddownload_rfis_list_v1_1
    • Changeddownload_schedule_file3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Addeddraft_create
    • Removeddraft_create_v1_1
    • Changedduplicate_a_configurable_field_set_and_its_custom_fields4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Configurable Field Set ID"New value: +"URL path parameter — configurable Field Set ID"
      • changedInput schema / properties / include_custom_fields / description
        Previous value: -"Boolean to dictate if the custom fields are duplicated"New value: +"Query string parameter — boolean to dictate if the custom fields are duplicated"
      • changedInput schema / properties / name / description
        Previous value: -"Name for new fieldset"New value: +"Query string parameter — name for new fieldset"
    • Addededit_a_timecard_entry
    • Removededit_a_timecard_entry_v1_1
    • Changedemail_a_time_and_material_entry2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Id of the Time And Material Entry"New value: +"URL path parameter — id of the Time And Material Entry"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedenable_a_person_to_log_in6 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / email / description
        Previous 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"
      • changedInput schema / properties / no_invite / description
        Previous 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"
      • changedInput schema / properties / password / description
        Previous 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..."
      • changedInput schema / properties / permission_level_id / description
        Previous 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."
      • changedInput schema / properties / person_id / description
        Previous value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person"
    • Changedenable_payments2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / projectIds / description
        Previous value: -"projectIds"New value: +"JSON request body field — the projectids for this Payments operation"
    • Changedexport_company_level_email_communication4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Communication ID"New value: +"URL path parameter — unique identifier of the Emails resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedexport_company_time_index_to_csv7 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__deleted_at / description
        Previous 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."
      • changedInput schema / properties / filters__end_date / description
        Previous value: -"filters[end_date]"New value: +"Query string parameter — filter results by end date"
      • changedInput schema / properties / filters__start_date / description
        Previous value: -"filters[start_date]"New value: +"Query string parameter — filter results by start date"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedexport_email_communication_to_pdf5 fields changed
      • changedInput schema / properties / communication_id / description
        Previous value: -"Communication ID"New value: +"URL path parameter — unique identifier of the communication"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / topic_type / description
        Previous 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"
    • Addedfetch_active_support_pin
    • Removedfetch_active_support_pin_v2_0
    • Addedfetch_attachment_by_id_company
    • Removedfetch_attachment_by_id_company_v2_0
    • Addedfetch_attachment_by_id_project
    • Removedfetch_attachment_by_id_project_v2_0
    • Changedfind_configurable_field_set_by_index10 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous 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"
      • changedInput schema / properties / scope__action_plan_type_id / description
        Previous 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)"
      • changedInput schema / properties / scope__category / description
        Previous 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)"
      • changedInput schema / properties / scope__generic_tool_id / description
        Previous 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)"
      • changedInput schema / properties / scope__inspection_type_id / description
        Previous 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..."
      • changedInput schema / properties / scope__observations_category_id / description
        Previous 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"
      • changedInput schema / properties / type / description
        Previous value: -"The type of Configurable Field Set"New value: +"Query string parameter — the type of Configurable Field Set"
    • Removedfind_or_create_an_annotated_document
    • Changedfind_or_create_an_annotated_document_with_markup_context9 fields changed
      • changedInput schema / properties / attachment_id / description
        Previous value: -"attachment_id"New value: +"JSON request body field — unique identifier of the attachment"
      • changedInput schema / properties / attachment_source / description
        Previous value: -"attachment_source"New value: +"JSON request body field — the attachment source for this Document Markup operation"
      • changedInput schema / properties / combined_xfdf / description
        Previous value: -"combined_xfdf"New value: +"Query string parameter — the combined xfdf for this Document Markup operation"
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / item_id / description
        Previous value: -"item_id"New value: +"JSON request body field — unique identifier of the item"
      • changedInput schema / properties / item_type / description
        Previous value: -"item_type"New value: +"JSON request body field — the item type for this Document Markup operation"
      • changedInput schema / properties / markup_context / description
        Previous value: -"markup_context"New value: +"Query string parameter — the markup context for this Document Markup operation"
      • changedInput schema / properties / pin_origin / description
        Previous value: -"pin_origin"New value: +"Query string parameter — the pin origin for this Document Markup operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
    • Changedfind_or_create_location_s_by_path2 fields changed
      • changedInput schema / properties / path / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedfinds_or_creates_a_inspection_item_signature_request
    • Removedfinds_or_creates_a_inspection_item_signature_request_v2_0
    • Changedgenerates_pdf_document10 fields changed
      • changedInput schema / properties / contact / description
        Previous value: -"Indicates whether contacts should be included in PDF document."New value: +"Query string parameter — indicates whether contacts should be included in PDF document."
      • changedInput schema / properties / filters__except_id / description
        Previous value: -"Returns users except as specified."New value: +"Query string parameter — returns users except as specified."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Returns users whose id attribute matches the parameter."New value: +"Query string parameter — returns users whose id attribute matches the parameter."
      • changedInput schema / properties / filters__permission_template / description
        Previous 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."
      • changedInput schema / properties / filters__trade_id__ / description
        Previous 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)."
      • changedInput schema / properties / filters__vendor_id / description
        Previous value: -"Return item(s) with the specified Vendor IDs."New value: +"Query string parameter — return item(s) with the specified Vendor IDs."
      • changedInput schema / properties / grouped_by_vendor / description
        Previous value: -"Indicates whether users should be grouped by vendor."New value: +"Query string parameter — indicates whether users should be grouped by vendor."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / user_role / description
        Previous 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."
      • changedInput schema / properties / vendor / description
        Previous value: -"Indicates whether vendor should be included in PDF document."New value: +"Query string parameter — indicates whether vendor should be included in PDF document."
    • Changedget_a_groups_projects13 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / created_after / description
        Previous 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"
      • changedInput schema / properties / created_at / description
        Previous 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"
      • changedInput schema / properties / created_before / description
        Previous 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"
      • changedInput schema / properties / custom_fields_integration_name / description
        Previous 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..."
      • changedInput schema / properties / group_id / description
        Previous value: -"Unique identifier for the group"New value: +"URL path parameter — unique identifier for the group"
      • changedInput schema / properties / name / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous 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..."
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_number / description
        Previous 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"
      • changedInput schema / properties / updated_after / description
        Previous 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"
      • changedInput schema / properties / updated_at / description
        Previous 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"
      • changedInput schema / properties / updated_before / description
        Previous 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"
    • Addedget_a_list_of_inspection_item_evidence_configurations
    • Removedget_a_list_of_inspection_item_evidence_configurations_v2_0
    • Addedget_a_list_of_inspection_item_signature_requests
    • Removedget_a_list_of_inspection_item_signature_requests_v2_0
    • Changedget_a_list_of_possible_assignees_for_an_rfi3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_a_list_of_possible_rfi_managers_for_an_rfi3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_a_list_of_possible_timesheet_creator_ids3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_a_list_of_possible_timesheet_creators3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_a_single_group4 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / group_id / description
        Previous value: -"Unique identifier for the group"New value: +"URL path parameter — unique identifier for the group"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedget_a_single_job_title4 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / job_title_id / description
        Previous value: -"Unique identifier for the Job Title."New value: +"URL path parameter — unique identifier for the Job Title."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedget_a_single_person4 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / person_id / description
        Previous value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person"
    • Changedget_a_single_project4 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project"
    • Changedget_a_single_resource_planning_tag4 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / tag_id / description
        Previous value: -"Unique identifier for the tag."New value: +"URL path parameter — unique identifier for the tag."
    • Addedget_a_workflow_instance_company
    • Removedget_a_workflow_instance_company_v2_0
    • Addedget_a_workflow_instance_project
    • Removedget_a_workflow_instance_project_v2_0
    • Addedget_a_workflow_template_version
    • Removedget_a_workflow_template_version_v2_0
    • Changedget_accessible_groups_for_authenticated_user_by_context7 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / context_type / description
        Previous value: -"context_type"New value: +"URL path parameter — the context type for this Document Markup operation"
      • changedInput schema / properties / context_type_id / description
        Previous value: -"context_type_id"New value: +"URL path parameter — unique identifier of the context type"
      • changedInput schema / properties / layer_id / description
        Previous value: -"layer_id"New value: +"Query string parameter — unique identifier of the layer"
      • changedInput schema / properties / page / description
        Previous value: -"page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"per_page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
    • Changedget_accessible_layers_for_authenticated_user_by_context6 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / context_type / description
        Previous value: -"context_type"New value: +"URL path parameter — the context type for this Document Markup operation"
      • changedInput schema / properties / context_type_id / description
        Previous value: -"context_type_id"New value: +"URL path parameter — unique identifier of the context type"
      • changedInput schema / properties / page / description
        Previous value: -"page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"per_page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
    • Addedget_active_reinspection
    • Removedget_active_reinspection_v2_0
    • Addedget_activity_by_id
    • Removedget_activity_by_id_v2_0
    • Addedget_activity_link_by_id
    • Removedget_activity_link_by_id_v2_0
    • Addedget_adjustment_and_adjustment_line_items_of_a_project
    • Removedget_adjustment_and_adjustment_line_items_of_a_project_v2_0
    • Addedget_advanced_forecasting_rows_of_a_project
    • Removedget_advanced_forecasting_rows_of_a_project_v2_0
    • Changedget_affected_body_part_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_affected_body_parts3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedget_affected_company_filter_options_project3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_affected_company_filter_options_project_v1_03 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_affected_company_filter_options_project_v1_0_23 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_affected_company_filter_options_project_v1_0_43 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_affected_parties_filter_options_project3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_affected_parties_filter_options_project_v1_03 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_affected_persons_filter_options_project3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_affected_persons_filter_options_project_v1_03 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_affliction_type_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedget_all_attachments_for_equipment_company
    • Removedget_all_attachments_for_equipment_company_v2_0
    • Addedget_all_attachments_for_equipment_project
    • Removedget_all_attachments_for_equipment_project_v2_0
    • Addedget_all_bid_board_projects
    • Removedget_all_bid_board_projects_v2_0
    • Changedget_all_company_groups3 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedget_all_custom_fields3 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Addedget_all_equipment_categories_company
    • Removedget_all_equipment_categories_company_v2_0
    • Addedget_all_equipment_categories_project
    • Removedget_all_equipment_categories_project_v2_0
    • Addedget_all_equipment_company
    • Removedget_all_equipment_company_v2_0
    • Removedget_all_equipment_company_v2_1
    • Addedget_all_equipment_ids_company
    • Removedget_all_equipment_ids_company_v2_0
    • Removedget_all_equipment_ids_company_v2_1
    • Addedget_all_equipment_maintenance_records_company
    • Removedget_all_equipment_maintenance_records_company_v2_0
    • Addedget_all_equipment_maintenance_records_project
    • Removedget_all_equipment_maintenance_records_project_v2_0
    • Addedget_all_equipment_makes_company
    • Removedget_all_equipment_makes_company_v2_0
    • Addedget_all_equipment_makes_project
    • Removedget_all_equipment_makes_project_v2_0
    • Addedget_all_equipment_models_company
    • Removedget_all_equipment_models_company_v2_0
    • Addedget_all_equipment_models_project
    • Removedget_all_equipment_models_project_v2_0
    • Addedget_all_equipment_statuses_company
    • Removedget_all_equipment_statuses_company_v2_0
    • Addedget_all_equipment_statuses_project
    • Removedget_all_equipment_statuses_project_v2_0
    • Addedget_all_equipment_types_company
    • Removedget_all_equipment_types_company_v2_0
    • Addedget_all_equipment_types_project
    • Removedget_all_equipment_types_project_v2_0
    • Changedget_all_job_titles_belonging_to_a_group4 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / group_id / description
        Previous value: -"Unique identifier for the group"New value: +"URL path parameter — unique identifier for the group"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedget_all_job_titles_in_the_company3 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedget_all_people_belonging_to_a_company14 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / created_after / description
        Previous 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"
      • changedInput schema / properties / created_at / description
        Previous 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"
      • changedInput schema / properties / created_before / description
        Previous 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"
      • changedInput schema / properties / custom_fields_integration_name / description
        Previous 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..."
      • changedInput schema / properties / email / description
        Previous 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."
      • changedInput schema / properties / employee_number / description
        Previous 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."
      • changedInput schema / properties / first_name / description
        Previous 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."
      • changedInput schema / properties / last_name / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous 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..."
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / updated_after / description
        Previous 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"
      • changedInput schema / properties / updated_at / description
        Previous 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"
      • changedInput schema / properties / updated_before / description
        Previous 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"
    • Changedget_all_people_belonging_to_a_group15 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / created_after / description
        Previous 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"
      • changedInput schema / properties / created_at / description
        Previous 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"
      • changedInput schema / properties / created_before / description
        Previous 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"
      • changedInput schema / properties / custom_fields_integration_name / description
        Previous 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..."
      • changedInput schema / properties / email / description
        Previous 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."
      • changedInput schema / properties / employee_number / description
        Previous 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."
      • changedInput schema / properties / first_name / description
        Previous 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."
      • changedInput schema / properties / group_id / description
        Previous value: -"Unique identifier for the group"New value: +"URL path parameter — unique identifier for the group"
      • changedInput schema / properties / last_name / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous 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..."
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / updated_after / description
        Previous 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"
      • changedInput schema / properties / updated_at / description
        Previous 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"
      • changedInput schema / properties / updated_before / description
        Previous 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"
    • Changedget_all_resource_planning_tag_for_a_company3 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedget_all_resource_planning_tag_for_a_group4 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / group_id / description
        Previous value: -"Unique identifier for the group"New value: +"URL path parameter — unique identifier for the group"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedget_all_resource_requests_for_a_single_project4 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous 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..."
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project"
    • Changedget_all_resource_requests_for_projects_in_a_single_group4 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / group_id / description
        Previous value: -"Unique identifier for the group"New value: +"URL path parameter — unique identifier for the group"
      • changedInput schema / properties / page / description
        Previous 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..."
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedget_all_resource_requests_in_a_company3 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous 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..."
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedget_all_time_off_for_a_single_person7 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / limit / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / person_id / description
        Previous value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person"
      • changedInput schema / properties / start_after / description
        Previous value: -"Time off ID used for pagination."New value: +"Query string parameter — time off ID used for pagination."
      • changedInput schema / properties / timezone / description
        Previous value: -"The timezone in which to order time off entries."New value: +"Query string parameter — the timezone in which to order time off entries."
    • Changedget_assignee_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedget_bid_board_project_by_id
    • Removedget_bid_board_project_by_id_v2_0
    • Addedget_bid_board_project_custom_fields
    • Removedget_bid_board_project_custom_fields_v2_0
    • Addedget_budget_view_options
    • Removedget_budget_view_options_v2_0
    • Addedget_calendar_by_id
    • Removedget_calendar_by_id_v2_0
    • Addedget_catalogs
    • Removedget_catalogs_v2_0
    • Addedget_change_event_settings
    • Removedget_change_event_settings_v2_0
    • Changedget_company_assignments11 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / created_after / description
        Previous 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"
      • changedInput schema / properties / created_at / description
        Previous 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"
      • changedInput schema / properties / created_before / description
        Previous 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"
      • changedInput schema / properties / dayRange / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous 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..."
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / start_day / description
        Previous value: -"The starting day to filter assignments by."New value: +"Query string parameter — the starting day to filter assignments by."
      • changedInput schema / properties / updated_after / description
        Previous 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"
      • changedInput schema / properties / updated_at / description
        Previous 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"
      • changedInput schema / properties / updated_before / description
        Previous 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"
    • Changedget_company_currency_configuration3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedget_company_exchange_rates3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Addedget_company_snapshots_summary
    • Removedget_company_snapshots_summary_v2_0
    • Changedget_complete_layer_structure_by_context_type_and_type_id7 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / context_type / description
        Previous value: -"context_type"New value: +"JSON request body field — the context type for this Document Markup operation"
      • changedInput schema / properties / context_type_id / description
        Previous value: -"context_type_id"New value: +"JSON request body field — unique identifier of the context type"
      • changedInput schema / properties / include_groups / description
        Previous value: -"include_groups"New value: +"JSON request body field — the include groups for this Document Markup operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
      • changedInput schema / properties / sub_context_type / description
        Previous value: -"sub_context_type"New value: +"JSON request body field — the sub context type for this Document Markup operation"
      • changedInput schema / properties / sub_context_type_id / description
        Previous value: -"sub_context_type_id"New value: +"JSON request body field — unique identifier of the sub context type"
    • Addedget_configurable_field_sets_company
    • Removedget_configurable_field_sets_company_v2_0
    • Addedget_configuration_for_uom_master_list
    • Removedget_configuration_for_uom_master_list_v2_0
    • Changedget_context_by_id5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / context_id / description
        Previous value: -"context_id"New value: +"URL path parameter — unique identifier of the context"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
    • Changedget_contexts10 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / filters__context_type_id / description
        Previous value: -"filters[context_type_id]"New value: +"Query string parameter — filters[context_type_id]"
      • changedInput schema / properties / filters__created_before / description
        Previous value: -"filters[created_before]"New value: +"Query string parameter — filters[created_before]"
      • changedInput schema / properties / filters__id / description
        Previous value: -"filters[id]"New value: +"Query string parameter — filter results by id"
      • changedInput schema / properties / filters__subcontext_type_id / description
        Previous value: -"filters[subcontext_type_id]"New value: +"Query string parameter — filters[subcontext_type_id]"
      • changedInput schema / properties / filters__updated_at / description
        Previous value: -"filters[updated_at]"New value: +"Query string parameter — filter results by updated at"
      • changedInput schema / properties / page / description
        Previous value: -"page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"per_page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
      • changedInput schema / properties / view / description
        Previous value: -"view"New value: +"Query string parameter — response detail level. Use 'normal' for standard fields or 'extended' for all fields"
    • Changedget_contracts_invoice_configuration4 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"ID of the Contract"New value: +"URL path parameter — unique identifier of the contract"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_contributing_behavior_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_contributing_condition_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedget_cost_item
    • Removedget_cost_item_v2_0
    • Addedget_cost_items
    • Removedget_cost_items_v2_0
    • Changedget_current_company_assignments3 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous 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..."
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Addedget_custom_field_data_types
    • Removedget_custom_field_data_types_v2_0
    • Changedget_daily_log_headers_for_the_project5 fields changed
      • changedInput schema / properties / end_date / description
        Previous value: -"The right boundary of requested date range"New value: +"Query string parameter — the right boundary of requested date range"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / start_date / description
        Previous value: -"The left boundary of requested date range"New value: +"Query string parameter — the left boundary of requested date range"
    • Changedget_environmental_type_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedget_equipment_by_id_company
    • Removedget_equipment_by_id_company_v2_0
    • Removedget_equipment_by_id_company_v2_1
    • Addedget_equipment_by_id_project
    • Removedget_equipment_by_id_project_v2_1
    • Addedget_equipment_by_project_project
    • Removedget_equipment_by_project_project_v2_0
    • Removedget_equipment_by_project_project_v2_1
    • Addedget_equipment_change_history_company
    • Removedget_equipment_change_history_company_v2_0
    • Addedget_equipment_ids_by_project_project
    • Removedget_equipment_ids_by_project_project_v2_0
    • Removedget_equipment_ids_by_project_project_v2_1
    • Addedget_equipment_maintenance_record_by_its_id_company
    • Removedget_equipment_maintenance_record_by_its_id_company_v2_0
    • Addedget_equipment_maintenance_record_by_its_id_project
    • Removedget_equipment_maintenance_record_by_its_id_project_v2_0
    • Addedget_equipment_projects_company
    • Removedget_equipment_projects_company_v2_0
    • Changedget_export_options_for_existing_rfi4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"RFI ID"New value: +"URL path parameter — unique identifier of the RFI resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_file_by_its_uuid3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / uuid / description
        Previous value: -"UUID of the file"New value: +"URL path parameter — uUID of the file"
    • Changedget_filing_type_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_filing_types3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedget_group_assignments6 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / dayRange / description
        Previous 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..."
      • changedInput schema / properties / group_id / description
        Previous value: -"Unique identifier for the group"New value: +"URL path parameter — unique identifier for the group"
      • changedInput schema / properties / page / description
        Previous 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..."
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / start_day / description
        Previous value: -"The starting day to filter assignments by."New value: +"Query string parameter — the starting day to filter assignments by."
    • Changedget_group_by_id5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / group_id / description
        Previous value: -"group_id"New value: +"URL path parameter — unique identifier of the group"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
    • Changedget_groups11 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / filters__context_id / description
        Previous value: -"filters[context_id]"New value: +"Query string parameter — filter results by context id"
      • changedInput schema / properties / filters__context_type_id / description
        Previous value: -"filters[context_type_id]"New value: +"Query string parameter — filters[context_type_id]"
      • changedInput schema / properties / filters__created_before / description
        Previous value: -"filters[created_before]"New value: +"Query string parameter — filters[created_before]"
      • changedInput schema / properties / filters__id / description
        Previous value: -"filters[id]"New value: +"Query string parameter — filter results by id"
      • changedInput schema / properties / filters__subcontext_type_id / description
        Previous value: -"filters[subcontext_type_id]"New value: +"Query string parameter — filters[subcontext_type_id]"
      • changedInput schema / properties / filters__updated_at / description
        Previous value: -"filters[updated_at]"New value: +"Query string parameter — filter results by updated at"
      • changedInput schema / properties / page / description
        Previous value: -"page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"per_page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
      • changedInput schema / properties / view / description
        Previous value: -"view"New value: +"Query string parameter — response detail level. Use 'normal' for standard fields or 'extended' for all fields"
    • Changedget_groups_for_layer5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / layer_id / description
        Previous value: -"layer_id"New value: +"URL path parameter — unique identifier of the layer"
      • changedInput schema / properties / page / description
        Previous value: -"page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"per_page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
    • Changedget_harm_source_filter_options_project3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_harm_source_filter_options_project_v1_03 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_hazard_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedget_import_logs
    • Removedget_import_logs_v2_0
    • Addedget_import_status
    • Removedget_import_status_v2_0
    • Changedget_incident_statuses3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedget_information_of_a_budget_change4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Unique identifier of budget change"New value: +"URL path parameter — unique identifier of budget change"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_layer_by_id5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / layer_id / description
        Previous value: -"layer_id"New value: +"URL path parameter — unique identifier of the layer"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
    • Changedget_layers11 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / filters__context_id / description
        Previous value: -"filters[context_id]"New value: +"Query string parameter — filter results by context id"
      • changedInput schema / properties / filters__context_type_id / description
        Previous value: -"filters[context_type_id]"New value: +"Query string parameter — filters[context_type_id]"
      • changedInput schema / properties / filters__created_before / description
        Previous value: -"filters[created_before]"New value: +"Query string parameter — filters[created_before]"
      • changedInput schema / properties / filters__id / description
        Previous value: -"filters[id]"New value: +"Query string parameter — filter results by id"
      • changedInput schema / properties / filters__subcontext_type_id / description
        Previous value: -"filters[subcontext_type_id]"New value: +"Query string parameter — filters[subcontext_type_id]"
      • changedInput schema / properties / filters__updated_at / description
        Previous value: -"filters[updated_at]"New value: +"Query string parameter — filter results by updated at"
      • changedInput schema / properties / page / description
        Previous value: -"page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"per_page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
      • changedInput schema / properties / view / description
        Previous value: -"view"New value: +"Query string parameter — response detail level. Use 'normal' for standard fields or 'extended' for all fields"
    • Changedget_layers_for_context5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / context_id / description
        Previous value: -"context_id"New value: +"URL path parameter — unique identifier of the context"
      • changedInput schema / properties / page / description
        Previous value: -"page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"per_page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
    • Changedget_location_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_look_ahead_data14 fields changed
      • changedInput schema / properties / assignmentCount / description
        Previous value: -"The number of future assignments to return per person."New value: +"Query string parameter — the number of future assignments to return per person."
      • changedInput schema / properties / assignmentDuration / description
        Previous value: -"Whether to include a calculated duration for each assignment."New value: +"Query string parameter — whether to include a calculated duration for each assignment."
      • changedInput schema / properties / assignmentEnd / description
        Previous value: -"Whether to include the assignment end date."New value: +"Query string parameter — whether to include the assignment end date."
      • changedInput schema / properties / assignmentStart / description
        Previous value: -"Whether to include the assignment start date."New value: +"Query string parameter — whether to include the assignment start date."
      • changedInput schema / properties / availableAfterDate / description
        Previous 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."
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / employee_number / description
        Previous 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."
      • changedInput schema / properties / group_id / description
        Previous value: -"Unique identifier for the group"New value: +"URL path parameter — unique identifier for the group"
      • changedInput schema / properties / jobTitle / description
        Previous value: -"Whether to include the person's Job Title."New value: +"Query string parameter — whether to include the person's Job Title."
      • changedInput schema / properties / jobTitleIds / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / projectName / description
        Previous value: -"Whether to include the project name for each assignment."New value: +"Query string parameter — whether to include the project name for each assignment."
      • changedInput schema / properties / project_number / description
        Previous 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"
    • Changedget_managed_equipment_filter_options_project3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_managed_equipment_filter_options_project_v1_03 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_managed_equipment_filter_options_project_v1_0_23 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_managed_equipment_filter_options_project_v1_0_43 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_markup_stamp6 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / markup_id / description
        Previous value: -"markup_id"New value: +"URL path parameter — unique identifier of the markup"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
      • changedInput schema / properties / viewer_doc_id / description
        Previous value: -"viewer_doc_id"New value: +"URL path parameter — unique identifier of the viewer doc"
    • Changedget_my_open_items_statistics4 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / tool_name / description
        Previous value: -"tool_name"New value: +"Query string parameter — the tool name for this Project-Level Configuration operation"
    • Changedget_next_available_number3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_next_available_number_by_spec_section4 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / spec_section_id / description
        Previous value: -"Spec Section ID"New value: +"URL path parameter — unique identifier of the spec section"
    • Removedget_next_available_number_by_spec_section_v1_1
    • Removedget_next_available_number_v1_1
    • Changedget_observation_item_pdf_url4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Observation Item ID"New value: +"URL path parameter — unique identifier of the Observations resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedget_one_coordination_issue_viewpoint_model_manager_or_legacy7 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / coordination_issue_id / description
        Previous value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID"
      • changedInput schema / properties / included / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / viewpoint_id / description
        Previous 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"
    • Changedget_open_items_statistics4 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / tool_name / description
        Previous value: -"tool_name"New value: +"Query string parameter — the tool name for this Project-Level Configuration operation"
    • Addedget_operation_details
    • Removedget_operation_details_v2_0
    • Changedget_or_create_context_with_hierarchy8 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / context_type / description
        Previous value: -"context_type"New value: +"JSON request body field — the context type for this Document Markup operation"
      • changedInput schema / properties / context_type_id / description
        Previous value: -"context_type_id"New value: +"JSON request body field — unique identifier of the context type"
      • changedInput schema / properties / name / description
        Previous value: -"name"New value: +"JSON request body field — the name for this Document Markup operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
      • changedInput schema / properties / settings / description
        Previous value: -"settings"New value: +"JSON request body field — the settings for this Document Markup operation"
      • changedInput schema / properties / sub_context_type / description
        Previous value: -"sub_context_type"New value: +"JSON request body field — the sub context type for this Document Markup operation"
      • changedInput schema / properties / sub_context_type_id / description
        Previous value: -"sub_context_type_id"New value: +"JSON request body field — unique identifier of the sub context type"
    • Changedget_or_create_document_info_v1_16 fields changed
      • changedInput schema / properties / attachment_id / description
        Previous value: -"attachment_id"New value: +"JSON request body field — unique identifier of the attachment"
      • changedInput schema / properties / attachment_source / description
        Previous value: -"attachment_source"New value: +"JSON request body field — the attachment source for this Document Markup operation"
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / item_id / description
        Previous value: -"item_id"New value: +"JSON request body field — unique identifier of the item"
      • changedInput schema / properties / item_type / description
        Previous value: -"item_type"New value: +"JSON request body field — the item type for this Document Markup operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
    • Changedget_or_refresh_an_access_token6 fields changed
      • changedInput schema / properties / client_id / description
        Previous 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."
      • changedInput schema / properties / client_secret / description
        Previous 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."
      • changedInput schema / properties / code / description
        Previous 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."
      • changedInput schema / properties / grant_type / description
        Previous 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..."
      • changedInput schema / properties / redirect_uri / description
        Previous 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..."
      • changedInput schema / properties / refresh_token / description
        Previous 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."
    • Changedget_permission_level_options3 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedget_person_assignments6 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / dayRange / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / person_id / description
        Previous value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person"
      • changedInput schema / properties / start_day / description
        Previous value: -"The starting day to filter assignments by."New value: +"Query string parameter — the starting day to filter assignments by."
    • Changedget_persons_assignment_history_data13 fields changed
      • changedInput schema / properties / assignmentEnd / description
        Previous value: -"Whether to include the assignment end date."New value: +"Query string parameter — whether to include the assignment end date."
      • changedInput schema / properties / assignmentStart / description
        Previous value: -"Whether to include the assignment start date."New value: +"Query string parameter — whether to include the assignment start date."
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / cost_code / description
        Previous 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."
      • changedInput schema / properties / duration / description
        Previous value: -"Will return a calculated duration for each listed assignment."New value: +"Query string parameter — will return a calculated duration for each listed assignment."
      • changedInput schema / properties / end_time / description
        Previous value: -"Will return the daily end time for each assignment."New value: +"Query string parameter — will return the daily end time for each assignment."
      • changedInput schema / properties / labels / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / person_id / description
        Previous value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person"
      • changedInput schema / properties / projectName / description
        Previous value: -"Whether to include the project name for each assignment."New value: +"Query string parameter — whether to include the project name for each assignment."
      • changedInput schema / properties / project_number / description
        Previous 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"
      • changedInput schema / properties / start_time / description
        Previous value: -"Will return the daily start time for each assignment."New value: +"Query string parameter — will return the daily start time for each assignment."
    • Changedget_project_assignments6 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / dayRange / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project"
      • changedInput schema / properties / start_day / description
        Previous value: -"The starting day to filter assignments by."New value: +"Query string parameter — the starting day to filter assignments by."
    • Addedget_project_budget_view_options
    • Removedget_project_budget_view_options_v2_0
    • Changedget_project_currency_configuration4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"ID of the project"New value: +"URL path parameter — unique identifier for the Procore project"
    • Changedget_project_exchange_rates5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / include_inactive / description
        Previous value: -"Include inactive exchange rates"New value: +"Query string parameter — include inactive exchange rates"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"ID of the project"New value: +"URL path parameter — unique identifier for the Procore project"
    • Changedget_project_incident_configuration3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedget_project_task_by_id_company
    • Addedget_project_task_by_id_company_v2_0
    • Removedget_project_task_by_id_v2_0_company
    • Removedget_project_task_by_id_v2_0_company_v2_0
    • Addedget_project_tasks_company
    • Addedget_project_tasks_company_v2_0
    • Removedget_project_tasks_v2_0_company
    • Removedget_project_tasks_v2_0_company_v2_0
    • Changedget_projects_assignment_history_data14 fields changed
      • changedInput schema / properties / assignmentEnd / description
        Previous value: -"Whether to include the assignment end date."New value: +"Query string parameter — whether to include the assignment end date."
      • changedInput schema / properties / assignmentStart / description
        Previous value: -"Whether to include the assignment start date."New value: +"Query string parameter — whether to include the assignment start date."
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / cost_code / description
        Previous 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."
      • changedInput schema / properties / duration / description
        Previous value: -"Will return a calculated duration for each listed assignment."New value: +"Query string parameter — will return a calculated duration for each listed assignment."
      • changedInput schema / properties / employeeName / description
        Previous 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"
      • changedInput schema / properties / employee_number / description
        Previous 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."
      • changedInput schema / properties / end_time / description
        Previous value: -"Will return the daily end time for each assignment."New value: +"Query string parameter — will return the daily end time for each assignment."
      • changedInput schema / properties / jobTitle / description
        Previous value: -"Whether to include the person's Job Title."New value: +"Query string parameter — whether to include the person's Job Title."
      • changedInput schema / properties / labels / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project"
      • changedInput schema / properties / start_time / description
        Previous value: -"Will return the daily start time for each assignment."New value: +"Query string parameter — will return the daily start time for each assignment."
    • Addedget_requisition_compliance_document
    • Removedget_requisition_compliance_document_v2_0
    • Changedget_resource_planning_notification_profiles6 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / limit / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / starting_after / description
        Previous 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."
      • changedInput schema / properties / starting_before / description
        Previous 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."
    • Changedget_responsible_company_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_revisions4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Submittal ID"New value: +"URL path parameter — unique identifier of the Submittals resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedget_revisions_v1_1
    • Addedget_schedule_by_id
    • Removedget_schedule_by_id_v2_0
    • Changedget_schedule_import_processing_state3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_schedule_metadata3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_single_custom_field4 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / field_id / description
        Previous value: -"UUID of the Custom Field."New value: +"URL path parameter — uUID of the Custom Field."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedget_single_time_off_record5 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / person_id / description
        Previous value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person"
      • changedInput schema / properties / time_off_id / description
        Previous value: -"The UUID of the Time Off record."New value: +"URL path parameter — the UUID of the Time Off record."
    • Changedget_stamps5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — the unique identifier of the company"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Query string parameter — page number for pagination (1-based)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Query string parameter — number of stamps to return per page"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — the unique identifier of the project"
      • addedInput schema / properties / search_text
        Added value: +{
        +  "description": "Query string parameter — text to search for in stamp content",
        +  "type": "string"
        +}
    • Removedget_stamps_v2_0
    • Changedget_status_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_tags_requiring_action_report8 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / employee_number / description
        Previous 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."
      • changedInput schema / properties / group_id / description
        Previous value: -"Unique identifier for the group"New value: +"URL path parameter — unique identifier for the group"
      • changedInput schema / properties / jobTitle / description
        Previous value: -"Whether to include the person's Job Title."New value: +"Query string parameter — whether to include the person's Job Title."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / tagIds / description
        Previous 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"
      • changedInput schema / properties / warningTags / description
        Previous 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"
    • Changedget_the_daily_log_header_via_date_or_id5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"The id of the requested Daily Log Header"New value: +"Query string parameter — the id of the requested Daily Log Header"
      • changedInput schema / properties / log_date / description
        Previous value: -"The log date for the requested Daily Log Header"New value: +"Query string parameter — the log date for the requested Daily Log Header"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedget_the_minutes_and_date_created_for_all_parent_topics
    • Addedget_the_minutes_and_date_created_for_all_parent_topics_project
    • Addedget_the_minutes_and_date_created_for_all_parent_topics_v1_0
    • Removedget_the_minutes_and_date_created_for_all_parent_topics_v1_1
    • Addedget_timeline_event_by_id
    • Removedget_timeline_event_by_id_v2_0
    • Changedget_token_info2 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedget_total_workers_and_man_hours6 fields changed
      • changedInput schema / properties / end_date / description
        Previous 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)"
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / start_date / description
        Previous 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)"
    • Changedget_units_of_measure3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Addedget_unmanaged_equipment_project
    • Removedget_unmanaged_equipment_project_v2_0
    • Changedget_work_activity_filter_options_project3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_work_activity_filter_options_project_v1_03 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_work_activity_filter_options_project_v1_0_23 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_work_activity_filter_options_project_v1_0_43 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedget_workflow_data4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Submittal ID"New value: +"URL path parameter — unique identifier of the Submittals resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedget_workflow_data_v1_1
    • Addedget_workflow_instance_history_company
    • Removedget_workflow_instance_history_company_v2_0
    • Addedget_workflow_instance_history_project
    • Removedget_workflow_instance_history_project_v2_0
    • Addedget_workflow_preset_company
    • Removedget_workflow_preset_company_v2_0
    • Addedget_workflow_preset_project
    • Removedget_workflow_preset_project_v2_0
    • Changedgets_documents_attached_to_bid_package9 fields changed
      • changedInput schema / properties / bid_package_id / description
        Previous value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / pdm_page / description
        Previous value: -"Page number for paginating PDM attachments"New value: +"Query string parameter — page number for paginating PDM attachments"
      • changedInput schema / properties / pdm_per_page / description
        Previous value: -"Number of PDM attachments per page"New value: +"Query string parameter — number of PDM attachments per page"
      • changedInput schema / properties / pdm_search / description
        Previous 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"
      • changedInput schema / properties / pdm_sort_by / description
        Previous value: -"Field to sort PDM attachments by"New value: +"Query string parameter — field to sort PDM attachments by"
      • changedInput schema / properties / pdm_sort_order / description
        Previous value: -"Sort order for PDM attachments"New value: +"Query string parameter — sort order for PDM attachments"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedgrant_app_authorization5 fields changed
      • changedInput schema / properties / client_id / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / redirect_uri / description
        Previous 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..."
      • changedInput schema / properties / response_type / description
        Previous 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."
    • Changedindex_bid_forms8 fields changed
      • changedInput schema / properties / bid_package_id / description
        Previous value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package"
      • changedInput schema / properties / excluded_bid_form_id / description
        Previous value: -"Bid Form Id to exclude"New value: +"Query string parameter — bid Form Id to exclude"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / search / description
        Previous value: -"Search for a bid form"New value: +"Query string parameter — search for a bid form"
      • changedInput schema / properties / sort / description
        Previous 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."
      • changedInput schema / properties / view / description
        Previous 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"
    • Addedinitiate_schedule_import
    • Removedinitiate_schedule_import_v2_0
    • Addedit_fetches_a_budget_note
    • Removedit_fetches_a_budget_note_v2_0
    • Changedlist_accepted_weather_conditions_project3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_accepted_weather_conditions_project_v1_03 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_accident_logs9 fields changed
      • changedInput schema / properties / end_date / description
        Previous 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)"
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Return item(s) created by the specified User ID"New value: +"Query string parameter — return item(s) created by the specified User ID"
      • changedInput schema / properties / filters__daily_log_segment_id / description
        Previous value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter"
      • changedInput schema / properties / filters__location_id / description
        Previous value: -"Return item(s) with the specified Location IDs."New value: +"Query string parameter — return item(s) with the specified Location IDs."
      • changedInput schema / properties / log_date / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / start_date / description
        Previous 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)"
    • Changedlist_action_plan_approvers6 fields changed
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_id / description
        Previous 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)"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_action_plan_item_assignees9 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_id / description
        Previous 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)"
      • changedInput schema / properties / filters__plan_item_id / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_action_plan_items26 fields changed
      • changedInput schema / properties / filters__assignee_party_id_or_role_id / description
        Previous 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)"
      • changedInput schema / properties / filters__attachment_id / description
        Previous 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)"
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__drawing_revision_id / description
        Previous 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)"
      • changedInput schema / properties / filters__due_at / description
        Previous value: -"Return item(s) due within the specified date range."New value: +"Query string parameter — return item(s) due within the specified date range."
      • changedInput schema / properties / filters__file_version_id / description
        Previous 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)"
      • changedInput schema / properties / filters__form_id / description
        Previous 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)"
      • changedInput schema / properties / filters__generic_tool_item_id / description
        Previous 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)"
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__meeting_id / description
        Previous 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)"
      • changedInput schema / properties / filters__observation_item_id / description
        Previous 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)"
      • changedInput schema / properties / filters__plan_id / description
        Previous 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)"
      • changedInput schema / properties / filters__plan_section_id / description
        Previous 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)."
      • changedInput schema / properties / filters__plan_test_record_request_id / description
        Previous 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)."
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query"
      • changedInput schema / properties / filters__record_checklist_template_id / description
        Previous value: -"Return item(s) with the specified checklist template id."New value: +"Query string parameter — return item(s) with the specified checklist template id."
      • changedInput schema / properties / filters__record_generic_tool_id / description
        Previous value: -"Return item(s) with the specified Generic Tool ID."New value: +"Query string parameter — return item(s) with the specified Generic Tool ID."
      • changedInput schema / properties / filters__reference_type / description
        Previous 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)"
      • changedInput schema / properties / filters__specification_section_id / description
        Previous 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)"
      • changedInput schema / properties / filters__status_id / description
        Previous 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."
      • changedInput schema / properties / filters__submittal_log_id / description
        Previous 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)"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / filters__verification_method_id / description
        Previous 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)"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_action_plan_parties6 fields changed
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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"
    • Changedlist_action_plan_receivers6 fields changed
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_id / description
        Previous 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)"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_action_plan_references9 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_id / description
        Previous 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)"
      • changedInput schema / properties / filters__plan_item_id / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_action_plan_sections8 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_id / description
        Previous 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)"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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..."
    • Changedlist_action_plan_template_approvers5 fields changed
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_template_id / description
        Previous 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)."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_action_plan_template_item_assignees9 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_template_id / description
        Previous 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)."
      • changedInput schema / properties / filters__plan_template_item_id / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_action_plan_template_receivers6 fields changed
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_template_id / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_action_plan_test_record_requests10 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_id / description
        Previous 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)"
      • changedInput schema / properties / filters__plan_item_id / description
        Previous 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)."
      • changedInput schema / properties / filters__type / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_action_plan_test_records11 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_id / description
        Previous 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)"
      • changedInput schema / properties / filters__plan_item_id / description
        Previous 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)."
      • changedInput schema / properties / filters__plan_test_record_request_id / description
        Previous 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)."
      • changedInput schema / properties / filters__type / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_action_plan_verification_methods8 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__active / description
        Previous 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'."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_action_plans12 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__include_sublocations / description
        Previous value: -"Use together with `filters[location_id]`\n"New value: +"Query string parameter — use together with `filters[location_id]`\n"
      • changedInput schema / properties / filters__location_id / description
        Previous 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."
      • changedInput schema / properties / filters__manager_id / description
        Previous 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)."
      • changedInput schema / properties / filters__plan_type_id / description
        Previous 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)."
      • changedInput schema / properties / filters__template_id / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_actions8 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing query"New value: +"Query string parameter — return item(s) containing query"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / incident_id / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Addedlist_activities
    • Removedlist_activities_v2_0
    • Addedlist_activity_links
    • Removedlist_activity_links_v2_0
    • Changedlist_affliction_types7 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__active / description
        Previous 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'."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous value: -"Affliction Types"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_all_actual_production_quantities10 fields changed
      • changedInput schema / properties / filters__crew_id / description
        Previous 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."
      • changedInput schema / properties / filters__date / description
        Previous 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."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__location_id / description
        Previous 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."
      • changedInput schema / properties / filters__timesheet_id / description
        Previous 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."
      • changedInput schema / properties / filters__unit_of_measure / description
        Previous value: -"Return item(s) with the specified unit of measure."New value: +"Query string parameter — return item(s) with the specified unit of measure."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_all_attachments3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_all_available_permission_templates_for_a_project4 fields changed
      • changedInput schema / properties / filters__assignables_only / description
        Previous value: -"Returns user's assignable permission templates"New value: +"Query string parameter — returns user's assignable permission templates"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_all_classification4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / serializer_view / description
        Previous 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."
    • Changedlist_all_classifications3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_all_company_managed_equipment_user_permissions3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_all_direct_cost_line_items9 fields changed
      • changedInput schema / properties / filters__cost_code_id / description
        Previous 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."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__direct_cost_id / description
        Previous 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."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__line_item_type_id / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_all_equipment_categories3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_all_equipment_company15 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__company_visible / description
        Previous value: -"If true, return item(s) with 'company visible' status."New value: +"Query string parameter — if true, return item(s) with 'company visible' status."
      • changedInput schema / properties / filters__current_project_id / description
        Previous value: -"Return item(s) with the specified current project ID."New value: +"Query string parameter — return item(s) with the specified current project ID."
      • changedInput schema / properties / filters__last_service_date / description
        Previous 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."
      • changedInput schema / properties / filters__managed_equipment_category_id / description
        Previous 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."
      • changedInput schema / properties / filters__managed_equipment_id / description
        Previous value: -"Return item(s) with the specified Managed Equipment ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment ID."
      • changedInput schema / properties / filters__managed_equipment_make_id / description
        Previous 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."
      • changedInput schema / properties / filters__managed_equipment_model_id / description
        Previous 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."
      • changedInput schema / properties / filters__managed_equipment_type_id / description
        Previous 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."
      • changedInput schema / properties / filters__next_service_date / description
        Previous 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."
      • changedInput schema / properties / filters__status / description
        Previous value: -"Returns item(s) matching the specified status value."New value: +"Query string parameter — returns item(s) matching the specified status value."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / filters__year / description
        Previous value: -"Return item(s) with the specified year."New value: +"Query string parameter — return item(s) with the specified year."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_all_equipment_logs3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_all_equipment_makes4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_all_equipment_models4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_all_equipment_project20 fields changed
      • changedInput schema / properties / filters__company_visible / description
        Previous value: -"If true, return item(s) with 'company visible' status."New value: +"Query string parameter — if true, return item(s) with 'company visible' status."
      • changedInput schema / properties / filters__current_project_id / description
        Previous value: -"Return item(s) with the specified current project ID."New value: +"Query string parameter — return item(s) with the specified current project ID."
      • changedInput schema / properties / filters__induction_status / description
        Previous value: -"Returns item(s) with the specified inudction status."New value: +"Query string parameter — returns item(s) with the specified inudction status."
      • changedInput schema / properties / filters__last_service_date / description
        Previous 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."
      • changedInput schema / properties / filters__managed_equipment_category_id / description
        Previous 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."
      • changedInput schema / properties / filters__managed_equipment_id / description
        Previous value: -"Return item(s) with the specified Managed Equipment ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment ID."
      • changedInput schema / properties / filters__managed_equipment_make_id / description
        Previous 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."
      • changedInput schema / properties / filters__managed_equipment_model_id / description
        Previous 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."
      • changedInput schema / properties / filters__managed_equipment_type_id / description
        Previous 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."
      • changedInput schema / properties / filters__next_service_date / description
        Previous 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."
      • changedInput schema / properties / filters__offsite / description
        Previous 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."
      • changedInput schema / properties / filters__onsite / description
        Previous 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."
      • changedInput schema / properties / filters__ownership / description
        Previous 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."
      • changedInput schema / properties / filters__status / description
        Previous value: -"Returns item(s) matching the specified status value."New value: +"Query string parameter — returns item(s) matching the specified status value."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / filters__vendor_id / description
        Previous value: -"Return item(s) with the specified Vendor ID."New value: +"Query string parameter — return item(s) with the specified Vendor ID."
      • changedInput schema / properties / filters__year / description
        Previous value: -"Return item(s) with the specified year."New value: +"Query string parameter — return item(s) with the specified year."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_all_equipment_types3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_all_maintenance_logs_attachment4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedlist_all_prime_contracts5 fields changed
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_all_project_budgeted_production_quantities4 fields changed
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_all_project_budgeted_production_quantity_ids4 fields changed
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_all_project_crew_ids4 fields changed
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_all_project_crews4 fields changed
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_all_project_equipment_ids4 fields changed
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedlist_all_submittal_attachments_with_download_urls
    • Removedlist_all_submittal_attachments_with_download_urls_v1_1
    • Changedlist_all_time_and_material_entry3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_all_time_and_material_entry_configurable_field_sets3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_all_time_and_material_entry_matching_the_search_keyword2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / search_keyword / description
        Previous value: -"Keyword for looking up Time And Material Entries"New value: +"Query string parameter — keyword for looking up Time And Material Entries"
    • Changedlist_all_timesheets6 fields changed
      • changedInput schema / properties / filters__date / description
        Previous 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."
      • changedInput schema / properties / filters__deleted_at / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_alternative_response_sets3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedlist_app_configurations6 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__app_installation_id / description
        Previous value: -"App installation ID"New value: +"Query string parameter — filter results by app installation id"
      • changedInput schema / properties / filters__project_id / description
        Previous value: -"Project ID"New value: +"Query string parameter — filter results by project id"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_app_installations_v1_05 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / developer_app_id / description
        Previous value: -"Developer App ID"New value: +"Query string parameter — unique identifier of the developer app"
      • changedInput schema / properties / implicit / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedlist_app_installations_v1_0_24 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous 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."
    • Changedlist_assignable_users4 fields changed
      • changedInput schema / properties / filters__search / description
        Previous value: -"Search query"New value: +"Query string parameter — filter results by search"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_assignee_company_filter_options5 fields changed
      • changedInput schema / properties / filters__bim_file_id / description
        Previous value: -"Filter item(s) with matching BIM File ids"New value: +"Query string parameter — filter item(s) with matching BIM File ids"
      • changedInput schema / properties / locale / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_assignee_filter_options5 fields changed
      • changedInput schema / properties / filters__bim_file_id / description
        Previous value: -"Filter item(s) with matching BIM File ids"New value: +"Query string parameter — filter item(s) with matching BIM File ids"
      • changedInput schema / properties / locale / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_assignees_for_accessible_tasks3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_available_checklist_item_types4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_available_filters_for_coordination_issues4 fields changed
      • changedInput schema / properties / locale / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_available_observation_item_statuses_with_localized_labels4 fields changed
      • changedInput schema / properties / id / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_available_rfi_assigned_id_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_available_rfi_ball_in_court_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_available_rfi_cost_code_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_available_rfi_filters3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_available_rfi_prefix_stage_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_available_rfi_priority_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_available_rfi_received_from_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_available_rfi_responsible_contractor_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_available_rfi_rfi_manager_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_available_rfi_status_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_available_rfi_sub_job_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_available_rfis_locations3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedlist_available_status_transitions
    • Removedlist_available_status_transitions_v2_0
    • Changedlist_available_submittal_filters3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_bid_contacts10 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__origin_id / description
        Previous 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."
      • changedInput schema / properties / filters__search / description
        Previous 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"
      • changedInput schema / properties / filters__trade_id__ / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / filters__vendor_id / description
        Previous value: -"Return item(s) with the specified Vendor IDs."New value: +"Query string parameter — return item(s) with the specified Vendor IDs."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"Return items with the specified sort."New value: +"Query string parameter — return items with the specified sort."
    • Removedlist_bid_packages
    • Addedlist_bid_packages_company
    • Addedlist_bid_packages_project
    • Removedlist_bid_packages_v1_1
    • Changedlist_bid_uploads4 fields changed
      • changedInput schema / properties / bid_id / description
        Previous value: -"Bid ID"New value: +"URL path parameter — unique identifier of the bid"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedlist_bids_within_a_bid_package4 fields changed
      • changedInput schema / properties / bid_package_id / description
        Previous value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_bids_within_a_company3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_bids_within_a_project3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_billing_periods7 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__status / description
        Previous value: -"Return item(s) with the specified Billing Period status."New value: +"Query string parameter — return item(s) with the specified Billing Period status."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_bim_file_extractions11 fields changed
      • changedInput schema / properties / filters__bim_file_id / description
        Previous 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"
      • changedInput schema / properties / filters__bim_file_upload_id / description
        Previous 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"
      • changedInput schema / properties / filters__document_revision_id / description
        Previous 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"
      • changedInput schema / properties / filters__document_upload_id / description
        Previous 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"
      • changedInput schema / properties / filters__extraction_format / description
        Previous value: -"Filter item(s) with matching extraction format"New value: +"Query string parameter — filter item(s) with matching extraction format"
      • changedInput schema / properties / filters__file_version_id / description
        Previous 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"
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__status / description
        Previous value: -"Filter item(s) with matching status"New value: +"Query string parameter — filter item(s) with matching status"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_bim_files5 fields changed
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedlist_bim_levels8 fields changed
      • changedInput schema / properties / filters__bim_file_id / description
        Previous value: -"Filter item(s) with matching BIM File ids"New value: +"Query string parameter — filter item(s) with matching BIM File ids"
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__location_id / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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 '-'"
      • changedInput schema / properties / view / description
        Previous 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 ..."
    • Changedlist_bim_model_change_history5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"BIM Model ID"New value: +"URL path parameter — unique identifier of the BIM resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedlist_bim_model_revision_objects6 fields changed
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__query / description
        Previous 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"
      • changedInput schema / properties / id / description
        Previous value: -"BIM Model Revision ID"New value: +"URL path parameter — bIM Model Revision ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_bim_model_revision_plans8 fields changed
      • changedInput schema / properties / filters__bim_level_id / description
        Previous value: -"Filter item(s) with matching BIM Level ids"New value: +"Query string parameter — filter item(s) with matching BIM Level ids"
      • changedInput schema / properties / filters__bim_model_revision_id / description
        Previous value: -"Filter item(s) with matching Bim Model Revision ids."New value: +"Query string parameter — filter item(s) with matching Bim Model Revision ids."
      • changedInput schema / properties / filters__bim_plan_id / description
        Previous value: -"Filter item(s) with matching BIM Plan ids"New value: +"Query string parameter — filter item(s) with matching BIM Plan ids"
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedlist_bim_model_revision_properties11 fields changed
      • changedInput schema / properties / filters__category / description
        Previous value: -"Filter item(s) with matching category."New value: +"Query string parameter — filter item(s) with matching category."
      • changedInput schema / properties / filters__curated_list / description
        Previous 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"
      • changedInput schema / properties / filters__has_uom / description
        Previous 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)."
      • changedInput schema / properties / filters__name / description
        Previous value: -"Filter item(s) with matching name."New value: +"Query string parameter — filter item(s) with matching name."
      • changedInput schema / properties / filters__object_id / description
        Previous value: -"Filter item(s) with matching object_id."New value: +"Query string parameter — filter item(s) with matching object_id."
      • changedInput schema / properties / filters__query / description
        Previous 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"
      • changedInput schema / properties / filters__value / description
        Previous value: -"Filter item(s) with matching value."New value: +"Query string parameter — filter item(s) with matching value."
      • changedInput schema / properties / id / description
        Previous value: -"BIM Model Revision ID"New value: +"URL path parameter — bIM Model Revision ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_bim_model_revision_viewpoints9 fields changed
      • changedInput schema / properties / filters__bim_model_revision_id / description
        Previous value: -"Filter item(s) with matching Bim Model Revision ids."New value: +"Query string parameter — filter item(s) with matching Bim Model Revision ids."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__primary / description
        Previous value: -"Filter items by primary flag"New value: +"Query string parameter — filter items by primary flag"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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."
      • changedInput schema / properties / viewpoint_format / description
        Previous 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..."
    • Changedlist_bim_model_revisions9 fields changed
      • changedInput schema / properties / filters__bim_file_id / description
        Previous value: -"Filter item(s) with matching BIM File ids"New value: +"Query string parameter — filter item(s) with matching BIM File ids"
      • changedInput schema / properties / filters__bim_model_id / description
        Previous value: -"Filter item(s) with matching Bim Model ids."New value: +"Query string parameter — filter item(s) with matching Bim Model ids."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__publish_status / description
        Previous value: -"Filter item(s) by publish status"New value: +"Query string parameter — filter item(s) by publish status"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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 '-'"
      • changedInput schema / properties / view / description
        Previous 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..."
    • Changedlist_bim_models9 fields changed
      • changedInput schema / properties / filters__bim_file_id / description
        Previous value: -"Filter item(s) with matching BIM File ids"New value: +"Query string parameter — filter item(s) with matching BIM File ids"
      • changedInput schema / properties / filters__has_revisions / description
        Previous value: -"Filter item(s) with or without revisions."New value: +"Query string parameter — filter item(s) with or without revisions."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__search / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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 '-'"
      • changedInput schema / properties / view / description
        Previous 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 ..."
    • Changedlist_bim_plans6 fields changed
      • changedInput schema / properties / filters__bim_level_id / description
        Previous value: -"Filter item(s) with matching BIM Level ids"New value: +"Query string parameter — filter item(s) with matching BIM Level ids"
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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..."
    • Changedlist_bim_property_file_objects7 fields changed
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__query / description
        Previous 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"
      • changedInput schema / properties / id / description
        Previous value: -"BIM Property File ID."New value: +"URL path parameter — bIM Property File ID."
      • changedInput schema / properties / object_search_id / description
        Previous value: -"Object search id"New value: +"Query string parameter — unique identifier of the object search"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_bim_property_file_properties11 fields changed
      • changedInput schema / properties / filters__category / description
        Previous value: -"Filter item(s) with matching category."New value: +"Query string parameter — filter item(s) with matching category."
      • changedInput schema / properties / filters__curated_list / description
        Previous 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"
      • changedInput schema / properties / filters__has_uom / description
        Previous 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)."
      • changedInput schema / properties / filters__name / description
        Previous value: -"Filter item(s) with matching name."New value: +"Query string parameter — filter item(s) with matching name."
      • changedInput schema / properties / filters__object_id / description
        Previous value: -"Filter item(s) with matching object_id."New value: +"Query string parameter — filter item(s) with matching object_id."
      • changedInput schema / properties / filters__query / description
        Previous 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"
      • changedInput schema / properties / filters__value / description
        Previous value: -"Filter item(s) with matching value."New value: +"Query string parameter — filter item(s) with matching value."
      • changedInput schema / properties / id / description
        Previous value: -"BIM Property File ID."New value: +"URL path parameter — bIM Property File ID."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_bim_view_folders6 fields changed
      • changedInput schema / properties / filters__bim_file_id / description
        Previous value: -"Filter item(s) with matching BIM File ids"New value: +"Query string parameter — filter item(s) with matching BIM File ids"
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__parent_id / description
        Previous value: -"Filter item(s) with matching parent_id"New value: +"Query string parameter — filter item(s) with matching parent_id"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_body_parts7 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__selectable / description
        Previous value: -"If true, return item(s) with 'selectable' status."New value: +"Query string parameter — if true, return item(s) with 'selectable' status."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous value: -"Body Parts"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_budget_change_summaries4 fields changed
      • changedInput schema / properties / exclude_custom_fields / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_budget_detail_columns4 fields changed
      • changedInput schema / properties / budget_view_id / description
        Previous value: -"Budget View ID"New value: +"URL path parameter — unique identifier of the budget view"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_budget_detail_filter_options4 fields changed
      • changedInput schema / properties / column_id / description
        Previous value: -"Type of filter options to return"New value: +"Query string parameter — type of filter options to return"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_budget_details8 fields changed
      • changedInput schema / properties / biller / description
        Previous 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"
      • changedInput schema / properties / budget_view_id / description
        Previous value: -"Budget View ID"New value: +"URL path parameter — unique identifier of the budget view"
      • changedInput schema / properties / cost_code / description
        Previous value: -"Cost Code Filter"New value: +"JSON request body field — cost Code Filter"
      • changedInput schema / properties / cost_type / description
        Previous value: -"Cost Type Filter"New value: +"JSON request body field — cost Type Filter"
      • changedInput schema / properties / detail_type / description
        Previous value: -"Detail Type Filter"New value: +"JSON request body field — detail Type Filter"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / root_cost_code / description
        Previous value: -"Division Filter"New value: +"JSON request body field — division Filter"
      • changedInput schema / properties / vendor / description
        Previous value: -"Vendor Filter"New value: +"JSON request body field — vendor Filter"
    • Changedlist_budget_modifications3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_budget_view_detail_rows13 fields changed
      • changedInput schema / properties / biller__ / description
        Previous 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"
      • changedInput schema / properties / budget_line_item_id__ / description
        Previous 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"
      • changedInput schema / properties / budget_row_type / description
        Previous 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..."
      • changedInput schema / properties / budget_view_id / description
        Previous value: -"Budget View ID"New value: +"URL path parameter — unique identifier of the budget view"
      • changedInput schema / properties / category_id__ / description
        Previous 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"
      • changedInput schema / properties / cost_code_id__ / description
        Previous 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"
      • changedInput schema / properties / cost_code_name__ / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / root_cost_code_id__ / description
        Previous 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"
      • changedInput schema / properties / root_cost_code_name__ / description
        Previous 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"
      • changedInput schema / properties / sort / description
        Previous 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"
    • Changedlist_budget_view_snapshot_detail_rows13 fields changed
      • changedInput schema / properties / biller__ / description
        Previous 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"
      • changedInput schema / properties / budget_line_item_id__ / description
        Previous 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"
      • changedInput schema / properties / budget_row_type / description
        Previous 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..."
      • changedInput schema / properties / budget_view_snapshot_id / description
        Previous value: -"Budget View Snapshot ID"New value: +"URL path parameter — budget View Snapshot ID"
      • changedInput schema / properties / category_id__ / description
        Previous 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"
      • changedInput schema / properties / cost_code_id__ / description
        Previous 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"
      • changedInput schema / properties / cost_code_name__ / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / root_cost_code_id__ / description
        Previous 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"
      • changedInput schema / properties / root_cost_code_name__ / description
        Previous 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"
      • changedInput schema / properties / sort / description
        Previous 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"
    • Changedlist_budget_view_snapshot_summary_rows13 fields changed
      • changedInput schema / properties / biller__ / description
        Previous 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"
      • changedInput schema / properties / budget_line_item_id__ / description
        Previous 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"
      • changedInput schema / properties / budget_row_type / description
        Previous 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..."
      • changedInput schema / properties / budget_view_snapshot_id / description
        Previous value: -"Budget View Snapshot ID"New value: +"URL path parameter — budget View Snapshot ID"
      • changedInput schema / properties / category_id__ / description
        Previous 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"
      • changedInput schema / properties / cost_code_id__ / description
        Previous 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"
      • changedInput schema / properties / cost_code_name__ / description
        Previous 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"
      • changedInput schema / properties / group_by / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / root_cost_code_id__ / description
        Previous 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"
      • changedInput schema / properties / root_cost_code_name__ / description
        Previous 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"
    • Changedlist_budget_view_snapshots8 fields changed
      • changedInput schema / properties / filters__approval_status / description
        Previous value: -"Return snapshot(s) in the specified status."New value: +"Query string parameter — return snapshot(s) in the specified status."
      • changedInput schema / properties / filters__budget_template_id / description
        Previous value: -"Return snapshot(s) using the specified budget template id."New value: +"Query string parameter — return snapshot(s) using the specified budget template id."
      • changedInput schema / properties / filters__budget_view_id / description
        Previous 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)"
      • changedInput schema / properties / filters__snapshot_type / description
        Previous value: -"Return snapshot(s) of the specified type."New value: +"Query string parameter — return snapshot(s) of the specified type."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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"
    • Changedlist_budget_view_summary_rows13 fields changed
      • changedInput schema / properties / biller__ / description
        Previous 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"
      • changedInput schema / properties / budget_line_item_id__ / description
        Previous 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"
      • changedInput schema / properties / budget_row_type / description
        Previous 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..."
      • changedInput schema / properties / budget_view_id / description
        Previous value: -"Budget View ID"New value: +"URL path parameter — unique identifier of the budget view"
      • changedInput schema / properties / category_id__ / description
        Previous 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"
      • changedInput schema / properties / cost_code_id__ / description
        Previous 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"
      • changedInput schema / properties / cost_code_name__ / description
        Previous 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"
      • changedInput schema / properties / group_by / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / root_cost_code_id__ / description
        Previous 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"
      • changedInput schema / properties / root_cost_code_name__ / description
        Previous 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"
    • Changedlist_budget_views4 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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"
    • Changedlist_calendar_events5 fields changed
      • changedInput schema / properties / calendar__finish_datetime / description
        Previous value: -"Finish date or date-time"New value: +"Query string parameter — finish date or date-time"
      • changedInput schema / properties / calendar__start_datetime / description
        Previous value: -"Start date or date-time"New value: +"Query string parameter — start date or date-time"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_calendar_items11 fields changed
      • changedInput schema / properties / filters__assigned_id / description
        Previous value: -"Returns task(s) with specified assignee(s)"New value: +"Query string parameter — returns task(s) with specified assignee(s)"
      • changedInput schema / properties / filters__date / description
        Previous 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"
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / finish_date / description
        Previous value: -"Calendar Items that occur before this date"New value: +"Query string parameter — calendar Items that occur before this date"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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."
      • changedInput schema / properties / start_date / description
        Previous value: -"Calendar Items that occur after this date"New value: +"Query string parameter — calendar Items that occur after this date"
      • changedInput schema / properties / view / description
        Previous 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."
    • Addedlist_calendars
    • Removedlist_calendars_v2_0
    • Changedlist_call_logs8 fields changed
      • changedInput schema / properties / end_date / description
        Previous 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)"
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Return item(s) created by the specified User ID"New value: +"Query string parameter — return item(s) created by the specified User ID"
      • changedInput schema / properties / filters__daily_log_segment_id / description
        Previous value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter"
      • changedInput schema / properties / log_date / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / start_date / description
        Previous 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)"
    • Changedlist_change_event_production_quantities4 fields changed
      • changedInput schema / properties / change_event_id / description
        Previous value: -"Unique identifier for the Change Event"New value: +"URL path parameter — unique identifier for the Change Event"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedlist_change_event_statuses
    • Addedlist_change_event_statuses_company
    • Addedlist_change_event_statuses_v1_0
    • Removedlist_change_event_statuses_v2_0
    • Addedlist_change_event_types
    • Removedlist_change_event_types_v2_0
    • Changedlist_change_events32 fields changed
      • addedInput schema / properties / budget_change
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — return Change Events with or without Change Items with the specified Budget Change",
        +  "type": "object"
        +}
      • addedInput schema / properties / budget_code
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — return Change Events  with or without Change Items with the specified Budget Code",
        +  "type": "object"
        +}
      • addedInput schema / properties / budget_days_in_stage
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — return Change Events with Change Items having the specified budget days in stage",
        +  "type": "object"
        +}
      • addedInput schema / properties / budget_in_status_since
        Added 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"
        +}
      • addedInput schema / properties / budget_stage
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — return Change Events with Change Items having Budget Stage with the specified stage",
        +  "type": "object"
        +}
      • addedInput schema / properties / budget_stage_status
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — return Change Events with Change Items having Budget Stage with the specified status",
        +  "type": "object"
        +}
      • addedInput schema / properties / change_event_line_item
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — change_event_line_item",
        +  "type": "object"
        +}
      • addedInput schema / properties / change_reason
        Added 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"
        +}
      • addedInput schema / properties / change_type
        Added 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"
        +}
      • addedInput schema / properties / commitment
        Added 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"
        +}
      • addedInput schema / properties / commitment_status
        Added 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"
        +}
      • addedInput schema / properties / commitment_title
        Added 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"
        +}
      • addedInput schema / properties / contract
        Added 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"
        +}
      • addedInput schema / properties / cost_days_in_stage
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — return Change Events with Change Items having the specified cost days in stage",
        +  "type": "object"
        +}
      • addedInput schema / properties / cost_in_status_since
        Added 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"
        +}
      • addedInput schema / properties / cost_rom_amount
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — return Change Events with Change Items having the specified cost rom amount",
        +  "type": "object"
        +}
      • addedInput schema / properties / created_at
        Added 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"
        +}
      • addedInput schema / properties / created_by
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — return Change Events created by the specified User",
        +  "type": "object"
        +}
      • addedInput schema / properties / custom_field_id
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — return Change Events with custom fields that match the specified custom field values",
        +  "type": "object"
        +}
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • removedInput schema / properties / filters__id
        Removed value: -{
        -  "description": "Return item(s) with the specified IDs.",
        -  "items": {},
        -  "type": "array"
        -}
      • changedInput schema / properties / filters__include_deleted / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • removedInput schema / properties / include_rfqs
        Removed 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"
        -}
      • addedInput schema / properties / latest_budget_impact_project_currency
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — return Change Events with Change Items having the specified latest budget impact in project currency",
        +  "type": "object"
        +}
      • addedInput schema / properties / latest_cost_amount_project_currency
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — return Change Events with Change Items having the specified latest cost amount in project currency",
        +  "type": "object"
        +}
      • addedInput schema / properties / latest_revenue_amount_project_currency
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — return Change Events with Change Items having the specified latest revenue amount in project currency",
        +  "type": "object"
        +}
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • addedInput schema / properties / revenue_in_status_since
        Added 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"
        +}
      • addedInput schema / properties / revenue_unit_cost_project_currency
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — return Change Events with Change Items having the specified revenue unit cost in project currency",
        +  "type": "object"
        +}
    • Removedlist_change_events_v1_1
    • Changedlist_change_history_for_a_generic_tool_item5 fields changed
      • changedInput schema / properties / generic_tool_id / description
        Previous value: -"Unique identifier for the generic tool."New value: +"URL path parameter — unique identifier for the generic tool."
      • changedInput schema / properties / generic_tool_item_id / description
        Previous value: -"Unique identifier for the generic tool item."New value: +"URL path parameter — unique identifier for the generic tool item."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_change_history_for_timesheet2 fields changed
      • changedInput schema / properties / ids / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedlist_change_order_change_reasons
    • Addedlist_change_order_change_reasons_company
    • Addedlist_change_order_change_reasons_v1_0
    • Removedlist_change_order_change_reasons_v2_0
    • Changedlist_change_order_packages13 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"Contract ID"New value: +"Query string parameter — unique identifier of the contract"
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__due_date / description
        Previous 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."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__include_deleted / description
        Previous 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."
      • changedInput schema / properties / filters__invoiced_date / description
        Previous 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."
      • changedInput schema / properties / filters__paid_date / description
        Previous 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."
      • changedInput schema / properties / filters__reviewed_at / description
        Previous 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."
      • changedInput schema / properties / filters__signed_change_order_received_date / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_change_order_requests13 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"Contract ID"New value: +"Query string parameter — unique identifier of the contract"
      • changedInput schema / properties / filters__change_order_package_id / description
        Previous 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."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__due_date / description
        Previous 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."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__invoiced_date / description
        Previous 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."
      • changedInput schema / properties / filters__not_status / description
        Previous 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."
      • changedInput schema / properties / filters__paid_date / description
        Previous 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."
      • changedInput schema / properties / filters__status / description
        Previous value: -"Returns item(s) matching the specified status value."New value: +"Query string parameter — returns item(s) matching the specified status value."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_change_order_statuses3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_change_types3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_checklist_inspection_comments7 fields changed
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__item_id / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_checklist_inspection_schedules14 fields changed
      • changedInput schema / properties / filters__assignee_id / description
        Previous value: -"Return schedule(s) with the specified Assignee IDs"New value: +"Query string parameter — return schedule(s) with the specified Assignee IDs"
      • changedInput schema / properties / filters__ended / description
        Previous 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"
      • changedInput schema / properties / filters__ends_at / description
        Previous 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."
      • changedInput schema / properties / filters__equipment_id / description
        Previous value: -"Return schedule(s) with the specified Equipment IDs"New value: +"Query string parameter — return schedule(s) with the specified Equipment IDs"
      • changedInput schema / properties / filters__first_inspection_due_at / description
        Previous 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"
      • changedInput schema / properties / filters__frequency / description
        Previous value: -"Return schedule(s) with the specified Frequency Types"New value: +"Query string parameter — return schedule(s) with the specified Frequency Types"
      • changedInput schema / properties / filters__inspection_type_id / description
        Previous value: -"Return schedule(s) with the specified Checklist Type IDs"New value: +"Query string parameter — return schedule(s) with the specified Checklist Type IDs"
      • changedInput schema / properties / filters__list_template_id / description
        Previous value: -"Return schedule(s) with the specified Inspection Template IDs"New value: +"Query string parameter — return schedule(s) with the specified Inspection Template IDs"
      • changedInput schema / properties / filters__location_id / description
        Previous value: -"Return schedule(s) with the specified Location IDs"New value: +"Query string parameter — return schedule(s) with the specified Location IDs"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_checklist_inspection_sections7 fields changed
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__list_id / description
        Previous value: -"Return section(s) with the specified Checklist List IDs"New value: +"Query string parameter — return section(s) with the specified Checklist List IDs"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_checklist_inspections_item_attachments6 fields changed
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__item_id / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_checklist_inspections_items9 fields changed
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • removedInput schema / properties / filters__item_response_status
        Removed value: -{
        -  "description": "Filter item(s) with matching item_response status.",
        -  "enum": [
        -    "conforming",
        -    "non_conforming",
        -    "neutral",
        -    "not_applicable",
        -    "null"
        -  ],
        -  "type": "string"
        -}
      • changedInput schema / properties / filters__list_id / description
        Previous value: -"Return item(s) with the specified Checklist List IDs"New value: +"Query string parameter — return item(s) with the specified Checklist List IDs"
      • changedInput schema / properties / filters__section_id / description
        Previous value: -"Return item(s) with the specified Checklist Section IDs"New value: +"Query string parameter — return item(s) with the specified Checklist Section IDs"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • removedInput schema / properties / sort
        Removed 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"
        -}
    • Removedlist_checklist_inspections_items_v1_1
    • Changedlist_checklist_item_observations8 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__item_id / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_checklist_list_assigned_company_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedlist_checklist_list_closed_by_contact_filter_options
    • Addedlist_checklist_list_closed_by_contact_filter_options_project
    • Addedlist_checklist_list_closed_by_contact_filter_options_project_v1
    • Removedlist_checklist_list_closed_by_contact_filter_options_v2_0
    • Changedlist_checklist_list_created_by_contact_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_checklist_list_equipment_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_checklist_list_inspection_type_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedlist_checklist_list_inspector_filter_options
    • Addedlist_checklist_list_inspector_filter_options_project
    • Addedlist_checklist_list_inspector_filter_options_project_v1_0
    • Removedlist_checklist_list_inspector_filter_options_v2_0
    • Removedlist_checklist_list_location_filter_options
    • Addedlist_checklist_list_location_filter_options_project
    • Addedlist_checklist_list_location_filter_options_project_v1_0
    • Removedlist_checklist_list_location_filter_options_v2_0
    • Removedlist_checklist_list_point_of_contact_filter_options
    • Addedlist_checklist_list_point_of_contact_filter_options_project
    • Addedlist_checklist_list_point_of_contact_filter_options_project_v1_0
    • Removedlist_checklist_list_point_of_contact_filter_options_v2_0
    • Changedlist_checklist_list_responsible_contractor_filter_options9 fields changed
      • addedInput schema / properties / company_id
        Added value: +{
        +  "description": "URL path parameter — unique identifier for the company.",
        +  "type": "string"
        +}
      • addedInput schema / properties / filters__inspection_type_grouping
        Added value: +{
        +  "description": "Query string parameter — filter by inspection type grouping",
        +  "enum": [
        +    "quality",
        +    "safety"
        +  ],
        +  "type": "string"
        +}
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / project_id / type
        Previous value: -"number"New value: +"string"
      • addedInput schema / properties / query
        Added value: +{
        +  "description": "Query string parameter — search query to filter responsible contractors by name",
        +  "type": "string"
        +}
      • addedInput schema / properties / view
        Added value: +{
        +  "description": "Query string parameter — set to 'recycle_bin' to return filter options from deleted inspections",
        +  "enum": [
        +    "recycle_bin"
        +  ],
        +  "type": "string"
        +}
      • changedInput schema / required
        Previous value: -[
        -  "project_id"
        -]New value: +[
        +  "company_id",
        +  "project_id"
        +]
    • Addedlist_checklist_list_responsible_contractor_filter_options_2
    • Removedlist_checklist_list_responsible_contractor_filter_options_v2_0
    • Changedlist_checklist_list_specification_section_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedlist_checklist_list_specification_section_filter_options_project
    • Removedlist_checklist_list_specification_section_filter_options_v2_0
    • Changedlist_checklist_list_status_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedlist_checklist_list_template_filter_options
    • Addedlist_checklist_list_template_filter_options_project
    • Addedlist_checklist_list_template_filter_options_project_v1_0
    • Removedlist_checklist_list_template_filter_options_v2_0
    • Removedlist_checklist_list_trade_filter_options
    • Addedlist_checklist_list_trade_filter_options_project
    • Addedlist_checklist_list_trade_filter_options_project_v1_0
    • Removedlist_checklist_list_trade_filter_options_v2_0
    • Addedlist_checklist_list_type_filter_options
    • Removedlist_checklist_list_type_filter_options_v2_0
    • Addedlist_checklist_schedule_assignee_filter_options
    • Removedlist_checklist_schedule_assignee_filter_options_v2_0
    • Changedlist_checklist_schedule_attachments4 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / schedule_id / description
        Previous value: -"Checklist Schedule ID"New value: +"URL path parameter — checklist Schedule ID"
    • Changedlist_checklist_schedule_change_histories4 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / schedule_id / description
        Previous value: -"Checklist Schedule ID"New value: +"URL path parameter — checklist Schedule ID"
    • Addedlist_checklist_schedule_inspection_template_filter_options
    • Removedlist_checklist_schedule_inspection_template_filter_options_v2_0
    • Addedlist_checklist_schedule_inspection_type_filter_options
    • Removedlist_checklist_schedule_inspection_type_filter_options_v2_0
    • Changedlist_checklist_signature_requests4 fields changed
      • changedInput schema / properties / list_id / description
        Previous value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_checklist_templates3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_checklists17 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__due_at / description
        Previous value: -"Return item(s) due within the specified date range."New value: +"Query string parameter — return item(s) due within the specified date range."
      • changedInput schema / properties / filters__inspection_type_id / description
        Previous 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."
      • changedInput schema / properties / filters__inspector_id / description
        Previous 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."
      • changedInput schema / properties / filters__list_template_id / description
        Previous 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."
      • changedInput schema / properties / filters__location_id / description
        Previous 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)"
      • changedInput schema / properties / filters__point_of_contact_id / description
        Previous 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."
      • changedInput schema / properties / filters__responsible_contractor_id / description
        Previous 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."
      • changedInput schema / properties / filters__search / description
        Previous value: -"Returns item(s) matching the specified search query string."New value: +"Query string parameter — returns item(s) matching the specified search query string."
      • changedInput schema / properties / filters__spec_section_id / description
        Previous 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."
      • changedInput schema / properties / filters__status / description
        Previous value: -"Returns item(s) matching the specified status value."New value: +"Query string parameter — returns item(s) matching the specified status value."
      • changedInput schema / properties / filters__trade_id / description
        Previous value: -"Trade ID"New value: +"Query string parameter — filter results by trade id"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / filters__view / description
        Previous value: -"If 'recycle', return deleted Checklists."New value: +"Query string parameter — if 'recycle', return deleted Checklists."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_checklists_inspections23 fields changed
      • changedInput schema / properties / filters__closed_at / description
        Previous 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."
      • changedInput schema / properties / filters__closed_by_id / description
        Previous 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."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Return item(s) created by the specified User IDs"New value: +"Query string parameter — return item(s) created by the specified User IDs"
      • changedInput schema / properties / filters__due_at / description
        Previous value: -"Return item(s) due within the specified date range."New value: +"Query string parameter — return item(s) due within the specified date range."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__inspection_date / description
        Previous 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."
      • changedInput schema / properties / filters__inspection_type_id / description
        Previous 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."
      • changedInput schema / properties / filters__inspector_id / description
        Previous 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."
      • changedInput schema / properties / filters__location_id / description
        Previous 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."
      • changedInput schema / properties / filters__managed_equipment_id / description
        Previous value: -"Return item(s) with the specified Managed Equipment ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment ID."
      • changedInput schema / properties / filters__point_of_contact_id / description
        Previous 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."
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query"
      • changedInput schema / properties / filters__responsible_contractor_id / description
        Previous 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."
      • changedInput schema / properties / filters__spec_section_id / description
        Previous 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."
      • changedInput schema / properties / filters__status / description
        Previous value: -"Return item(s) with the specified statuses"New value: +"Query string parameter — return item(s) with the specified statuses"
      • changedInput schema / properties / filters__template_id / description
        Previous 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."
      • changedInput schema / properties / filters__trade_id / description
        Previous value: -"Trade ID"New value: +"Query string parameter — filter results by trade id"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Addedlist_commitment_change_order_line_items
    • Removedlist_commitment_change_order_line_items_v2_0
    • Addedlist_commitment_contract_line_items
    • Removedlist_commitment_contract_line_items_v2_0
    • Addedlist_commitment_contracts
    • Removedlist_commitment_contracts_v2_0
    • Changedlist_commitments3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_communication_tags5 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / search / description
        Previous value: -"Search term to filter communication tags by title."New value: +"Query string parameter — search term to filter communication tags by title."
      • changedInput schema / properties / view / description
        Previous value: -"View type for the response."New value: +"Query string parameter — view type for the response."
    • Changedlist_communication_threads4 fields changed
      • changedInput schema / properties / communication_id / description
        Previous value: -"Communication ID"New value: +"URL path parameter — unique identifier of the communication"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_companies3 fields changed
      • changedInput schema / properties / include_free_companies / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_company_action_plan_template_item_assignees9 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_template_id / description
        Previous 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)."
      • changedInput schema / properties / filters__plan_template_item_id / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_company_action_plan_template_items9 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_template_id / description
        Previous 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."
      • changedInput schema / properties / filters__plan_template_section_id / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_company_action_plan_template_references9 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_template_id / description
        Previous 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."
      • changedInput schema / properties / filters__plan_template_item_id / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_company_action_plan_template_requests10 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_template_id / description
        Previous 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)."
      • changedInput schema / properties / filters__plan_template_item_id / description
        Previous 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)."
      • changedInput schema / properties / filters__type / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_company_action_plan_types8 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__active / description
        Previous 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'."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_company_checklist_sections4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / list_template_id / description
        Previous value: -"Checklist Template ID"New value: +"Query string parameter — checklist Template ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedlist_company_checklist_template_sections4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / list_template_id / description
        Previous value: -"The ID of the Checklist Template"New value: +"URL path parameter — the ID of the Checklist Template"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedlist_company_checklist_templates10 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__inspection_type_id / description
        Previous 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."
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query"
      • changedInput schema / properties / filters__response_set_id / description
        Previous 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."
      • changedInput schema / properties / filters__trade_id / description
        Previous value: -"Trade ID"New value: +"Query string parameter — filter results by trade id"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_company_folders_and_files5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / exclude_files / description
        Previous value: -"Exclude children Files from results"New value: +"Query string parameter — exclude children Files from results"
      • changedInput schema / properties / exclude_folders / description
        Previous value: -"Exclude children Folders from results"New value: +"Query string parameter — exclude children Folders from results"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedlist_company_form_templates6 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_company_form_templates_from_project6 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_company_inactive_users4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous value: -"Return items with the specified sort."New value: +"Query string parameter — return items with the specified sort."
    • Changedlist_company_inactive_vendors5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous value: -"Return items with the specified sort"New value: +"Query string parameter — return items with the specified sort"
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedlist_company_inspection_template_item_reference9 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return References with the specified IDs"New value: +"Query string parameter — return References with the specified IDs"
      • changedInput schema / properties / filters__item_id / description
        Previous 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"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / inspection_template_id / description
        Previous value: -"The ID of the Company Inspection Template"New value: +"URL path parameter — the ID of the Company Inspection Template"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_company_inspection_template_items4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / inspection_template_id / description
        Previous value: -"The ID of the Company Inspection Template"New value: +"URL path parameter — the ID of the Company Inspection Template"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_company_insurances3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_company_observation_types3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_company_offices4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedlist_company_people13 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / filters__connected / description
        Previous 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."
      • changedInput schema / properties / filters__is_employee / description
        Previous 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."
      • changedInput schema / properties / filters__job_title / description
        Previous value: -"Returns only people who have the specified job title."New value: +"Query string parameter — returns only people who have the specified job title."
      • changedInput schema / properties / filters__reference_users_only / description
        Previous value: -"If true, returns only people who are reference users."New value: +"Query string parameter — if true, returns only people who are reference users."
      • changedInput schema / properties / filters__search / description
        Previous 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."
      • changedInput schema / properties / filters__state_code / description
        Previous value: -"Returns only people who have the specified state code."New value: +"Query string parameter — returns only people who have the specified state code."
      • changedInput schema / properties / filters__trade_id / description
        Previous 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."
      • changedInput schema / properties / filters__vendor_id / description
        Previous value: -"Return item(s) with the specified Vendor IDs."New value: +"Query string parameter — return item(s) with the specified Vendor IDs."
      • changedInput schema / properties / filters__without_reference_users / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / view / description
        Previous 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."
    • Addedlist_company_project_status_snapshots
    • Removedlist_company_project_status_snapshots_v2_0
    • Changedlist_company_projects6 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / custom_fields_integration_name / description
        Previous 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..."
      • changedInput schema / properties / name / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous 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..."
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_number / description
        Previous 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"
    • Changedlist_company_roles5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / company_id / type
        Previous value: -"number"New value: +"string"
      • changedInput schema / properties / filters__users_only / description
        Previous value: -"If true, returns only project roles of type user."New value: +"Query string parameter — if true, returns only project roles of type contact."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Query string parameter — page number for pagination"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Removedlist_company_roles_v2_0
    • Changedlist_company_segment_items5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / segment_id / description
        Previous value: -"Segment ID"New value: +"URL path parameter — unique identifier of the segment"
      • changedInput schema / properties / segment_item_list_id / description
        Previous 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."
    • Removedlist_company_users_v1_0
    • Removedlist_company_users_v1_0_2
    • Removedlist_company_users_v1_1
    • Removedlist_company_users_v1_1_1
    • Removedlist_company_users_v1_2
    • Removedlist_company_users_v1_2_1
    • Changedlist_company_users_v1_313 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • removedInput schema / properties / filters__active
        Removed value: -{
        -  "description": "If true, returns item(s) with a status of 'active'.",
        -  "type": "boolean"
        -}
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__origin_id / description
        Previous 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."
      • changedInput schema / properties / filters__search / description
        Previous 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"
      • changedInput schema / properties / filters__trade_id__ / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / filters__vendor_id / description
        Previous value: -"Return item(s) with the specified Vendor IDs."New value: +"Query string parameter — return item(s) with the specified Vendor IDs."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous value: -"Return items with the specified sort."New value: +"Query string parameter — return items with the specified sort."
      • changedInput schema / properties / sort / enum
        Previous value: -[
        -  "name",
        -  "vendor_name",
        -  "permission_template",
        -  "full_name"
        -]New value: +[
        +  "name",
        +  "vendor_name",
        +  "permission_template",
        +  "full_name",
        +  "projects",
        +  "email",
        +  "job_title"
        +]
      • addedInput schema / properties / view
        Added 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"
        +}
    • Removedlist_company_users_v1_3_1
    • Addedlist_company_users_v1_3_2
    • Changedlist_company_vendor_comments5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous value: -"Return items with the specified sort."New value: +"Query string parameter — return items with the specified sort."
      • changedInput schema / properties / vendor_id / description
        Previous value: -"Vendor ID"New value: +"URL path parameter — unique identifier of the vendor"
    • Changedlist_company_vendor_insurances4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / vendor_id / description
        Previous value: -"Vendor ID"New value: +"URL path parameter — unique identifier of the vendor"
    • Changedlist_company_vendors13 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / filters__created_at / description
        Previous 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"
      • changedInput schema / properties / filters__id__ / description
        Previous value: -"Returns vendors with the specified id(s)"New value: +"Query string parameter — returns vendors with the specified id(s)"
      • changedInput schema / properties / filters__origin_id / description
        Previous 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."
      • changedInput schema / properties / filters__parent_id__ / description
        Previous value: -"Returns vendors with the specified parent id(s)"New value: +"Query string parameter — returns vendors with the specified parent id(s)"
      • changedInput schema / properties / filters__search / description
        Previous 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"
      • changedInput schema / properties / filters__standard_cost_code_id__ / description
        Previous 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)"
      • changedInput schema / properties / filters__trade_id__ / description
        Previous value: -"Returns vendors associated with the specified trade id(s)"New value: +"Query string parameter — returns vendors associated with the specified trade id(s)"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous value: -"Return items with the specified sort"New value: +"Query string parameter — return items with the specified sort"
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedlist_company_wbs_patterns3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedlist_company_wbs_segment_item_lists4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / segment_id / description
        Previous value: -"Segment ID"New value: +"URL path parameter — unique identifier of the segment"
    • Changedlist_company_wbs_segments3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Addedlist_company_webhooks_deliveries
    • Removedlist_company_webhooks_deliveries_v2_0
    • Addedlist_company_webhooks_hooks
    • Removedlist_company_webhooks_hooks_v2_0
    • Addedlist_company_webhooks_resources
    • Removedlist_company_webhooks_resources_v2_0
    • Addedlist_company_webhooks_triggers
    • Removedlist_company_webhooks_triggers_v2_0
    • Changedlist_companys_projects3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedlist_configurable_field_set_project_options6 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Configurable Field Set ID"New value: +"URL path parameter — configurable Field Set ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / starts_with / description
        Previous 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."
      • changedInput schema / properties / with_name / description
        Previous 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."
    • Changedlist_configurable_field_sets7 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__generic_tool_id__ / description
        Previous 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."
      • changedInput schema / properties / filters__type__ / description
        Previous 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."
      • changedInput schema / properties / include_lov_entries / description
        Previous 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)"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / view / description
        Previous 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"
    • Changedlist_contract_payments4 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"ID of the Contract"New value: +"Query string parameter — unique identifier of the contract"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_contributing_behaviors7 fields changed
      • changedInput schema / properties / all / description
        Previous value: -"Both active and inactive Contributing Behaviors"New value: +"Query string parameter — both active and inactive Contributing Behaviors"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__active / description
        Previous 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'."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_contributing_conditions7 fields changed
      • changedInput schema / properties / all / description
        Previous value: -"Both active and inactive Contributing Conditions"New value: +"Query string parameter — both active and inactive Contributing Conditions"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__active / description
        Previous 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'."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_coordination_issue_activities7 fields changed
      • changedInput schema / properties / filters__coordination_issue_id__ / description
        Previous value: -"Filter item(s) with coordination issues."New value: +"Query string parameter — filter item(s) with coordination issues."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__include_deleted / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedlist_coordination_issue_activity_feed_items6 fields changed
      • changedInput schema / properties / filters__coordination_issue_id__ / description
        Previous value: -"Filter item(s) with coordination issues."New value: +"Query string parameter — filter item(s) with coordination issues."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__include_deleted / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_coordination_issue_assignable_users3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_coordination_issue_change_history5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedlist_coordination_issue_file_filter_options4 fields changed
      • changedInput schema / properties / locale / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_coordination_issue_viewpoints_legacy_model_manager_rest_v28 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / coordination_issue_id / description
        Previous value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID"
      • changedInput schema / properties / included / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / primary / description
        Previous 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..."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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"
    • Changedlist_coordination_issues26 fields changed
      • changedInput schema / properties / filters__assignee_company_id__ / description
        Previous value: -"Filter item(s) with matching assignee vendor companies."New value: +"Query string parameter — filter item(s) with matching assignee vendor companies."
      • changedInput schema / properties / filters__assignee_id__ / description
        Previous value: -"Filter item(s) with matching assignees."New value: +"Query string parameter — filter item(s) with matching assignees."
      • changedInput schema / properties / filters__coordination_issue_file_id__ / description
        Previous value: -"Filter item(s) with the exact coordination issue file."New value: +"Query string parameter — filter item(s) with the exact coordination issue file."
      • changedInput schema / properties / filters__created_at / description
        Previous 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."
      • changedInput schema / properties / filters__created_by_id__ / description
        Previous value: -"Filter item(s) with matching User IDs."New value: +"Query string parameter — filter item(s) with matching User IDs."
      • changedInput schema / properties / filters__created_from__ / description
        Previous value: -"Filter item(s) with matching creation source."New value: +"Query string parameter — filter item(s) with matching creation source."
      • changedInput schema / properties / filters__document_container_id__ / description
        Previous value: -"Filter Coordination Issues by document container ID(s)."New value: +"Query string parameter — filter Coordination Issues by document container ID(s)."
      • changedInput schema / properties / filters__document_revision_id__ / description
        Previous value: -"Filter Coordination Issues by document revision ID(s)."New value: +"Query string parameter — filter Coordination Issues by document revision ID(s)."
      • changedInput schema / properties / filters__due_date / description
        Previous 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."
      • changedInput schema / properties / filters__ids__ / description
        Previous value: -"Filter item(s) with matching ids."New value: +"Query string parameter — filter item(s) with matching ids."
      • changedInput schema / properties / filters__include_sublocations / description
        Previous value: -"Use together with `filters[location_id]`\n"New value: +"Query string parameter — use together with `filters[location_id]`\n"
      • changedInput schema / properties / filters__issue_type__ / description
        Previous value: -"Filter item(s) with matching issue_type."New value: +"Query string parameter — filter item(s) with matching issue_type."
      • changedInput schema / properties / filters__location_id__ / description
        Previous value: -"Filter item(s) with matching locations."New value: +"Query string parameter — filter item(s) with matching locations."
      • changedInput schema / properties / filters__overdue / description
        Previous value: -"Filter item(s) with matching Overdue."New value: +"Query string parameter — filter item(s) with matching Overdue."
      • changedInput schema / properties / filters__priority__ / description
        Previous value: -"Filter item(s) with matching priority."New value: +"Query string parameter — filter item(s) with matching priority."
      • changedInput schema / properties / filters__search / description
        Previous 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."
      • changedInput schema / properties / filters__status__ / description
        Previous value: -"Filter item(s) with matching status."New value: +"Query string parameter — filter item(s) with matching status."
      • changedInput schema / properties / filters__trade_id__ / description
        Previous value: -"Filter item(s) with matching trades."New value: +"Query string parameter — filter item(s) with matching trades."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / save_sticky_filters / description
        Previous value: -"Persists filter parameters for the requesting user and project."New value: +"Query string parameter — persists filter parameters for the requesting user and project."
      • changedInput schema / properties / sort / description
        Previous 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 '-'"
      • changedInput schema / properties / view / description
        Previous 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..."
      • changedInput schema / properties / viewpoint_format / description
        Previous 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..."
    • Addedlist_coordination_issues_for_a_project_rest_v2_0
    • Removedlist_coordination_issues_for_a_project_rest_v2_0_v2_0
    • Changedlist_coordination_issues_in_recycle_bin22 fields changed
      • changedInput schema / properties / filters__assignee_company_id__ / description
        Previous value: -"Filter item(s) with matching assignee vendor companies."New value: +"Query string parameter — filter item(s) with matching assignee vendor companies."
      • changedInput schema / properties / filters__assignee_id__ / description
        Previous value: -"Filter item(s) with matching assignees."New value: +"Query string parameter — filter item(s) with matching assignees."
      • changedInput schema / properties / filters__coordination_issue_file_id__ / description
        Previous value: -"Filter item(s) with the exact coordination issue file."New value: +"Query string parameter — filter item(s) with the exact coordination issue file."
      • changedInput schema / properties / filters__created_at / description
        Previous 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."
      • changedInput schema / properties / filters__created_by_id__ / description
        Previous value: -"Filter item(s) with matching User IDs."New value: +"Query string parameter — filter item(s) with matching User IDs."
      • changedInput schema / properties / filters__created_from__ / description
        Previous value: -"Filter item(s) with matching creation source."New value: +"Query string parameter — filter item(s) with matching creation source."
      • changedInput schema / properties / filters__due_date / description
        Previous 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."
      • changedInput schema / properties / filters__ids__ / description
        Previous value: -"Filter item(s) with matching ids."New value: +"Query string parameter — filter item(s) with matching ids."
      • changedInput schema / properties / filters__include_sublocations / description
        Previous value: -"Use together with `filters[location_id]`\n"New value: +"Query string parameter — use together with `filters[location_id]`\n"
      • changedInput schema / properties / filters__issue_type__ / description
        Previous value: -"Filter item(s) with matching issue_type."New value: +"Query string parameter — filter item(s) with matching issue_type."
      • changedInput schema / properties / filters__location_id__ / description
        Previous value: -"Filter item(s) with matching locations."New value: +"Query string parameter — filter item(s) with matching locations."
      • changedInput schema / properties / filters__overdue / description
        Previous value: -"Filter item(s) with matching Overdue."New value: +"Query string parameter — filter item(s) with matching Overdue."
      • changedInput schema / properties / filters__priority__ / description
        Previous value: -"Filter item(s) with matching priority."New value: +"Query string parameter — filter item(s) with matching priority."
      • changedInput schema / properties / filters__search / description
        Previous 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."
      • changedInput schema / properties / filters__status__ / description
        Previous value: -"Filter item(s) with matching status."New value: +"Query string parameter — filter item(s) with matching status."
      • changedInput schema / properties / filters__trade_id__ / description
        Previous value: -"Filter item(s) with matching trades."New value: +"Query string parameter — filter item(s) with matching trades."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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 '-'"
      • changedInput schema / properties / view / description
        Previous 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..."
    • Addedlist_coordination_issues_workflow_issues
    • Removedlist_coordination_issues_workflow_issues_v2_0
    • Changedlist_correspondence_type_defaults4 fields changed
      • changedInput schema / properties / filters__generic_tool_id / description
        Previous 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)"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_correspondence_type_items22 fields changed
      • changedInput schema / properties / filters__closed_at / description
        Previous 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."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs."
      • changedInput schema / properties / filters__generic_tool_id / description
        Previous 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)"
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__issued_at / description
        Previous 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."
      • changedInput schema / properties / filters__location_id / description
        Previous 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)"
      • changedInput schema / properties / filters__login_information_id / description
        Previous 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."
      • changedInput schema / properties / filters__overdue / description
        Previous value: -"If true, returns item(s) that are overdue."New value: +"Query string parameter — if true, returns item(s) that are overdue."
      • changedInput schema / properties / filters__private / description
        Previous 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."
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query"
      • changedInput schema / properties / filters__received_from_id / description
        Previous value: -"Received From ID"New value: +"Query string parameter — filter results by received from id"
      • changedInput schema / properties / filters__recycle_bin / description
        Previous value: -"If true, returns item(s) that have been deleted."New value: +"Query string parameter — if true, returns item(s) that have been deleted."
      • changedInput schema / properties / filters__status / description
        Previous value: -"Returns item(s) matching the specified status value."New value: +"Query string parameter — returns item(s) matching the specified status value."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / filters__vendor_id / description
        Previous value: -"Return item(s) with the specified Vendor ID."New value: +"Query string parameter — return item(s) with the specified Vendor ID."
      • changedInput schema / properties / group / description
        Previous 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'."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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"
      • changedInput schema / properties / view / description
        Previous 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'."
    • Changedlist_correspondence_type_permissions3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_correspondence_type_users3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_correspondences_company4 fields changed
      • changedInput schema / properties / bid_package_id / description
        Previous value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_correspondences_project4 fields changed
      • changedInput schema / properties / bid_package_id / description
        Previous value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_cost_codes7 fields changed
      • changedInput schema / properties / filters__id / description
        Previous 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]"
      • changedInput schema / properties / filters__origin_id / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / sub_job_id / description
        Previous value: -"Unique identifier for the Sub Job"New value: +"Query string parameter — unique identifier for the Sub Job"
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedlist_cost_codes_for_timesheets4 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sub_job_id / description
        Previous value: -"Sub Job ID"New value: +"Query string parameter — unique identifier of the sub job"
    • Changedlist_cost_codes_ids_for_timesheets4 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sub_job_id / description
        Previous value: -"Sub Job ID"New value: +"Query string parameter — unique identifier of the sub job"
    • Removedlist_counts_of_daily_logs
    • Addedlist_counts_of_daily_logs_project
    • Addedlist_counts_of_daily_logs_project_v1_1
    • Removedlist_counts_of_daily_logs_v1_1
    • Changedlist_creation_source_filter_options4 fields changed
      • changedInput schema / properties / locale / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_creator_filter_options5 fields changed
      • changedInput schema / properties / filters__bim_file_id / description
        Previous value: -"Filter item(s) with matching BIM File ids"New value: +"Query string parameter — filter item(s) with matching BIM File ids"
      • changedInput schema / properties / locale / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Removedlist_custom_field_definitions
    • Addedlist_custom_field_definitions_company
    • Changedlist_custom_field_definitions_configurable_field_sets4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / custom_field_definition_id / description
        Previous value: -"Custom Field Definition ID"New value: +"URL path parameter — custom Field Definition ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Addedlist_custom_field_definitions_v1_0
    • Removedlist_custom_field_definitions_v1_1
    • Changedlist_custom_field_lov_entries8 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / custom_field_definition_id / description
        Previous value: -"Unique identifier for the Custom Field Definition."New value: +"URL path parameter — unique identifier for the Custom Field Definition."
      • changedInput schema / properties / filters__active / description
        Previous 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)"
      • changedInput schema / properties / filters__id / description
        Previous 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]"
      • changedInput schema / properties / filters__label_with / description
        Previous 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"
      • changedInput schema / properties / filters__start_with / description
        Previous value: -"return lov entries that label start with letters"New value: +"Query string parameter — return lov entries that label start with letters"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_custom_field_metadata8 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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."
      • changedInput schema / properties / filters__custom_field_definitions_id / description
        Previous 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."
      • changedInput schema / properties / filters__field_set_id__ / description
        Previous 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."
      • changedInput schema / properties / filters__field_set_type__ / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous 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."
      • changedInput schema / properties / view / description
        Previous 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..."
    • Changedlist_custom_field_sections3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_custom_fields_user_options5 fields changed
      • changedInput schema / properties / filters__search / description
        Previous value: -"filters results by the search query"New value: +"Query string parameter — filters results by the search query"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / tool_name / description
        Previous value: -"Tool name identifier"New value: +"URL path parameter — tool name identifier"
    • Changedlist_custom_tool_users3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_daily_construction_report_logs9 fields changed
      • changedInput schema / properties / end_date / description
        Previous 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)"
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Return item(s) created by the specified User ID"New value: +"Query string parameter — return item(s) created by the specified User ID"
      • changedInput schema / properties / filters__daily_log_segment_id / description
        Previous value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter"
      • changedInput schema / properties / filters__status / description
        Previous value: -"Filter on status for \"pending\" or \"approved\" or \"all\""New value: +"Query string parameter — filter on status for \"pending\" or \"approved\" or \"all\""
      • changedInput schema / properties / log_date / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / start_date / description
        Previous 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)"
    • Changedlist_daily_construction_report_logs_vendor_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedlist_default_correspondence_types
    • Removedlist_default_correspondence_types_v2_0
    • Changedlist_default_distribution_members4 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / vendor_id / description
        Previous value: -"Vendor ID"New value: +"Query string parameter — unique identifier of the vendor"
    • Addedlist_default_task_items_project_distribution_members
    • Removedlist_default_task_items_project_distribution_members_v2_0
    • Changedlist_delay_log_types4 fields changed
      • changedInput schema / properties / filters__visible / description
        Previous 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'"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_delay_logs9 fields changed
      • changedInput schema / properties / end_date / description
        Previous 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)"
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs."
      • changedInput schema / properties / filters__daily_log_segment_id / description
        Previous value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter"
      • changedInput schema / properties / filters__location_id / description
        Previous value: -"Return item(s) with the specified Location IDs."New value: +"Query string parameter — return item(s) with the specified Location IDs."
      • changedInput schema / properties / log_date / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / start_date / description
        Previous 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)"
    • Changedlist_deleted_payouts4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / disbursement_id / description
        Previous value: -"Unique identifier for the disbursement."New value: +"URL path parameter — unique identifier for the disbursement."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedlist_deleted_punch_items3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Removedlist_deleted_punch_items_v1_1
    • Changedlist_delivery_logs9 fields changed
      • changedInput schema / properties / end_date / description
        Previous 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)"
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs."
      • changedInput schema / properties / filters__daily_log_segment_id / description
        Previous value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter"
      • changedInput schema / properties / filters__status / description
        Previous value: -"Filter on status for \"pending\" or \"approved\" or \"all\""New value: +"Query string parameter — filter on status for \"pending\" or \"approved\" or \"all\""
      • changedInput schema / properties / log_date / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / start_date / description
        Previous 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)"
    • Changedlist_departments3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_direct_cost_items10 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__invoice_number / description
        Previous value: -"Returns item(s) with the specified Invoice Number."New value: +"Query string parameter — returns item(s) with the specified Invoice Number."
      • changedInput schema / properties / filters__origin_id / description
        Previous 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."
      • changedInput schema / properties / filters__payment_date / description
        Previous 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."
      • changedInput schema / properties / filters__received_date / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedlist_direct_cost_items_v1_1
    • Changedlist_direct_cost_line_items9 fields changed
      • changedInput schema / properties / direct_cost_id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the direct cost"
      • changedInput schema / properties / filters__cost_code_id / description
        Previous 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."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__line_item_type_id / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_distribution_groups7 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__search / description
        Previous value: -"Returns item(s) matching the specified search query string."New value: +"Query string parameter — returns item(s) matching the specified search query string."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous value: -"Return items with the specified sort."New value: +"Query string parameter — return items with the specified sort."
      • changedInput schema / properties / view / description
        Previous 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."
      • changedInput schema / properties / with_domain_users / description
        Previous 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."
    • Addedlist_distribution_groups_for_specifications
    • Removedlist_distribution_groups_for_specifications_v2_1
    • Changedlist_drawing_areas5 fields changed
      • addedInput schema / properties / filters__id
        Added 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"
        +}
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • addedInput schema / properties / view
        Added value: +{
        +  "description": "Query string parameter — specify response schema view",
        +  "enum": [
        +    "compact",
        +    "extended",
        +    "only_ids",
        +    "mfe"
        +  ],
        +  "type": "string"
        +}
    • Removedlist_drawing_areas_v1_1
    • Changedlist_drawing_disciplines5 fields changed
      • addedInput schema / properties / filters__id
        Added 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"
        +}
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • addedInput schema / properties / view
        Added value: +{
        +  "description": "Query string parameter — specify response schema view",
        +  "enum": [
        +    "only_ids"
        +  ],
        +  "type": "string"
        +}
    • Removedlist_drawing_disciplines_v1_1
    • Changedlist_drawing_revision_terms4 fields changed
      • changedInput schema / properties / drawing_revision_ids / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedlist_drawing_revision_terms_v1_1
    • Changedlist_drawing_revisions16 fields changed
      • changedInput schema / properties / drawing_area_id / description
        Previous value: -"Filter by Drawing Area"New value: +"Query string parameter — filter by Drawing Area"
      • changedInput schema / properties / drawing_discipline_id / description
        Previous value: -"Filter by Drawing Discipline"New value: +"Query string parameter — filter by Drawing Discipline"
      • changedInput schema / properties / drawing_id / description
        Previous value: -"Filter by Drawing"New value: +"Query string parameter — unique identifier of the drawing"
      • changedInput schema / properties / drawing_set_id / description
        Previous 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"
      • changedInput schema / properties / filters__deleted / description
        Previous 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."
      • changedInput schema / properties / filters__ids / description
        Previous 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"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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-..."
      • changedInput schema / properties / id / description
        Previous 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"
      • changedInput schema / properties / is_reviewed / description
        Previous value: -"Filter by `reviewed` status"New value: +"Query string parameter — filter by `reviewed` status"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / query / description
        Previous value: -"Filter by custom query"New value: +"Query string parameter — filter by custom query"
      • changedInput schema / properties / sort / description
        Previous value: -"Sort by field"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
      • changedInput schema / properties / view / description
        Previous 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'."
      • changedInput schema / properties / with_obsolete / description
        Previous 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."
    • Changedlist_drawing_sets8 fields changed
      • changedInput schema / properties / drawing_area_id / description
        Previous 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."
      • changedInput schema / properties / filters__exclude_empty_sets / description
        Previous 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."
      • changedInput schema / properties / filters__only_attachable_sets / description
        Previous 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."
      • changedInput schema / properties / filters__with_measurements / description
        Previous 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."
      • changedInput schema / properties / filters__with_sketches / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_drawing_tiles4 fields changed
      • changedInput schema / properties / drawing_revision_id / description
        Previous value: -"ID of the drawing revision"New value: +"URL path parameter — iD of the drawing revision"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_drawing_uploads4 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • addedInput schema / properties / view
        Added 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"
        +}
    • Removedlist_drawing_uploads_v1_1
    • Changedlist_drawings8 fields changed
      • changedInput schema / properties / drawing_area_id / description
        Previous value: -"ID of the drawing area"New value: +"URL path parameter — iD of the drawing area"
      • addedInput schema / properties / filters__drawing_discipline_id
        Added value: +{
        +  "description": "Query string parameter — returns a list of drawings that are linked to the provided drawing_discipline_id",
        +  "type": "number"
        +}
      • addedInput schema / properties / filters__drawing_set_id
        Added 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"
        +}
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • addedInput schema / properties / view
        Added 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"
        +}
      • addedInput schema / properties / with_position
        Added value: +{
        +  "description": "Query string parameter — returns a list of drawings conditionally ordered by position. By default, it will order by position.",
        +  "type": "boolean"
        +}
    • Removedlist_drawings_v1_1
    • Changedlist_dumpster_logs9 fields changed
      • changedInput schema / properties / end_date / description
        Previous 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)"
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs."
      • changedInput schema / properties / filters__daily_log_segment_id / description
        Previous value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter"
      • changedInput schema / properties / filters__vendor_id / description
        Previous value: -"Return item(s) with the specified Vendor IDs."New value: +"Query string parameter — return item(s) with the specified Vendor IDs."
      • changedInput schema / properties / log_date / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / start_date / description
        Previous 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)"
    • Changedlist_early_pay_programs4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page index of paginated results"New value: +"Query string parameter — page index of paginated results"
      • changedInput schema / properties / per_page / description
        Previous value: -"Page size of paginated results"New value: +"Query string parameter — page size of paginated results"
      • changedInput schema / properties / sort / description
        Previous value: -"Sort fields (createdAt, isActive)"New value: +"Query string parameter — sort fields (createdAt, isActive)"
    • Removedlist_ecrion_xml_and_template_for_meetings
    • Addedlist_ecrion_xml_and_template_for_meetings_project
    • Addedlist_ecrion_xml_and_template_for_meetings_v1_0
    • Removedlist_ecrion_xml_and_template_for_meetings_v1_1
    • Changedlist_environmental_types7 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__active / description
        Previous 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'."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous value: -"Environmental Types"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_environmentals7 fields changed
      • changedInput schema / properties / filters__environmental_type_id / description
        Previous value: -"Return item(s) with the specified Environmental Type ID."New value: +"Query string parameter — return item(s) with the specified Environmental Type ID."
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query"
      • changedInput schema / properties / incident_id / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_equipment3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_equipment_logs8 fields changed
      • changedInput schema / properties / end_date / description
        Previous 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)"
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Return item(s) created by the specified User ID"New value: +"Query string parameter — return item(s) created by the specified User ID"
      • changedInput schema / properties / filters__location_id / description
        Previous value: -"Return item(s) with the specified Location ID."New value: +"Query string parameter — return item(s) with the specified Location ID."
      • changedInput schema / properties / log_date / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / start_date / description
        Previous 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)"
    • Changedlist_equipment_maintenance_logs3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_equipment_timecard_entries_project9 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / end_date / description
        Previous 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."
      • changedInput schema / properties / filters__created_at / description
        Previous 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"
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs"New value: +"Query string parameter — return item(s) with the specified IDs"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / start_date / description
        Previous 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."
    • Changedlist_field_production_report_summary3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_filter_options_for_approvers3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_attachments3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_ball_in_court3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_ball_in_court_company3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_buffer_time3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_cost_code3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_created_by3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_created_via3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_current_revision3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_design_team_review_time3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_for_record_only3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_internal_review_time3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_is_rejected3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_lead_time3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_location3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_prepare_time3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_private3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_received_from3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_responsible_contractor3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_specification_area3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_specification_division3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_specification_section3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_submittal_manager3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter ��� page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_submittal_package3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_submittal_response3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_submittal_revision3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_submittal_scheduled_task3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_submittal_status3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_submittal_sub_job3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_submittal_unpackaged3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_submittal_workflow_template3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filter_options_for_type3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_filters_company3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedlist_filters_project5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / tab / description
        Previous value: -"Tab name"New value: +"Query string parameter — tab name"
      • changedInput schema / properties / tool / description
        Previous value: -"Tool name"New value: +"Query string parameter — tool name"
    • Changedlist_forms_on_a_project11 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs."
      • changedInput schema / properties / filters__form_template_id / description
        Previous 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."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • addedInput schema / properties / filters__private
        Added value: +{
        +  "description": "Query string parameter — if true, returns only item(s) with a `private` status.",
        +  "type": "boolean"
        +}
      • changedInput schema / properties / filters__search / description
        Previous value: -"Returns item(s) matching the specified search query string."New value: +"Query string parameter — returns item(s) matching the specified search query string."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Removedlist_forms_on_a_project_v1_1
    • Changedlist_generic_tool_items19 fields changed
      • changedInput schema / properties / filters__closed_at / description
        Previous 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."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__issued_at / description
        Previous 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."
      • changedInput schema / properties / filters__login_information_id / description
        Previous 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."
      • changedInput schema / properties / filters__overdue / description
        Previous value: -"If true, returns item(s) that are overdue."New value: +"Query string parameter — if true, returns item(s) that are overdue."
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query"
      • changedInput schema / properties / filters__received_from_id / description
        Previous value: -"Received From ID"New value: +"Query string parameter — filter results by received from id"
      • changedInput schema / properties / filters__recycle_bin / description
        Previous value: -"If true, returns item(s) that have been deleted."New value: +"Query string parameter — if true, returns item(s) that have been deleted."
      • changedInput schema / properties / filters__status / description
        Previous value: -"Returns item(s) matching the specified status value."New value: +"Query string parameter — returns item(s) matching the specified status value."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / filters__vendor_id / description
        Previous value: -"Return item(s) with the specified Vendor ID."New value: +"Query string parameter — return item(s) with the specified Vendor ID."
      • changedInput schema / properties / generic_tool_id / description
        Previous value: -"Unique identifier for the Generic Tool"New value: +"URL path parameter — unique identifier for the Generic Tool"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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"
      • changedInput schema / properties / view / description
        Previous value: -"If supplied customize the response format"New value: +"Query string parameter — if supplied customize the response format"
    • Changedlist_generic_tools4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__project_id / description
        Previous value: -"Return item(s) with the Project ID."New value: +"Query string parameter — return item(s) with the Project ID."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_gps_positions6 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_grouped_checklists_inspections24 fields changed
      • changedInput schema / properties / filters__closed_at / description
        Previous 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."
      • changedInput schema / properties / filters__closed_by_id / description
        Previous 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."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Return item(s) created by the specified User IDs"New value: +"Query string parameter — return item(s) created by the specified User IDs"
      • changedInput schema / properties / filters__due_at / description
        Previous value: -"Return item(s) due within the specified date range."New value: +"Query string parameter — return item(s) due within the specified date range."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__inspection_date / description
        Previous 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."
      • changedInput schema / properties / filters__inspection_type_id / description
        Previous 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."
      • changedInput schema / properties / filters__inspector_id / description
        Previous 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."
      • changedInput schema / properties / filters__list_template_id / description
        Previous 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."
      • changedInput schema / properties / filters__location_id / description
        Previous 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."
      • changedInput schema / properties / filters__managed_equipment_id / description
        Previous value: -"Return item(s) with the specified Managed Equipment ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment ID."
      • changedInput schema / properties / filters__point_of_contact_id / description
        Previous 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."
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query"
      • changedInput schema / properties / filters__responsible_contractor_id / description
        Previous 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."
      • changedInput schema / properties / filters__spec_section_id / description
        Previous 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."
      • changedInput schema / properties / filters__status / description
        Previous value: -"Return item(s) with the specified statuses"New value: +"Query string parameter — return item(s) with the specified statuses"
      • changedInput schema / properties / filters__trade_id / description
        Previous value: -"Trade ID"New value: +"Query string parameter — filter results by trade id"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / group_by / description
        Previous value: -"group_by"New value: +"Query string parameter — the group by for this Inspections operation"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_grouped_coordination_issue_status_count4 fields changed
      • changedInput schema / properties / filters__group_by / description
        Previous value: -"Filter status counts by group_by attribute."New value: +"Query string parameter — filter status counts by group_by attribute."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_grouped_recycled_checklists_inspections24 fields changed
      • changedInput schema / properties / filters__closed_at / description
        Previous 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."
      • changedInput schema / properties / filters__closed_by_id / description
        Previous 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."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Return item(s) created by the specified User IDs"New value: +"Query string parameter — return item(s) created by the specified User IDs"
      • changedInput schema / properties / filters__due_at / description
        Previous value: -"Return item(s) due within the specified date range."New value: +"Query string parameter — return item(s) due within the specified date range."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__inspection_date / description
        Previous 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."
      • changedInput schema / properties / filters__inspection_type_id / description
        Previous 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."
      • changedInput schema / properties / filters__inspector_id / description
        Previous 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."
      • changedInput schema / properties / filters__list_template_id / description
        Previous 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."
      • changedInput schema / properties / filters__location_id / description
        Previous 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."
      • changedInput schema / properties / filters__managed_equipment_id / description
        Previous value: -"Return item(s) with the specified Managed Equipment ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment ID."
      • changedInput schema / properties / filters__point_of_contact_id / description
        Previous 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."
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query"
      • changedInput schema / properties / filters__responsible_contractor_id / description
        Previous 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."
      • changedInput schema / properties / filters__spec_section_id / description
        Previous 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."
      • changedInput schema / properties / filters__status / description
        Previous value: -"Return item(s) with the specified statuses"New value: +"Query string parameter — return item(s) with the specified statuses"
      • changedInput schema / properties / filters__trade_id / description
        Previous value: -"Trade ID"New value: +"Query string parameter — filter results by trade id"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / group_by / description
        Previous value: -"group_by"New value: +"Query string parameter — the group by for this Inspections operation"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_harm_sources8 fields changed
      • changedInput schema / properties / all / description
        Previous value: -"Harm Sources"New value: +"Query string parameter — harm Sources"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__active / description
        Previous 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'."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_hazards7 fields changed
      • changedInput schema / properties / all / description
        Previous value: -"Both active and inactive Hazards"New value: +"Query string parameter — both active and inactive Hazards"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__active / description
        Previous 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'."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_image_categories3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_image_category_ids_that_contain_images4 fields changed
      • changedInput schema / properties / filters__updated_at / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_images19 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__daily_log_segment_id / description
        Previous value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter"
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__include_sublocations / description
        Previous value: -"Use together with `filters[location_id]`\n"New value: +"Query string parameter — use together with `filters[location_id]`\n"
      • changedInput schema / properties / filters__location_id / description
        Previous 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."
      • changedInput schema / properties / filters__log_date / description
        Previous 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\"."
      • changedInput schema / properties / filters__private / description
        Previous 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."
      • changedInput schema / properties / filters__projection / description
        Previous value: -"Return items with the specified projection type."New value: +"Query string parameter — return items with the specified projection type."
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query"
      • changedInput schema / properties / filters__starred / description
        Previous 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."
      • changedInput schema / properties / filters__trade_ids / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / filters__uploader_id / description
        Previous value: -"Return item(s) uploaded by the specified User IDs"New value: +"Query string parameter — return item(s) uploaded by the specified User IDs"
      • changedInput schema / properties / image_category_id / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / serializer_view / description
        Previous 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..."
      • changedInput schema / properties / sort / description
        Previous 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"
    • Changedlist_inactive_company_people13 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"ID of the Company"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / filters__connected / description
        Previous 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."
      • changedInput schema / properties / filters__is_employee / description
        Previous 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."
      • changedInput schema / properties / filters__job_title / description
        Previous value: -"Returns only people who have the specified job title."New value: +"Query string parameter — returns only people who have the specified job title."
      • changedInput schema / properties / filters__reference_users_only / description
        Previous value: -"If true, returns only people who are reference users."New value: +"Query string parameter — if true, returns only people who are reference users."
      • changedInput schema / properties / filters__search / description
        Previous 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."
      • changedInput schema / properties / filters__state_code / description
        Previous value: -"Returns only people who have the specified state code."New value: +"Query string parameter — returns only people who have the specified state code."
      • changedInput schema / properties / filters__trade_id / description
        Previous 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."
      • changedInput schema / properties / filters__vendor_id / description
        Previous value: -"Return item(s) with the specified Vendor IDs."New value: +"Query string parameter — return item(s) with the specified Vendor IDs."
      • changedInput schema / properties / filters__without_reference_users / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedlist_inactive_project_people17 fields changed
      • changedInput schema / properties / filters__connected / description
        Previous 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."
      • changedInput schema / properties / filters__country_code / description
        Previous value: -"Returns only people who have the specified country code."New value: +"Query string parameter — returns only people who have the specified country code."
      • changedInput schema / properties / filters__include_company_people / description
        Previous 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..."
      • changedInput schema / properties / filters__is_employee / description
        Previous 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."
      • changedInput schema / properties / filters__job_title / description
        Previous value: -"Returns only people who have the specified job title."New value: +"Query string parameter — returns only people who have the specified job title."
      • changedInput schema / properties / filters__permission_template_id / description
        Previous 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."
      • changedInput schema / properties / filters__reference_users_only / description
        Previous value: -"If true, returns only people who are reference users."New value: +"Query string parameter — if true, returns only people who are reference users."
      • changedInput schema / properties / filters__search / description
        Previous 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."
      • changedInput schema / properties / filters__state_code / description
        Previous value: -"Returns only people who have the specified state code."New value: +"Query string parameter — returns only people who have the specified state code."
      • changedInput schema / properties / filters__trade_id / description
        Previous 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."
      • changedInput schema / properties / filters__vendor_id / description
        Previous value: -"Return item(s) with the specified Vendor IDs."New value: +"Query string parameter — return item(s) with the specified Vendor IDs."
      • changedInput schema / properties / filters__without_reference_users / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"ID of the project"New value: +"URL path parameter — unique identifier for the Procore project"
      • changedInput schema / properties / sort / description
        Previous value: -"Return items with the specified sort"New value: +"Query string parameter — return items with the specified sort"
      • changedInput schema / properties / view / description
        Previous 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..."
    • Changedlist_incident_action_types7 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__active / description
        Previous 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'."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_incident_alert_recipients5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / severity_level_id / description
        Previous value: -"Incident Severity Level ID"New value: +"URL path parameter — incident Severity Level ID"
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_incident_alerts12 fields changed
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__incident_id / description
        Previous value: -"Return item(s) with the specified Incident IDs."New value: +"Query string parameter — return item(s) with the specified Incident IDs."
      • changedInput schema / properties / filters__injury_id / description
        Previous value: -"Return item(s) with the specified Injury IDs."New value: +"Query string parameter — return item(s) with the specified Injury IDs."
      • changedInput schema / properties / filters__recipient_id / description
        Previous value: -"Return item(s) with the specified recipient (User) IDs"New value: +"Query string parameter — return item(s) with the specified recipient (User) IDs"
      • changedInput schema / properties / filters__severity_level_id / description
        Previous 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"
      • changedInput schema / properties / filters__triggered_by_id / description
        Previous 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"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_incident_filing_types6 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_incident_severity_levels8 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__email_trigger / description
        Previous value: -"Return item(s) set to trigger email notifications."New value: +"Query string parameter — return item(s) set to trigger email notifications."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__push_notification_trigger / description
        Previous value: -"Return item(s) set to trigger push notifications."New value: +"Query string parameter — return item(s) set to trigger push notifications."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_incidents19 fields changed
      • changedInput schema / properties / filters__assignee_id / description
        Previous 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."
      • changedInput schema / properties / filters__contributing_behavior_id / description
        Previous 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."
      • changedInput schema / properties / filters__contributing_condition_id / description
        Previous 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."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__custom_status_id / description
        Previous value: -"Return item(s) with the specified Custom Status IDs"New value: +"Query string parameter — return item(s) with the specified Custom Status IDs"
      • changedInput schema / properties / filters__event_date / description
        Previous 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."
      • changedInput schema / properties / filters__hazard_id / description
        Previous 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."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__location_id / description
        Previous value: -"Return item(s) with the specified Location IDs."New value: +"Query string parameter — return item(s) with the specified Location IDs."
      • changedInput schema / properties / filters__query / description
        Previous 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..."
      • changedInput schema / properties / filters__recordable / description
        Previous value: -"Return item(s) that are recordable."New value: +"Query string parameter — return item(s) that are recordable."
      • changedInput schema / properties / filters__status / description
        Previous value: -"Returns item(s) matching the specified status value."New value: +"Query string parameter — returns item(s) matching the specified status value."
      • changedInput schema / properties / filters__time_unknown / description
        Previous 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."
      • changedInput schema / properties / filters__type_id / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_injuries18 fields changed
      • changedInput schema / properties / filters__affected_body_part / description
        Previous 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."
      • changedInput schema / properties / filters__affected_company_id / description
        Previous 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."
      • changedInput schema / properties / filters__affected_party_id / description
        Previous 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."
      • changedInput schema / properties / filters__affected_person_id / description
        Previous 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."
      • changedInput schema / properties / filters__affliction_type_id / description
        Previous value: -"Return item(s) with the specified Affliction Type IDs"New value: +"Query string parameter — return item(s) with the specified Affliction Type IDs"
      • changedInput schema / properties / filters__body_part_id / description
        Previous value: -"Return item(s) with the specified Body Part IDs"New value: +"Query string parameter — return item(s) with the specified Body Part IDs"
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__filing_type / description
        Previous 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."
      • changedInput schema / properties / filters__harm_source_id / description
        Previous 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."
      • changedInput schema / properties / filters__managed_equipment_id / description
        Previous value: -"Return item(s) with the specified Managed Equipment ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment ID."
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing query"New value: +"Query string parameter — return item(s) containing query"
      • changedInput schema / properties / filters__recordable / description
        Previous value: -"Return item(s) that are recordable."New value: +"Query string parameter — return item(s) that are recordable."
      • changedInput schema / properties / filters__work_activity_id / description
        Previous 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."
      • changedInput schema / properties / incident_id / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_inspection_item_references9 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return References with the specified IDs"New value: +"Query string parameter — return References with the specified IDs"
      • changedInput schema / properties / filters__item_id / description
        Previous value: -"Return Reference(s) with the specified Item IDs"New value: +"Query string parameter — return Reference(s) with the specified Item IDs"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / inspection_id / description
        Previous value: -"Unique identifier for the inspection."New value: +"URL path parameter — unique identifier for the inspection."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_inspection_logs9 fields changed
      • changedInput schema / properties / end_date / description
        Previous 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)"
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs."
      • changedInput schema / properties / filters__daily_log_segment_id / description
        Previous value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter"
      • changedInput schema / properties / filters__location_id / description
        Previous value: -"Return item(s) with the specified Location IDs."New value: +"Query string parameter — return item(s) with the specified Location IDs."
      • changedInput schema / properties / log_date / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / start_date / description
        Previous 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)"
    • Changedlist_inspection_types3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Addedlist_inspection_users
    • Removedlist_inspection_users_v1_1
    • Changedlist_inspectors3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_instruction_types_on_a_project3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_instructions_on_a_project3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_item_response_sets8 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__active / description
        Previous 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'."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_lien_waivers4 fields changed
      • changedInput schema / properties / invoice_id / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_line_item_types5 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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."
      • changedInput schema / properties / filters__origin_id / description
        Previous value: -"Origin ID"New value: +"Query string parameter — filter results by origin id"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous 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."
    • Changedlist_links3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_location_filter_options5 fields changed
      • changedInput schema / properties / filters__bim_file_id / description
        Previous value: -"Filter item(s) with matching BIM File ids"New value: +"Query string parameter — filter item(s) with matching BIM File ids"
      • changedInput schema / properties / locale / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_locations3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_lookaheads3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedlist_lookaheads_v1_1
    • Changedlist_manpower_logs12 fields changed
      • changedInput schema / properties / end_date / description
        Previous 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)"
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs."
      • changedInput schema / properties / filters__daily_log_segment_id / description
        Previous value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter"
      • changedInput schema / properties / filters__location_id / description
        Previous value: -"Return item(s) with the specified Location IDs."New value: +"Query string parameter — return item(s) with the specified Location IDs."
      • changedInput schema / properties / filters__search / description
        Previous value: -"Returns item(s) matching the specified search query string."New value: +"Query string parameter — returns item(s) matching the specified search query string."
      • changedInput schema / properties / filters__status / description
        Previous value: -"Filter on status for \"pending\" or \"approved\" or \"all\""New value: +"Query string parameter — filter on status for \"pending\" or \"approved\" or \"all\""
      • changedInput schema / properties / filters__vendor_id / description
        Previous value: -"Return item(s) with the specified Vendor IDs."New value: +"Query string parameter — return item(s) with the specified Vendor IDs."
      • changedInput schema / properties / log_date / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / start_date / description
        Previous 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)"
    • Changedlist_manpower_logs_contact_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_manpower_logs_vendor_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_manual_forecast_line_items3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_manual_holds_for_a_given_invoice4 fields changed
      • changedInput schema / properties / invoice_id / description
        Previous value: -"Unique identifier of the invoice to retrieve manual holds"New value: +"Query string parameter — unique identifier of the invoice to retrieve manual holds"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_materials3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_meeting_categories4 fields changed
      • changedInput schema / properties / meeting_id / description
        Previous value: -"ID of the meeting"New value: +"Query string parameter — unique identifier of the meeting"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_meeting_templates3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Removedlist_meetings
    • Addedlist_meetings_project
    • Addedlist_meetings_v1_0
    • Removedlist_meetings_v1_1
    • Changedlist_monitoring_resources4 fields changed
      • changedInput schema / properties / forecast_start_date / description
        Previous 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)"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_near_misses13 fields changed
      • changedInput schema / properties / filters__affected_company_id / description
        Previous 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."
      • changedInput schema / properties / filters__affected_party_id / description
        Previous 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."
      • changedInput schema / properties / filters__affected_person_id / description
        Previous 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."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__harm_source_id / description
        Previous 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."
      • changedInput schema / properties / filters__managed_equipment_id / description
        Previous value: -"Return item(s) with the specified Managed Equipment ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment ID."
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing query"New value: +"Query string parameter — return item(s) containing query"
      • changedInput schema / properties / filters__work_activity_id / description
        Previous 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."
      • changedInput schema / properties / incident_id / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_notes_logs10 fields changed
      • changedInput schema / properties / end_date / description
        Previous 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)"
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Return item(s) created by the specified User ID"New value: +"Query string parameter — return item(s) created by the specified User ID"
      • changedInput schema / properties / filters__daily_log_segment_id / description
        Previous value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter"
      • changedInput schema / properties / filters__location_id / description
        Previous 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)"
      • changedInput schema / properties / filters__status / description
        Previous value: -"Filter on status for \"pending\" or \"approved\" or \"all\""New value: +"Query string parameter — filter on status for \"pending\" or \"approved\" or \"all\""
      • changedInput schema / properties / log_date / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / start_date / description
        Previous 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)"
    • Changedlist_observation_assignee_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_observation_category_configurable_field_sets3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_observation_default_distribution_members3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_observation_item_response_logs4 fields changed
      • changedInput schema / properties / item_id / description
        Previous value: -"Observation Item ID"New value: +"URL path parameter — unique identifier of the item"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_observation_items16 fields changed
      • changedInput schema / properties / filters__assignee_company_id / description
        Previous 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."
      • changedInput schema / properties / filters__assignee_id / description
        Previous value: -"Return item(s) assigned to the specified User ID."New value: +"Query string parameter — return item(s) assigned to the specified User ID."
      • changedInput schema / properties / filters__checklist_item_id / description
        Previous 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)."
      • changedInput schema / properties / filters__checklist_list_id / description
        Previous 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."
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__location_id / description
        Previous value: -"Return item(s) with the specified Location IDs."New value: +"Query string parameter — return item(s) with the specified Location IDs."
      • changedInput schema / properties / filters__priority / description
        Previous value: -"Return item(s) with the specified priorities.\n"New value: +"Query string parameter — return item(s) with the specified priorities.\n"
      • changedInput schema / properties / filters__search / description
        Previous value: -"Return item(s) matching the specified Search query."New value: +"Query string parameter — return item(s) matching the specified Search query."
      • changedInput schema / properties / filters__status / description
        Previous 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```"
      • changedInput schema / properties / filters__trade_ids / description
        Previous 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."
      • changedInput schema / properties / filters__type_id / description
        Previous value: -"Return item(s) with the specified Observation Type ID."New value: +"Query string parameter — return item(s) with the specified Observation Type ID."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_observation_potential_distribution_members4 fields changed
      • changedInput schema / properties / filters__search / description
        Previous value: -"Return item(s) matching the specified Search query."New value: +"Query string parameter — return item(s) matching the specified Search query."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_observation_types4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_observations_response_logs5 fields changed
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_of_actual_production_quantity_ids9 fields changed
      • changedInput schema / properties / filters__crew_id / description
        Previous 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."
      • changedInput schema / properties / filters__date / description
        Previous 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."
      • changedInput schema / properties / filters__location_id / description
        Previous 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."
      • changedInput schema / properties / filters__timesheet_id / description
        Previous 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."
      • changedInput schema / properties / filters__unit_of_measure / description
        Previous value: -"Return item(s) with the specified unit of measure."New value: +"Query string parameter — return item(s) with the specified unit of measure."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_of_all_time_and_material_equipment_logs3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedlist_of_budget_change_histories
    • Removedlist_of_budget_change_histories_v2_0
    • Addedlist_of_change_history_events_for_an_action_plan
    • Removedlist_of_change_history_events_for_an_action_plan_v2_0
    • Changedlist_of_company_action_plan_templates8 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_type_id / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous 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."
    • Removedlist_of_company_action_plan_templates_v1_1
    • Changedlist_of_company_level_emails5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / topic_id / description
        Previous value: -"Topic ID"New value: +"Query string parameter — unique identifier of the topic"
      • changedInput schema / properties / topic_type / description
        Previous 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"
    • Changedlist_of_deleted_submittals21 fields changed
      • changedInput schema / properties / filters__approver_id / description
        Previous 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."
      • changedInput schema / properties / filters__ball_in_court_id / description
        Previous 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."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__current_revision / description
        Previous 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."
      • changedInput schema / properties / filters__division / description
        Previous 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."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__location_id / description
        Previous 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."
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query"
      • changedInput schema / properties / filters__received_from_id / description
        Previous value: -"Received From ID"New value: +"Query string parameter — filter results by received from id"
      • changedInput schema / properties / filters__response_id / description
        Previous 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."
      • changedInput schema / properties / filters__responsible_contractor_id / description
        Previous 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."
      • changedInput schema / properties / filters__specification_section_id / description
        Previous 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."
      • changedInput schema / properties / filters__status_id / description
        Previous 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."
      • changedInput schema / properties / filters__submittal_manager_id / description
        Previous 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."
      • changedInput schema / properties / filters__submittal_package_id / description
        Previous 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."
      • changedInput schema / properties / filters__type / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Removedlist_of_deleted_submittals_v1_1
    • Addedlist_of_document_revisions_company
    • Removedlist_of_document_revisions_company_v2_0
    • Addedlist_of_document_revisions_project
    • Removedlist_of_document_revisions_project_v2_0
    • Changedlist_of_emails5 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / topic_id / description
        Previous value: -"Topic ID"New value: +"Query string parameter — unique identifier of the topic"
      • changedInput schema / properties / topic_type / description
        Previous 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"
    • Changedlist_of_number_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_of_project_action_plan_templates9 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__provider_type / description
        Previous value: -"Return item(s) with the specified Provider Type(s)"New value: +"Query string parameter — return item(s) with the specified Provider Type(s)"
      • changedInput schema / properties / filters__type_id / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_of_punch_list_assignee_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_of_punch_list_vendor_filter_options3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_of_purchase_order_contracts10 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__include_deleted / description
        Previous 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."
      • changedInput schema / properties / filters__origin_id / description
        Previous 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."
      • changedInput schema / properties / filters__status / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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."
    • Addedlist_operations
    • Removedlist_operations_v2_0
    • Changedlist_payee_bank_details2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / payeeExternalIds / description
        Previous value: -"payeeExternalIds"New value: +"JSON request body field — the payeeexternalids for this Payments operation"
    • Changedlist_payment_applications_owner_invoices_for_a_project3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_payment_applications_owner_invoices_for_prime_contract6 fields changed
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs"New value: +"Query string parameter — return item(s) with the specified IDs"
      • changedInput schema / properties / filters__is_last / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page (default 30)"New value: +"Query string parameter — elements per page (default 30)"
      • changedInput schema / properties / prime_contract_id / description
        Previous value: -"Prime Contract ID"New value: +"URL path parameter — unique identifier of the prime contract"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_payment_project_configurations4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / search / description
        Previous value: -"Search query to filter records by"New value: +"Query string parameter — search query to filter records by"
    • Changedlist_payments_beneficiaries3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedlist_payments_subtier_waivers5 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"ID of the project"New value: +"URL path parameter — unique identifier for the Procore project"
      • changedInput schema / properties / subtier_requisition_id / description
        Previous 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"
      • changedInput schema / properties / waiver_type / description
        Previous 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\""
    • Changedlist_payments_subtiers_for_the_commitment5 fields changed
      • changedInput schema / properties / commitment_id / description
        Previous value: -"ID of the commitment"New value: +"URL path parameter — iD of the commitment"
      • changedInput schema / properties / id / description
        Previous value: -"Unique identifier of the subtier"New value: +"Query string parameter — unique identifier of the subtier"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"ID of the project"New value: +"URL path parameter — unique identifier for the Procore project"
    • Changedlist_payments_subtiers_for_the_requisition6 fields changed
      • changedInput schema / properties / commitment_id / description
        Previous value: -"Unique identifier of the commitment"New value: +"Query string parameter — unique identifier of the commitment"
      • changedInput schema / properties / id / description
        Previous value: -"Unique identifier of the subtier"New value: +"Query string parameter — unique identifier of the subtier"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"ID of the project"New value: +"URL path parameter — unique identifier for the Procore project"
      • changedInput schema / properties / requisition_id / description
        Previous value: -"ID of the requisition"New value: +"URL path parameter — iD of the requisition"
    • Changedlist_pdf_template_configs8 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__only_parent / description
        Previous value: -"Return only parent records."New value: +"Query string parameter — return only parent records."
      • changedInput schema / properties / filters__project_id / description
        Previous value: -"Return item(s) with the Project ID."New value: +"Query string parameter — return item(s) with the Project ID."
      • changedInput schema / properties / filters__record_generic_tool_id / description
        Previous value: -"Return item(s) with the specified Generic Tool ID."New value: +"Query string parameter — return item(s) with the specified Generic Tool ID."
      • changedInput schema / properties / filters__template_name / description
        Previous value: -"Return item(s) with provided template_name."New value: +"Query string parameter — return item(s) with provided template_name."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / scope / description
        Previous value: -"Return only scoped records."New value: +"Query string parameter — return only scoped records."
    • Changedlist_permission_templates5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__type / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedlist_permission_templates_for_a_company_user4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / user_id / description
        Previous value: -"User ID"New value: +"URL path parameter — unique identifier of the user"
    • Changedlist_plan_revision_logs8 fields changed
      • changedInput schema / properties / end_date / description
        Previous 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)"
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs."
      • changedInput schema / properties / filters__daily_log_segment_id / description
        Previous value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter"
      • changedInput schema / properties / log_date / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / start_date / description
        Previous 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)"
    • Addedlist_possible_assignees_company
    • Removedlist_possible_assignees_company_v2_0
    • Addedlist_possible_assignees_project
    • Removedlist_possible_assignees_project_v2_0
    • Changedlist_possible_tool_filter_values6 fields changed
      • changedInput schema / properties / filter_name / description
        Previous value: -"Filter name"New value: +"URL path parameter — the filter name for this Portfolio operation"
      • changedInput schema / properties / id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / tab / description
        Previous value: -"Tab name"New value: +"Query string parameter — tab name"
      • changedInput schema / properties / tool / description
        Previous value: -"Tool name"New value: +"Query string parameter — tool name"
    • Changedlist_potential_change_order_line_items9 fields changed
      • changedInput schema / properties / filters__cost_code_id / description
        Previous 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."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__line_item_type_id / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / potential_change_order_id / description
        Previous value: -"Potential Change Order ID"New value: +"URL path parameter — potential Change Order ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_potential_change_orders13 fields changed
      • changedInput schema / properties / filters__contract_id / description
        Previous 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."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__due_date / description
        Previous 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."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__include_deleted / description
        Previous 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."
      • changedInput schema / properties / filters__invoiced_date / description
        Previous 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."
      • changedInput schema / properties / filters__origin_id / description
        Previous 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."
      • changedInput schema / properties / filters__paid_date / description
        Previous 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."
      • changedInput schema / properties / filters__reviewed_at / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Addedlist_potential_distribution_members_for_specifications
    • Removedlist_potential_distribution_members_for_specifications_v2_1
    • Changedlist_potential_points_of_contact4 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / vendor_id / description
        Previous value: -"Vendor ID"New value: +"Query string parameter — unique identifier of the vendor"
    • Addedlist_prime_change_order_line_items
    • Removedlist_prime_change_order_line_items_v2_0
    • Removedlist_prime_contract_line_items
    • Addedlist_prime_contract_line_items_project
    • Addedlist_prime_contract_line_items_v1_0
    • Removedlist_prime_contract_line_items_v2_0
    • Addedlist_prime_contracts
    • Removedlist_prime_contracts_v2_0
    • Changedlist_productivity_logs8 fields changed
      • changedInput schema / properties / end_date / description
        Previous 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)"
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs."
      • changedInput schema / properties / filters__daily_log_segment_id / description
        Previous value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter"
      • changedInput schema / properties / log_date / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / start_date / description
        Previous 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)"
    • Changedlist_programs3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_programs_for_a_company_user5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / scope / description
        Previous 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..."
      • changedInput schema / properties / user_id / description
        Previous value: -"User ID"New value: +"URL path parameter — unique identifier of the user"
    • Changedlist_project_action_plan_template_items9 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_template_id / description
        Previous 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."
      • changedInput schema / properties / filters__plan_template_section_id / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_project_action_plan_template_references9 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_template_id / description
        Previous 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."
      • changedInput schema / properties / filters__plan_template_item_id / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_project_action_plan_template_sections8 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_template_id / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_project_action_plan_template_test_record_requests10 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_template_id / description
        Previous 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)."
      • changedInput schema / properties / filters__plan_template_item_id / description
        Previous 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)."
      • changedInput schema / properties / filters__type / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_project_assignments_for_a_company_user16 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / direction / description
        Previous value: -"Sort direction. Default is ascending, nulls first."New value: +"Query string parameter — sort direction. Default is ascending, nulls first."
      • changedInput schema / properties / filters__active / description
        Previous 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'."
      • changedInput schema / properties / filters__assignment_status / description
        Previous value: -"Filters projects to those matching the given assignment status."New value: +"Query string parameter — filters projects to those matching the given assignment status."
      • changedInput schema / properties / filters__by_program / description
        Previous 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)."
      • changedInput schema / properties / filters__by_region / description
        Previous 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)."
      • changedInput schema / properties / filters__by_stage / description
        Previous 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)."
      • changedInput schema / properties / filters__by_status / description
        Previous 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."
      • changedInput schema / properties / filters__by_type / description
        Previous 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)."
      • changedInput schema / properties / filters__name / description
        Previous value: -"Filter item(s) with matching name."New value: +"Query string parameter — filter item(s) with matching name."
      • changedInput schema / properties / filters__project_permission_templates / description
        Previous 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)."
      • changedInput schema / properties / filters__project_roles / description
        Previous value: -"Return item(s) with the Project Role ID(s)."New value: +"Query string parameter — return item(s) with the Project Role ID(s)."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous value: -"Sort the results by the specified field."New value: +"Query string parameter — sort the results by the specified field."
      • changedInput schema / properties / user_id / description
        Previous value: -"User ID"New value: +"URL path parameter — unique identifier of the user"
    • Changedlist_project_bid_types3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_project_checklist_templates9 fields changed
      • changedInput schema / properties / filters__inspection_type_id / description
        Previous 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."
      • addedInput schema / properties / filters__needs_update
        Added value: +{
        +  "description": "Query string parameter — boolean. Return template(s) whose configuration is in need of updates.",
        +  "type": "boolean"
        +}
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query"
      • changedInput schema / properties / filters__response_set_id / description
        Previous 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."
      • changedInput schema / properties / filters__trade_ids / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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'."
    • Removedlist_project_checklist_templates_v1_1
    • Changedlist_project_configurable_field_sets11 fields changed
      • changedInput schema / properties / action_plan_type_id / description
        Previous value: -"Filter by Action Plan type id."New value: +"Query string parameter — filter by Action Plan type id."
      • changedInput schema / properties / category / description
        Previous value: -"Filter by category."New value: +"Query string parameter — filter by category."
      • changedInput schema / properties / generic_tool_id / description
        Previous 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."
      • changedInput schema / properties / include_default_configurable_field_sets / description
        Previous 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."
      • changedInput schema / properties / include_lov_entries / description
        Previous 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)"
      • changedInput schema / properties / inspection_type_id / description
        Previous value: -"Filter by inspection type id."New value: +"Query string parameter — filter by inspection type id."
      • changedInput schema / properties / observations_category_id / description
        Previous value: -"Filter by observations category id."New value: +"Query string parameter — filter by observations category id."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / types__ / description
        Previous value: -"Filter by of configurable field set types"New value: +"Query string parameter — filter by of configurable field set types"
    • Changedlist_project_cost_codes3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_project_country_codes3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedlist_project_dates_company
    • Changedlist_project_dates_v1_03 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_project_dates_v1_0_23 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Removedlist_project_dates_v2_0
    • Changedlist_project_distribution_groups_v1_010 fields changed
      • changedInput schema / properties / domain_id / description
        Previous 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..."
      • changedInput schema / properties / filters__search / description
        Previous value: -"Returns item(s) matching the specified search query string."New value: +"Query string parameter — returns item(s) matching the specified search query string."
      • changedInput schema / properties / include_ancestors / description
        Previous 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 ..."
      • changedInput schema / properties / min_ual / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"Return items with the specified sort."New value: +"Query string parameter — return items with the specified sort."
      • changedInput schema / properties / ual / description
        Previous 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..."
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedlist_project_distribution_groups_v1_0_29 fields changed
      • changedInput schema / properties / domain_id / description
        Previous 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..."
      • changedInput schema / properties / filters__search / description
        Previous value: -"Returns item(s) matching the specified search query string."New value: +"Query string parameter — returns item(s) matching the specified search query string."
      • changedInput schema / properties / min_ual / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"Return items with the specified sort."New value: +"Query string parameter — return items with the specified sort."
      • changedInput schema / properties / ual / description
        Previous 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..."
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedlist_project_document_custom_tags4 fields changed
      • changedInput schema / properties / filters__document_id / description
        Previous value: -"ID of the Folder or File"New value: +"Query string parameter — iD of the Folder or File"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_project_equipment_logs3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_project_equipment_maintenance_logs3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_project_folders_and_files6 fields changed
      • changedInput schema / properties / exclude_files / description
        Previous 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."
      • changedInput schema / properties / exclude_folders / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / show_latest_file_version_only / description
        Previous 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."
    • Changedlist_project_inactive_users4 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"Return items with the specified sort."New value: +"Query string parameter — return items with the specified sort."
    • Changedlist_project_inactive_vendors5 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"Return items with the specified sort"New value: +"Query string parameter — return items with the specified sort"
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedlist_project_inspection_template_item_reference9 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return References with the specified IDs"New value: +"Query string parameter — return References with the specified IDs"
      • changedInput schema / properties / filters__item_id / description
        Previous 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"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / inspection_template_id / description
        Previous value: -"The ID of the Project Inspection Template"New value: +"URL path parameter — the ID of the Project Inspection Template"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_project_insurances4 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous value: -"Extended view of data"New value: +"Query string parameter — extended view of data"
    • Changedlist_project_job_titles3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedlist_project_links
    • Removedlist_project_links_v2_0
    • Changedlist_project_locations13 fields changed
      • changedInput schema / properties / filters__code / description
        Previous 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."
      • changedInput schema / properties / filters__depth_range / description
        Previous 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"
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__parent_id / description
        Previous value: -"Return location(s) with the specified parent_ids."New value: +"Query string parameter — return location(s) with the specified parent_ids."
      • changedInput schema / properties / filters__search / description
        Previous value: -"Returns item(s) matching the specified search query string."New value: +"Query string parameter — returns item(s) matching the specified search query string."
      • changedInput schema / properties / filters__search_with_code / description
        Previous 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"
      • changedInput schema / properties / filters__sublocations_for / description
        Previous value: -"Return sublocations (descendants) of the specified location ids."New value: +"Query string parameter — return sublocations (descendants) of the specified location ids."
      • changedInput schema / properties / filters__superlocations_for / description
        Previous value: -"Return superlocations (ancestors) of the specified location ids."New value: +"Query string parameter — return superlocations (ancestors) of the specified location ids."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_project_memberships3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_project_names_for_a_company_user5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / scope / description
        Previous 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..."
      • changedInput schema / properties / user_id / description
        Previous value: -"User ID"New value: +"URL path parameter — unique identifier of the user"
    • Changedlist_project_numbers_for_a_company_user5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / scope / description
        Previous 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..."
      • changedInput schema / properties / user_id / description
        Previous value: -"User ID"New value: +"URL path parameter — unique identifier of the user"
    • Changedlist_project_observation_types4 fields changed
      • changedInput schema / properties / filters__active / description
        Previous value: -"Filter by `active` status"New value: +"Query string parameter — filter by `active` status"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_project_owner_types3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_project_people17 fields changed
      • changedInput schema / properties / filters__connected / description
        Previous 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."
      • changedInput schema / properties / filters__country_code / description
        Previous value: -"Returns only people who have the specified country code."New value: +"Query string parameter — returns only people who have the specified country code."
      • changedInput schema / properties / filters__include_company_people / description
        Previous 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..."
      • changedInput schema / properties / filters__is_employee / description
        Previous 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."
      • changedInput schema / properties / filters__job_title / description
        Previous value: -"Returns only people who have the specified job title."New value: +"Query string parameter — returns only people who have the specified job title."
      • changedInput schema / properties / filters__permission_template_id / description
        Previous 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."
      • changedInput schema / properties / filters__reference_users_only / description
        Previous value: -"If true, returns only people who are reference users."New value: +"Query string parameter — if true, returns only people who are reference users."
      • changedInput schema / properties / filters__search / description
        Previous 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."
      • changedInput schema / properties / filters__state_code / description
        Previous value: -"Returns only people who have the specified state code."New value: +"Query string parameter — returns only people who have the specified state code."
      • changedInput schema / properties / filters__trade_id / description
        Previous 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."
      • changedInput schema / properties / filters__vendor_id / description
        Previous value: -"Return item(s) with the specified Vendor IDs."New value: +"Query string parameter — return item(s) with the specified Vendor IDs."
      • changedInput schema / properties / filters__without_reference_users / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"Return items with the specified sort"New value: +"Query string parameter — return items with the specified sort"
      • changedInput schema / properties / view / description
        Previous 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..."
    • Changedlist_project_permission_templates3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_project_punch_item_templates6 fields changed
      • changedInput schema / properties / filters__active / description
        Previous 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'."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_project_regions3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_project_roles5 fields changed
      • changedInput schema / properties / filters__add_to_project_team / description
        Previous 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."
      • changedInput schema / properties / filters__created_at / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_project_segment_items11 fields changed
      • changedInput schema / properties / include_action_policy / description
        Previous value: -"include_action_policy"New value: +"Query string parameter — include_action_policy"
      • changedInput schema / properties / include_sub_job_cost_codes / description
        Previous value: -"include_sub_job_cost_codes"New value: +"Query string parameter — include_sub_job_cost_codes"
      • changedInput schema / properties / legacy_cost_code_id / description
        Previous value: -"legacy_cost_code_id"New value: +"Query string parameter — unique identifier of the legacy cost code"
      • changedInput schema / properties / legacy_sub_job_id / description
        Previous 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."
      • changedInput schema / properties / only_active_items / description
        Previous value: -"only_active_items"New value: +"Query string parameter — the only active items for this Work Breakdown Structure operation"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / segment_id / description
        Previous value: -"Segment ID"New value: +"URL path parameter — unique identifier of the segment"
      • changedInput schema / properties / with_descendant_counts / description
        Previous value: -"with_descendant_counts"New value: +"Query string parameter — with_descendant_counts"
      • changedInput schema / properties / with_sub_job_cost_codes_count / description
        Previous 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."
    • Changedlist_project_stages4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous 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"
    • Changedlist_project_stages_for_a_company_user5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / scope / description
        Previous 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..."
      • changedInput schema / properties / user_id / description
        Previous value: -"User ID"New value: +"URL path parameter — unique identifier of the user"
    • Changedlist_project_state_codes4 fields changed
      • changedInput schema / properties / country_code / description
        Previous value: -"Code that identifies a country"New value: +"Query string parameter — code that identifies a country"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedlist_project_status_snapshots
    • Removedlist_project_status_snapshots_v2_0
    • Changedlist_project_templates3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_project_tools_v1_06 fields changed
      • changedInput schema / properties / filters__is_active / description
        Previous value: -"Retrieve active or inactive tools."New value: +"Query string parameter — retrieve active or inactive tools."
      • changedInput schema / properties / for_mobile / description
        Previous 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."
      • changedInput schema / properties / include_configurable_generic_tools / description
        Previous value: -"Includes configurable custom tools in the for_mobile view."New value: +"Query string parameter — includes configurable custom tools in the for_mobile view."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_project_tools_v1_0_23 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_project_trades3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_project_types3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_project_types_for_a_company_user5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / scope / description
        Previous 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..."
      • changedInput schema / properties / user_id / description
        Previous value: -"User ID"New value: +"URL path parameter — unique identifier of the user"
    • Changedlist_project_users14 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__employee / description
        Previous value: -"Returns users whose is_employee attribute matches the parameter."New value: +"Query string parameter — returns users whose is_employee attribute matches the parameter."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Returns users whose id attribute matches the parameter."New value: +"Query string parameter — returns users whose id attribute matches the parameter."
      • changedInput schema / properties / filters__origin_id / description
        Previous 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."
      • changedInput schema / properties / filters__permission_template / description
        Previous 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."
      • changedInput schema / properties / filters__search / description
        Previous 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"
      • changedInput schema / properties / filters__trade_id__ / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / filters__vendor_id / description
        Previous value: -"Return item(s) with the specified Vendor IDs."New value: +"Query string parameter — return item(s) with the specified Vendor IDs."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"Returns items with the specified sort."New value: +"Query string parameter — returns items with the specified sort."
      • changedInput schema / properties / view / description
        Previous 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..."
    • Changedlist_project_vendor_insurances5 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / vendor_id / description
        Previous value: -"Vendor ID"New value: +"URL path parameter — unique identifier of the vendor"
      • changedInput schema / properties / view / description
        Previous value: -"Extended view of data"New value: +"Query string parameter — extended view of data"
    • Changedlist_project_vendors13 fields changed
      • removedInput 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"
        -}
      • changedInput schema / properties / filters__id__ / description
        Previous value: -"Returns vendors with the specified id(s)"New value: +"Query string parameter — returns vendors with the specified id(s)"
      • changedInput schema / properties / filters__parent_id__ / description
        Previous value: -"Returns vendors with the specified parent id(s)"New value: +"Query string parameter — returns vendors with the specified parent id(s)"
      • changedInput schema / properties / filters__search / description
        Previous 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"
      • changedInput schema / properties / filters__standard_cost_code_id__ / description
        Previous 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)"
      • changedInput schema / properties / filters__trade_id__ / description
        Previous value: -"Returns vendors associated with the specified trade id(s)"New value: +"Query string parameter — returns vendors associated with the specified trade id(s)"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"Return items with the specified sort."New value: +"Query string parameter — return items with the specified sort."
      • changedInput schema / properties / sort / enum
        Previous value: -[
        -  "name",
        -  "main_office_name",
        -  "project_and_bid_counts"
        -]New value: +[
        +  "name",
        +  "main_office_name"
        +]
      • changedInput schema / properties / view / description
        Previous 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..."
      • changedInput schema / properties / view / enum
        Previous value: -[
        -  "normal",
        -  "extended"
        -]New value: +[
        +  "extended",
        +  "ids_only",
        +  "list",
        +  "name",
        +  "minimal",
        +  "normal"
        +]
    • Removedlist_project_vendors_v1_1
    • Changedlist_project_wbs_codes12 fields changed
      • changedInput schema / properties / can_select_divisions / description
        Previous 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."
      • changedInput schema / properties / filters__status__ / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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."
      • changedInput schema / properties / group_id / description
        Previous 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."
      • changedInput schema / properties / group_type / description
        Previous 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'."
      • changedInput schema / properties / hide_not_in_group / description
        Previous 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 ..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / query / description
        Previous 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."
      • changedInput schema / properties / required_segments / description
        Previous value: -"required_segments"New value: +"Query string parameter — the required segments for this Work Breakdown Structure operation"
      • changedInput schema / properties / scope / description
        Previous 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."
    • Changedlist_project_wbs_patterns3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_project_wbs_segments3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_project_wbs_task_codes7 fields changed
      • changedInput schema / properties / filters / description
        Previous value: -"Filters for wbs task codes"New value: +"Query string parameter — filters for wbs task codes"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / serializer_view / description
        Previous 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..."
      • changedInput schema / properties / type / description
        Previous value: -"Type of task codes to return"New value: +"Query string parameter — type of task codes to return"
      • changedInput schema / properties / view / description
        Previous 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..."
    • Addedlist_project_webhooks_deliveries
    • Removedlist_project_webhooks_deliveries_v2_0
    • Addedlist_project_webhooks_hooks
    • Removedlist_project_webhooks_hooks_v2_0
    • Addedlist_project_webhooks_resources
    • Removedlist_project_webhooks_resources_v2_0
    • Addedlist_project_webhooks_triggers
    • Removedlist_project_webhooks_triggers_v2_0
    • Changedlist_projects27 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • addedInput schema / properties / filters__by_bid_type
        Added value: +{
        +  "description": "Query string parameter — return item(s) with the specified project bid type ID(s).",
        +  "type": "string"
        +}
      • addedInput schema / properties / filters__by_department
        Added value: +{
        +  "description": "Query string parameter — return item(s) with the specified department ID(s).",
        +  "type": "string"
        +}
      • addedInput schema / properties / filters__by_office
        Added value: +{
        +  "description": "Query string parameter — return item(s) with the specified office ID(s).",
        +  "type": "string"
        +}
      • addedInput schema / properties / filters__by_owner_type
        Added value: +{
        +  "description": "Query string parameter — return item(s) with the specified project owner type ID(s).",
        +  "type": "string"
        +}
      • addedInput schema / properties / filters__by_program
        Added value: +{
        +  "description": "Query string parameter — return item(s) with the specified project program ID(s).",
        +  "type": "string"
        +}
      • addedInput schema / properties / filters__by_region
        Added value: +{
        +  "description": "Query string parameter — return item(s) with the specified project region ID(s).",
        +  "type": "string"
        +}
      • addedInput schema / properties / filters__by_stage
        Added value: +{
        +  "description": "Query string parameter — return item(s) with the specified project stage ID(s).",
        +  "type": "string"
        +}
      • changedInput schema / properties / filters__by_status / description
        Previous 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."
      • addedInput schema / properties / filters__by_type
        Added value: +{
        +  "description": "Query string parameter — return item(s) with the specified project type ID(s).",
        +  "type": "string"
        +}
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__custom_fields / description
        Previous value: -"JSON object returns project with matching custom_field_values"New value: +"Query string parameter — jSON object returns project with matching custom_field_values"
      • removedInput schema / properties / filters__from_project_template_id
        Removed 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"
        -}
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • addedInput schema / properties / filters__is_demo
        Added value: +{
        +  "description": "Query string parameter — filters on project is_demo attribute, which indicates whether project is\nfor demonstration purposes.\n",
        +  "type": "boolean"
        +}
      • changedInput schema / properties / filters__name / description
        Previous value: -"Filters projects to those matching the given string."New value: +"Query string parameter — filters projects to those matching the given string."
      • changedInput schema / properties / filters__origin_id / description
        Previous 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."
      • addedInput schema / properties / filters__project_number
        Added value: +{
        +  "description": "Query string parameter — filters on project number.",
        +  "type": "string"
        +}
      • changedInput schema / properties / filters__synced / description
        Previous 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."
      • addedInput schema / properties / filters__template
        Added value: +{
        +  "description": "Query string parameter — filters on project template attribute, which indicates whether project is\na template\n",
        +  "type": "boolean"
        +}
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / filters__vendor_id / description
        Previous value: -"Return item(s) with the specified Vendor ID."New value: +"Query string parameter — return item(s) with the specified Vendor ID."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • removedInput schema / properties / serializer_view
        Removed 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"
        -}
      • changedInput schema / properties / sort / description
        Previous value: -"Return items with the specified sort."New value: +"Query string parameter — return items with the specified sort."
      • addedInput schema / properties / view
        Added 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"
        +}
    • Removedlist_projects_v1_1
    • Changedlist_property_damages7 fields changed
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query"
      • changedInput schema / properties / filters__responsible_company_id / description
        Previous value: -"Return item(s) with the specified Vendor ID."New value: +"Query string parameter — return item(s) with the specified Vendor ID."
      • changedInput schema / properties / incident_id / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Addedlist_punch_item_assignee_company_filter_options
    • Removedlist_punch_item_assignee_company_filter_options_v2_0
    • Addedlist_punch_item_assignee_filter_options
    • Removedlist_punch_item_assignee_filter_options_v2_0
    • Addedlist_punch_item_ball_in_court_filter_options
    • Removedlist_punch_item_ball_in_court_filter_options_v2_0
    • Addedlist_punch_item_closed_by_contact_filter_options
    • Removedlist_punch_item_closed_by_contact_filter_options_v2_0
    • Addedlist_punch_item_creator_filter_options
    • Removedlist_punch_item_creator_filter_options_v2_0
    • Changedlist_punch_item_default_distribution_list3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Addedlist_punch_item_final_approver_filter_options
    • Removedlist_punch_item_final_approver_filter_options_v2_0
    • Addedlist_punch_item_location_filter_options
    • Removedlist_punch_item_location_filter_options_v2_0
    • Addedlist_punch_item_manager_filter_options
    • Removedlist_punch_item_manager_filter_options_v2_0
    • Addedlist_punch_item_trade_filter_options
    • Removedlist_punch_item_trade_filter_options_v2_0
    • Addedlist_punch_item_type_filter_options
    • Removedlist_punch_item_type_filter_options_v2_0
    • Changedlist_punch_item_types5 fields changed
      • changedInput schema / properties / filters__name / description
        Previous value: -"Filter item(s) with matching name."New value: +"Query string parameter — filter item(s) with matching name."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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"
    • Changedlist_punch_items15 fields changed
      • changedInput schema / properties / filters__approver_login_information_id / description
        Previous 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."
      • changedInput schema / properties / filters__assignee_response / description
        Previous 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."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified Punch Item ID."New value: +"Query string parameter — return item(s) with the specified Punch Item ID."
      • changedInput schema / properties / filters__include_sublocations / description
        Previous value: -"Use together with `filters[location_id]`\n"New value: +"Query string parameter — use together with `filters[location_id]`\n"
      • changedInput schema / properties / filters__location_id / description
        Previous 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."
      • changedInput schema / properties / filters__priority / description
        Previous 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'"
      • changedInput schema / properties / filters__punch_item_type_id / description
        Previous 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."
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query"
      • changedInput schema / properties / filters__status / description
        Previous 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'."
      • changedInput schema / properties / filters__trade_id / description
        Previous value: -"Trade ID"New value: +"Query string parameter — filter results by trade id"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / filters__vendor_id / description
        Previous value: -"Return item(s) with the specified Vendor ID."New value: +"Query string parameter — return item(s) with the specified Vendor ID."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Removedlist_punch_items_v1_1
    • Changedlist_punch_list_assignee_options4 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / query / description
        Previous 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."
    • Changedlist_punch_list_manager_options4 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / query / description
        Previous 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."
    • Changedlist_punch_list_read_user_options4 fields changed
      • changedInput schema / properties / filters__search / description
        Previous value: -"filters results by the search query"New value: +"Query string parameter — filters results by the search query"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_purchase_order_contract_detail_line_items6 fields changed
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__line_item_id / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / purchase_order_contract_id / description
        Previous value: -"Purchase Order Contract ID"New value: +"URL path parameter — purchase Order Contract ID"
    • Changedlist_purchase_order_contract_line_items10 fields changed
      • changedInput schema / properties / filters__cost_code_id / description
        Previous 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."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__line_item_type_id / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / purchase_order_contract_id / description
        Previous value: -"Purchase Order Contract ID"New value: +"URL path parameter — purchase Order Contract ID"
      • changedInput schema / properties / view / description
        Previous 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..."
    • Changedlist_quantity_logs9 fields changed
      • changedInput schema / properties / end_date / description
        Previous 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)"
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs."
      • changedInput schema / properties / filters__daily_log_segment_id / description
        Previous value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter"
      • changedInput schema / properties / filters__location_id / description
        Previous value: -"Return item(s) with the specified Location IDs."New value: +"Query string parameter — return item(s) with the specified Location IDs."
      • changedInput schema / properties / log_date / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / start_date / description
        Previous 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)"
    • Changedlist_recent_activity_items3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_recycled_action_plan12 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__deleted_by_id / description
        Previous 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."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__include_sublocations / description
        Previous value: -"Use together with `filters[location_id]`\n"New value: +"Query string parameter — use together with `filters[location_id]`\n"
      • changedInput schema / properties / filters__location_id / description
        Previous 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."
      • changedInput schema / properties / filters__manager_id / description
        Previous 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)."
      • changedInput schema / properties / filters__plan_type_id / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_recycled_action_plan_item_assignees9 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_id / description
        Previous 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)"
      • changedInput schema / properties / filters__plan_item_id / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_recycled_action_plan_items9 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_id / description
        Previous 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)"
      • changedInput schema / properties / filters__plan_section_id / description
        Previous 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)."
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_recycled_action_plan_references9 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_id / description
        Previous 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)"
      • changedInput schema / properties / filters__plan_item_id / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_recycled_action_plan_sections7 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_id / description
        Previous 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)"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_recycled_action_plan_template_approvers6 fields changed
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_template_id / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_recycled_action_plan_template_items8 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_template_id / description
        Previous 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."
      • changedInput schema / properties / filters__plan_template_section_id / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_recycled_action_plan_template_receivers6 fields changed
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_template_id / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_recycled_action_plan_template_sections7 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_template_id / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_recycled_action_plan_test_record_requests10 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_id / description
        Previous 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)"
      • changedInput schema / properties / filters__plan_item_id / description
        Previous 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)."
      • changedInput schema / properties / filters__type / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_recycled_actions8 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing query"New value: +"Query string parameter — return item(s) containing query"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / incident_id / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Removedlist_recycled_actions_v1_1
    • Changedlist_recycled_checklist_inspection_comments7 fields changed
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__item_id / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Addedlist_recycled_checklist_inspection_sections
    • Removedlist_recycled_checklist_inspection_sections_v1_1
    • Changedlist_recycled_checklist_inspections_item_attachments6 fields changed
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__item_id / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_recycled_checklist_templates3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_recycled_checklists_inspections23 fields changed
      • changedInput schema / properties / filters__closed_at / description
        Previous 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."
      • changedInput schema / properties / filters__closed_by_id / description
        Previous 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."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Return item(s) created by the specified User IDs"New value: +"Query string parameter — return item(s) created by the specified User IDs"
      • changedInput schema / properties / filters__due_at / description
        Previous value: -"Return item(s) due within the specified date range."New value: +"Query string parameter — return item(s) due within the specified date range."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__inspection_date / description
        Previous 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."
      • changedInput schema / properties / filters__inspection_type_id / description
        Previous 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."
      • changedInput schema / properties / filters__inspector_id / description
        Previous 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."
      • changedInput schema / properties / filters__location_id / description
        Previous 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."
      • changedInput schema / properties / filters__managed_equipment_id / description
        Previous value: -"Return item(s) with the specified Managed Equipment ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment ID."
      • changedInput schema / properties / filters__point_of_contact_id / description
        Previous 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."
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query"
      • changedInput schema / properties / filters__responsible_contractor_id / description
        Previous 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."
      • changedInput schema / properties / filters__spec_section_id / description
        Previous 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."
      • changedInput schema / properties / filters__status / description
        Previous value: -"Return item(s) with the specified statuses"New value: +"Query string parameter — return item(s) with the specified statuses"
      • changedInput schema / properties / filters__template_id / description
        Previous 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."
      • changedInput schema / properties / filters__trade_id / description
        Previous value: -"Trade ID"New value: +"Query string parameter — filter results by trade id"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_recycled_company_action_plan_template_items_assignees9 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_template_id / description
        Previous 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)."
      • changedInput schema / properties / filters__plan_template_item_id / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_recycled_company_action_plan_template_references9 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_template_id / description
        Previous 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."
      • changedInput schema / properties / filters__plan_template_item_id / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_recycled_company_action_plan_template_test_record_requests10 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_template_id / description
        Previous 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)."
      • changedInput schema / properties / filters__plan_template_item_id / description
        Previous 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)."
      • changedInput schema / properties / filters__type / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_recycled_company_action_plan_templates10 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__deleted_at / description
        Previous 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."
      • changedInput schema / properties / filters__deleted_by_id / description
        Previous value: -"Return item(s) deleted by the specified User IDs"New value: +"Query string parameter — return item(s) deleted by the specified User IDs"
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__type_id / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous 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."
    • Removedlist_recycled_company_action_plan_templates_v1_1
    • Changedlist_recycled_company_checklist_templates3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_recycled_company_form_templates6 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_recycled_environmentals7 fields changed
      • changedInput schema / properties / filters__environmental_type_id / description
        Previous value: -"Return item(s) with the specified Environmental Type ID."New value: +"Query string parameter — return item(s) with the specified Environmental Type ID."
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query"
      • changedInput schema / properties / incident_id / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_recycled_incidents16 fields changed
      • changedInput schema / properties / filters__contributing_behavior_id / description
        Previous 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."
      • changedInput schema / properties / filters__contributing_condition_id / description
        Previous 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."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__event_date / description
        Previous 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."
      • changedInput schema / properties / filters__hazard_id / description
        Previous 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."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__location_id / description
        Previous value: -"Return item(s) with the specified Location IDs."New value: +"Query string parameter — return item(s) with the specified Location IDs."
      • changedInput schema / properties / filters__query / description
        Previous 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..."
      • changedInput schema / properties / filters__recordable / description
        Previous value: -"Return item(s) that are recordable."New value: +"Query string parameter — return item(s) that are recordable."
      • changedInput schema / properties / filters__status / description
        Previous value: -"Returns item(s) matching the specified status value."New value: +"Query string parameter — returns item(s) matching the specified status value."
      • changedInput schema / properties / filters__time_unknown / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_recycled_injuries17 fields changed
      • changedInput schema / properties / filters__affected_body_part / description
        Previous 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."
      • changedInput schema / properties / filters__affected_company_id / description
        Previous 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."
      • changedInput schema / properties / filters__affected_party_id / description
        Previous 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."
      • changedInput schema / properties / filters__affected_person_id / description
        Previous 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."
      • changedInput schema / properties / filters__affliction_type_id / description
        Previous value: -"Return item(s) with the specified Affliction Type IDs"New value: +"Query string parameter — return item(s) with the specified Affliction Type IDs"
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__filing_type / description
        Previous 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."
      • changedInput schema / properties / filters__harm_source_id / description
        Previous 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."
      • changedInput schema / properties / filters__managed_equipment_id / description
        Previous value: -"Return item(s) with the specified Managed Equipment ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment ID."
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing query"New value: +"Query string parameter — return item(s) containing query"
      • changedInput schema / properties / filters__recordable / description
        Previous value: -"Return item(s) that are recordable."New value: +"Query string parameter — return item(s) that are recordable."
      • changedInput schema / properties / filters__work_activity_id / description
        Previous 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."
      • changedInput schema / properties / incident_id / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_recycled_links3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_recycled_near_misses13 fields changed
      • changedInput schema / properties / filters__affected_company_id / description
        Previous 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."
      • changedInput schema / properties / filters__affected_party_id / description
        Previous 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."
      • changedInput schema / properties / filters__affected_person_id / description
        Previous 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."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__harm_source_id / description
        Previous 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."
      • changedInput schema / properties / filters__managed_equipment_id / description
        Previous value: -"Return item(s) with the specified Managed Equipment ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment ID."
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing query"New value: +"Query string parameter — return item(s) containing query"
      • changedInput schema / properties / filters__work_activity_id / description
        Previous 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."
      • changedInput schema / properties / incident_id / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_recycled_observation_items12 fields changed
      • changedInput schema / properties / filters__assignee_company_id / description
        Previous 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."
      • changedInput schema / properties / filters__assignee_id / description
        Previous value: -"Return item(s) assigned to the specified User ID."New value: +"Query string parameter — return item(s) assigned to the specified User ID."
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs."
      • changedInput schema / properties / filters__location_id / description
        Previous value: -"Return item(s) with the specified Location IDs."New value: +"Query string parameter — return item(s) with the specified Location IDs."
      • changedInput schema / properties / filters__priority / description
        Previous value: -"Return item(s) with the specified priorities.\n"New value: +"Query string parameter — return item(s) with the specified priorities.\n"
      • changedInput schema / properties / filters__status / description
        Previous 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```"
      • changedInput schema / properties / filters__trade_ids / description
        Previous 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."
      • changedInput schema / properties / filters__type_id / description
        Previous value: -"Return item(s) with the specified Observation Type ID."New value: +"Query string parameter — return item(s) with the specified Observation Type ID."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_recycled_project_action_plan_template_references9 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_template_id / description
        Previous 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."
      • changedInput schema / properties / filters__plan_template_item_id / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_recycled_project_forms6 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_recycled_property_damages7 fields changed
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query"
      • changedInput schema / properties / filters__responsible_company_id / description
        Previous value: -"Return item(s) with the specified Vendor ID."New value: +"Query string parameter — return item(s) with the specified Vendor ID."
      • changedInput schema / properties / incident_id / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_recycled_rfis4 fields changed
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_recycled_witness_statements9 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__date_received / description
        Previous 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."
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing query"New value: +"Query string parameter — return item(s) containing query"
      • changedInput schema / properties / filters__witness_id / description
        Previous value: -"Return item(s) with the specified Witness (Party) ID."New value: +"Query string parameter — return item(s) with the specified Witness (Party) ID."
      • changedInput schema / properties / incident_id / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Removedlist_recycled_witness_statements_v1_1
    • Changedlist_recyled_action_plan_test_records11 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__plan_id / description
        Previous 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)"
      • changedInput schema / properties / filters__plan_item_id / description
        Previous 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)."
      • changedInput schema / properties / filters__plan_test_record_request_id / description
        Previous 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)."
      • changedInput schema / properties / filters__type / description
        Previous 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)."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedlist_regions_for_a_company_user5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / scope / description
        Previous 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..."
      • changedInput schema / properties / user_id / description
        Previous value: -"User ID"New value: +"URL path parameter — unique identifier of the user"
    • Changedlist_requested_changes5 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / task_id / description
        Previous 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."
      • changedInput schema / properties / view / description
        Previous 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"
    • Addedlist_requested_changes_for_a_schedule_or_a_task
    • Removedlist_requested_changes_for_a_schedule_or_a_task_v1_1
    • Addedlist_requisition_compliance_attachments
    • Removedlist_requisition_compliance_attachments_v2_0
    • Addedlist_requisition_compliance_documents
    • Removedlist_requisition_compliance_documents_v2_0
    • Changedlist_requisition_subcontractor_invoice_change_histories4 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / requisition_id / description
        Previous value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
    • Changedlist_requisition_subcontractor_invoice_change_order_items5 fields changed
      • changedInput schema / properties / filters__change_order_id / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / requisition_id / description
        Previous value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
    • Changedlist_requisition_subcontractor_invoice_contract_detail_items4 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / requisition_id / description
        Previous value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
    • Changedlist_requisition_subcontractor_invoice_contract_items4 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / requisition_id / description
        Previous value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
    • Changedlist_requisitions_subcontractor_invoices_for_project12 fields changed
      • changedInput schema / properties / filters__commitment_id / description
        Previous 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)."
      • changedInput schema / properties / filters__created_at / description
        Previous 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"
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • addedInput schema / properties / filters__is_last
        Added 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"
        +}
      • changedInput schema / properties / filters__origin_id / description
        Previous 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."
      • changedInput schema / properties / filters__period_id / description
        Previous 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."
      • changedInput schema / properties / filters__status / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — elements per page, default 30"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • addedInput schema / properties / view
        Added 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"
        +}
    • Removedlist_requisitions_subcontractor_invoices_for_project_v1_1
    • Removedlist_resources
    • Addedlist_resources_project
    • Addedlist_resources_v1_0
    • Removedlist_resources_v1_1
    • Changedlist_responses5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__corresponding_status / description
        Previous 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'."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_responses_for_a_generic_tool_item5 fields changed
      • changedInput schema / properties / generic_tool_id / description
        Previous value: -"Unique identifier for the generic tool."New value: +"URL path parameter — unique identifier for the generic tool."
      • changedInput schema / properties / generic_tool_item_id / description
        Previous value: -"Unique identifier for the generic tool item."New value: +"URL path parameter — unique identifier for the generic tool item."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_responses_in_the_specified_item_response_set6 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__corresponding_status / description
        Previous 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'."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / response_set_id / description
        Previous value: -"The ID of the Response Set"New value: +"URL path parameter — the ID of the Response Set"
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_rfi_default_distribution3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_rfi_replies4 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / rfi_id / description
        Previous value: -"RFI ID"New value: +"URL path parameter — unique identifier of the rfi"
    • Changedlist_rfis19 fields changed
      • changedInput schema / properties / filters__assigned_id / description
        Previous value: -"Assigned ID"New value: +"Query string parameter — filter results by assigned id"
      • changedInput schema / properties / filters__ball_in_court_id / description
        Previous 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."
      • changedInput schema / properties / filters__cost_code_id / description
        Previous 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."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__location_id / description
        Previous 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."
      • changedInput schema / properties / filters__number / description
        Previous value: -"Return item(s) with the specified RFI Number."New value: +"Query string parameter — return item(s) with the specified RFI Number."
      • changedInput schema / properties / filters__prefix_stage_id / description
        Previous value: -"Return item(s) with the specified RFI Prefix Stage."New value: +"Query string parameter — return item(s) with the specified RFI Prefix Stage."
      • changedInput schema / properties / filters__received_from_login_information_id / description
        Previous 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."
      • changedInput schema / properties / filters__responsible_contractor_id / description
        Previous 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."
      • changedInput schema / properties / filters__rfi_manager_id / description
        Previous value: -"Return item(s) with the specified RFI Manager ID."New value: +"Query string parameter — return item(s) with the specified RFI Manager ID."
      • changedInput schema / properties / filters__status / description
        Previous value: -"Return item(s) with the specified RFI Status."New value: +"Query string parameter — return item(s) with the specified RFI Status."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / search / description
        Previous 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."
      • changedInput schema / properties / sort__attribute / description
        Previous 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"
      • changedInput schema / properties / sort__direction / description
        Previous 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"
    • Changedlist_rfq_quotes5 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"Contract ID"New value: +"Query string parameter — unique identifier of the contract"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / rfq_id / description
        Previous value: -"RFQ ID"New value: +"URL path parameter — unique identifier of the rfq"
    • Changedlist_rfq_responses5 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"Contract ID"New value: +"Query string parameter — unique identifier of the contract"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / rfq_id / description
        Previous value: -"RFQ ID"New value: +"URL path parameter — unique identifier of the rfq"
    • Changedlist_rfqs8 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"Contract ID"New value: +"Query string parameter — unique identifier of the contract"
      • changedInput schema / properties / filters__commitment_contract_id / description
        Previous value: -"Return item(s) with the specified Commitment Contract ID."New value: +"Query string parameter — return item(s) with the specified Commitment Contract ID."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__status / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_roles_for_a_company_user4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / user_id / description
        Previous value: -"User ID"New value: +"URL path parameter — unique identifier of the user"
    • Changedlist_safety_violation_logs8 fields changed
      • changedInput schema / properties / end_date / description
        Previous 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)"
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs."
      • changedInput schema / properties / filters__daily_log_segment_id / description
        Previous value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter"
      • changedInput schema / properties / log_date / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / start_date / description
        Previous 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)"
    • Changedlist_schedule_imports3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_schedule_resources4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__name / description
        Previous value: -"Filter item(s) with matching name."New value: +"Query string parameter — filter item(s) with matching name."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Addedlist_schedules
    • Removedlist_schedules_v2_0
    • Changedlist_signatures_project3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_signatures_project_v1_03 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedlist_specification_areas_for_a_project
    • Removedlist_specification_areas_for_a_project_v2_1
    • Addedlist_specification_configurations
    • Removedlist_specification_configurations_v2_1
    • Changedlist_specification_section_divisions_for_a_project3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_specification_section_revisions_for_a_specification5 fields changed
      • changedInput schema / properties / all_revisions / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / specification_section_division_id / description
        Previous value: -"specification_section_division_id"New value: +"Query string parameter — specification_section_division_id"
    • Changedlist_specification_section_terms4 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / specification_section_ids / description
        Previous 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."
    • Removedlist_specification_section_terms_v1_1
    • Changedlist_specification_sections5 fields changed
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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"
    • Changedlist_specification_sets3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"The ID of the project for the new set"New value: +"URL path parameter — the ID of the project for the new set"
    • Changedlist_specification_uploads5 fields changed
      • changedInput schema / properties / filters__specification_set_id / description
        Previous value: -"Return items with the specified set ID."New value: +"Query string parameter — return items with the specified set ID."
      • changedInput schema / properties / filters__status / description
        Previous value: -"Return item(s) with the specified status."New value: +"Query string parameter — return item(s) with the specified status."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"The ID of the project to upload to"New value: +"URL path parameter — the ID of the project to upload to"
    • Changedlist_standard_cost_code_lists3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_standard_cost_codes6 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / filters__origin_id / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / standard_cost_code_list_id / description
        Previous value: -"Standard Cost Code List ID"New value: +"Query string parameter — standard Cost Code List ID"
      • changedInput schema / properties / view / description
        Previous 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..."
    • Changedlist_status_change_history_for_a_coordination_issue5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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 ..."
    • Changedlist_status_filter_options5 fields changed
      • changedInput schema / properties / filters__bim_file_id / description
        Previous value: -"Filter item(s) with matching BIM File ids"New value: +"Query string parameter — filter item(s) with matching BIM File ids"
      • changedInput schema / properties / locale / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_statuses_available_for_a_generic_tool4 fields changed
      • changedInput schema / properties / generic_tool_id / description
        Previous value: -"Unique identifier for the Generic Tool"New value: +"URL path parameter — unique identifier for the Generic Tool"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_statuses_for_a_generic_tool4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / generic_tool_id / description
        Previous value: -"Unique identifier for the Generic Tool"New value: +"URL path parameter — unique identifier for the Generic Tool"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_sub_jobs3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_submittal_associated_attachments5 fields changed
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous value: -"view for which you are exporting"New value: +"Query string parameter — view for which you are exporting"
    • Changedlist_submittal_packages_on_a_project5 fields changed
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_submittal_responses_project3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_submittal_responses_v1_03 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_submittal_statuses3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_submittal_types3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedlist_submittals21 fields changed
      • changedInput schema / properties / filters__approved_id / description
        Previous value: -"filters[approved_id]"New value: +"Query string parameter — filters[approved_id]"
      • changedInput schema / properties / filters__ball_in_court / description
        Previous value: -"filters[ball_in_court]"New value: +"Query string parameter — filters[ball_in_court]"
      • changedInput schema / properties / filters__date_range / description
        Previous value: -"filters[date_range]"New value: +"Query string parameter — filter results by date range"
      • changedInput schema / properties / filters__due_by / description
        Previous value: -"filters[due_by]"New value: +"Query string parameter — filter results by due by"
      • changedInput schema / properties / filters__end_date / description
        Previous value: -"filters[end_date]"New value: +"Query string parameter — filter results by end date"
      • changedInput schema / properties / filters__include_sublocations / description
        Previous value: -"Use together with `filters[location_id]`\n"New value: +"Query string parameter — use together with `filters[location_id]`\n"
      • changedInput schema / properties / filters__location_id / description
        Previous 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."
      • changedInput schema / properties / filters__only_current_revision / description
        Previous value: -"filters[only_current_revision]"New value: +"Query string parameter — filters[only_current_revision]"
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query"
      • changedInput schema / properties / filters__received_from_id / description
        Previous value: -"Received From ID"New value: +"Query string parameter — filter results by received from id"
      • changedInput schema / properties / filters__response / description
        Previous value: -"filters[response]"New value: +"Query string parameter — filter results by response"
      • changedInput schema / properties / filters__responsible_contractor_id / description
        Previous 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."
      • changedInput schema / properties / filters__spec_division / description
        Previous value: -"filters[spec_division]"New value: +"Query string parameter — filters[spec_division]"
      • changedInput schema / properties / filters__spec_section_id / description
        Previous value: -"filters[spec_section_id]"New value: +"Query string parameter — filters[spec_section_id]"
      • changedInput schema / properties / filters__start_date / description
        Previous value: -"filters[start_date]"New value: +"Query string parameter — filter results by start date"
      • changedInput schema / properties / filters__status / description
        Previous value: -"Returns item(s) matching the specified status value."New value: +"Query string parameter — returns item(s) matching the specified status value."
      • changedInput schema / properties / filters__submittal_package_id / description
        Previous 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."
      • changedInput schema / properties / filters__submittal_type / description
        Previous value: -"filters[submittal_type]"New value: +"Query string parameter — filters[submittal_type]"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedlist_submittals_on_a_project31 fields changed
      • changedInput schema / properties / filters__anticipated_delivery_date / description
        Previous 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"
      • changedInput schema / properties / filters__approver_id / description
        Previous 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."
      • removedInput schema / properties / filters__attachments
        Removed value: -{
        -  "description": "Array of boolean values to filter submittals by \"Attachments\" status.",
        -  "items": {},
        -  "type": "array"
        -}
      • changedInput schema / properties / filters__ball_in_court_id / description
        Previous 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."
      • removedInput schema / properties / filters__cost_code_id
        Removed value: -{
        -  "description": "Array of Cost Code IDs. A single Cost Code ID is also accepted.",
        -  "items": {},
        -  "type": "array"
        -}
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__current_revision / description
        Previous 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."
      • changedInput schema / properties / filters__division / description
        Previous 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."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__location_id / description
        Previous 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."
      • changedInput schema / properties / filters__number / description
        Previous value: -"Array of Numbers. A single Number is also accepted."New value: +"Query string parameter — array of Numbers. A single Number is also accepted."
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query"
      • changedInput schema / properties / filters__received_from_id / description
        Previous value: -"Received From ID"New value: +"Query string parameter — filter results by received from id"
      • changedInput schema / properties / filters__required_on_site_date / description
        Previous 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"
      • changedInput schema / properties / filters__response_id / description
        Previous 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."
      • changedInput schema / properties / filters__responsible_contractor_id / description
        Previous 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."
      • removedInput schema / properties / filters__revision
        Removed value: -{
        -  "description": "Array of Submittal Revision values. A single Submittal Revision is also accepted.",
        -  "items": {},
        -  "type": "array"
        -}
      • removedInput schema / properties / filters__specification_area_id
        Removed 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"
        -}
      • changedInput schema / properties / filters__specification_section_id / description
        Previous 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."
      • changedInput schema / properties / filters__status_id / description
        Previous 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."
      • changedInput schema / properties / filters__submittal_manager_id / description
        Previous 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."
      • changedInput schema / properties / filters__submittal_package_id / description
        Previous 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."
      • changedInput schema / properties / filters__task_id / description
        Previous 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."
      • changedInput schema / properties / filters__type / description
        Previous 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."
      • changedInput schema / properties / filters__unpackaged / description
        Previous value: -"Parseable to boolean value, filters out unpackaged Submittals."New value: +"Query string parameter — parseable to boolean value, filters out unpackaged Submittals."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • removedInput schema / properties / filters__workflow_progress
        Removed value: -{
        -  "description": "Array of strings to filter submittals by \"Workflow Progress\" status. Available options: on_track, off_track, overdue, paused, none",
        -  "items": {},
        -  "type": "array"
        -}
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Removedlist_submittals_on_a_project_v1_1
    • Changedlist_task_item_categories5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous value: -"View to use when generating json. Defaults to normal"New value: +"Query string parameter — view to use when generating json. Defaults to normal"
    • Changedlist_task_item_comments6 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs."
      • changedInput schema / properties / filters__task_item_id / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_task_items12 fields changed
      • changedInput schema / properties / filters__assigned_id / description
        Previous value: -"Assigned ID"New value: +"Query string parameter — filter results by assigned id"
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs."
      • changedInput schema / properties / filters__due_date / description
        Previous 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."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query"
      • changedInput schema / properties / filters__status / description
        Previous value: -"Returns item(s) matching the specified status value."New value: +"Query string parameter — returns item(s) matching the specified status value."
      • changedInput schema / properties / filters__task_item_category_id / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"Return item(s) with the specified sort."New value: +"Query string parameter — return item(s) with the specified sort."
    • Changedlist_task_items_assignee_options4 fields changed
      • changedInput schema / properties / filters__search / description
        Previous value: -"Returns item(s) matching the specified search query string."New value: +"Query string parameter — returns item(s) matching the specified search query string."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Addedlist_task_items_distribution_member_options
    • Removedlist_task_items_distribution_member_options_v2_0
    • Changedlist_tasks7 fields changed
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query"
      • changedInput schema / properties / filters__row_number / description
        Previous 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..."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedlist_tax_codes3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous 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"
    • Changedlist_tax_types3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_time_and_material_timecards3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_timecard_data7 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / end_date / description
        Previous 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)"
      • changedInput schema / properties / filters__deleted_at / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / start_date / description
        Previous 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)"
    • Changedlist_timecard_entries5 fields changed
      • changedInput schema / properties / end_date / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / start_date / description
        Previous 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"
    • Changedlist_timecard_entries_company15 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / end_date / description
        Previous 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)"
      • changedInput schema / properties / end_time_in / description
        Previous 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\"."
      • changedInput schema / properties / filters__deleted_at / description
        Previous 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."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__in_progress_only / description
        Previous value: -"Return work in progress item(s)."New value: +"Query string parameter — return work in progress item(s)."
      • changedInput schema / properties / filters__include_in_progress / description
        Previous value: -"Return available and work in progress item(s)."New value: +"Query string parameter — return available and work in progress item(s)."
      • changedInput schema / properties / filters__party_id / description
        Previous value: -"Return item(s) with the specified Party ID."New value: +"Query string parameter — return item(s) with the specified Party ID."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / serializer_view / description
        Previous value: -"Changes what fields are included in the response."New value: +"Query string parameter — changes what fields are included in the response."
      • changedInput schema / properties / start_date / description
        Previous 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)"
      • changedInput schema / properties / start_time_in / description
        Previous 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\"."
      • changedInput schema / properties / use_filter_tz / description
        Previous 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."
    • Changedlist_timecard_entries_project8 fields changed
      • changedInput schema / properties / end_date / description
        Previous 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."
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs."
      • changedInput schema / properties / filters__daily_log_segment_id / description
        Previous value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter"
      • changedInput schema / properties / log_date / description
        Previous value: -"Timecard entries at the specified date. (YYYY-MM-DD)"New value: +"Query string parameter — timecard entries at the specified date. (YYYY-MM-DD)"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / start_date / description
        Previous 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."
    • Changedlist_timecard_time_types_company3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedlist_timecard_time_types_v1_03 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Addedlist_timeline_events
    • Removedlist_timeline_events_v2_0
    • Addedlist_tools_enabled_for_workflows
    • Removedlist_tools_enabled_for_workflows_v2_0
    • Changedlist_trades6 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__active / description
        Previous value: -"Limit results to available trades"New value: +"Query string parameter — limit results to available trades"
      • changedInput schema / properties / filters__query / description
        Previous value: -"Query trades by name"New value: +"Query string parameter — query trades by name"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_unit_of_measure_categories3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedlist_units_of_measure3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_users_with_access_to_a_generic_tool5 fields changed
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing search query"New value: +"Query string parameter — return item(s) containing search query"
      • changedInput schema / properties / generic_tool_id / description
        Previous value: -"Unique identifier for the Generic Tool"New value: +"URL path parameter — unique identifier for the Generic Tool"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_users_with_access_to_a_generic_tool_item5 fields changed
      • changedInput schema / properties / generic_tool_id / description
        Previous value: -"Unique identifier for the Generic Tool"New value: +"URL path parameter — unique identifier for the Generic Tool"
      • changedInput schema / properties / generic_tool_item_id / description
        Previous value: -"Unique identifier for the Generic Tool Item"New value: +"URL path parameter — unique identifier for the Generic Tool Item"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedlist_visitor_logs8 fields changed
      • changedInput schema / properties / end_date / description
        Previous 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)"
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs."
      • changedInput schema / properties / filters__daily_log_segment_id / description
        Previous value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter"
      • changedInput schema / properties / log_date / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / start_date / description
        Previous 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)"
    • Changedlist_waste_logs9 fields changed
      • changedInput schema / properties / end_date / description
        Previous 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)"
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs."
      • changedInput schema / properties / filters__daily_log_segment_id / description
        Previous value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter"
      • changedInput schema / properties / filters__vendor_id / description
        Previous value: -"Return item(s) with the specified Vendor IDs."New value: +"Query string parameter — return item(s) with the specified Vendor IDs."
      • changedInput schema / properties / log_date / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / start_date / description
        Previous 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)"
    • Changedlist_watcher_filter_options5 fields changed
      • changedInput schema / properties / filters__bim_file_id / description
        Previous value: -"Filter item(s) with matching BIM File ids"New value: +"Query string parameter — filter item(s) with matching BIM File ids"
      • changedInput schema / properties / locale / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Addedlist_wbs_attribute_items
    • Removedlist_wbs_attribute_items_v2_0
    • Addedlist_wbs_attributes
    • Removedlist_wbs_attributes_v2_0
    • Addedlist_wbs_code_ids
    • Removedlist_wbs_code_ids_v2_0
    • Addedlist_wbs_codes
    • Addedlist_wbs_codes_filter_options
    • Removedlist_wbs_codes_filter_options_v2_0
    • Addedlist_wbs_codes_filters
    • Removedlist_wbs_codes_filters_v2_0
    • Removedlist_wbs_codes_v2_0
    • Removedlist_weather_logs
    • Addedlist_weather_logs_project
    • Addedlist_weather_logs_project_v1_0
    • Removedlist_weather_logs_v1_1
    • Changedlist_webhooks_deliveries8 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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."
      • changedInput schema / properties / filters__status / description
        Previous value: -"Filter on status for \"any\", \"successful\", \"failing\" or \"discarded\""New value: +"Query string parameter — filter on status for \"any\", \"successful\", \"failing\" or \"discarded\""
      • changedInput schema / properties / hook_id / description
        Previous value: -"Webhooks Hook ID"New value: +"URL path parameter — unique identifier of the hook"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / page_size / description
        Previous 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)"
      • changedInput schema / properties / page_start / description
        Previous value: -"The last id of the previous page."New value: +"Query string parameter — the last id of the previous page."
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous 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."
    • Changedlist_webhooks_hooks6 fields changed
      • changedInput schema / properties / api_version / description
        Previous value: -"API Version"New value: +"Query string parameter — the api version for this Webhooks operation"
      • changedInput schema / properties / company_id / description
        Previous 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."
      • changedInput schema / properties / namespace / description
        Previous value: -"Hook namespace to query."New value: +"Query string parameter — hook namespace to query."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous 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."
    • Changedlist_webhooks_resources3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous 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."
    • Changedlist_webhooks_resources_api_versions3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous 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."
    • Changedlist_webhooks_triggers5 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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."
      • changedInput schema / properties / hook_id / description
        Previous value: -"Webhooks Hook ID"New value: +"URL path parameter — unique identifier of the hook"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous 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."
    • Changedlist_witness_statements9 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__date_received / description
        Previous 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."
      • changedInput schema / properties / filters__query / description
        Previous value: -"Return item(s) containing query"New value: +"Query string parameter — return item(s) containing query"
      • changedInput schema / properties / filters__witness_id / description
        Previous value: -"Return item(s) with the specified Witness (Party) ID."New value: +"Query string parameter — return item(s) with the specified Witness (Party) ID."
      • changedInput schema / properties / incident_id / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_work_activities7 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__active / description
        Previous 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'."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / sort / description
        Previous value: -"sort"New value: +"Query string parameter — sort order for results. Prefix with '-' for descending order"
    • Changedlist_work_logs8 fields changed
      • changedInput schema / properties / end_date / description
        Previous 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)"
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Returns item(s) created by the specified User IDs."New value: +"Query string parameter — returns item(s) created by the specified User IDs."
      • changedInput schema / properties / filters__daily_log_segment_id / description
        Previous value: -"Daily Log Segment ID filter"New value: +"Query string parameter — daily Log Segment ID filter"
      • changedInput schema / properties / log_date / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / start_date / description
        Previous 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)"
    • Changedlist_work_order_contract_detail_line_items6 fields changed
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__line_item_id / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / work_order_contract_id / description
        Previous value: -"Work Order Contract ID"New value: +"URL path parameter — work Order Contract ID"
    • Changedlist_work_order_contract_line_items10 fields changed
      • changedInput schema / properties / filters__cost_code_id / description
        Previous 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."
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__line_item_type_id / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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..."
      • changedInput schema / properties / work_order_contract_id / description
        Previous value: -"Work Order Contract ID"New value: +"URL path parameter — work Order Contract ID"
    • Changedlist_work_order_contracts10 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__id / description
        Previous value: -"Return item(s) with the specified IDs."New value: +"Query string parameter — return item(s) with the specified IDs."
      • changedInput schema / properties / filters__include_deleted / description
        Previous 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."
      • changedInput schema / properties / filters__origin_id / description
        Previous 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."
      • changedInput schema / properties / filters__status / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedlist_workflow_activity_histories4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / workflow_instance_id / description
        Previous value: -"Workflow Instance ID"New value: +"Query string parameter — workflow Instance ID"
    • Changedlist_workflow_instances5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / filters__workflowed_object_id / description
        Previous value: -"Return items for a specific workflow object."New value: +"Query string parameter — return items for a specific workflow object."
      • changedInput schema / properties / filters__workflowed_object_type / description
        Previous value: -"Return items for a specific workflow object type."New value: +"Query string parameter — return items for a specific workflow object type."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Addedlist_workflow_instances_company
    • Removedlist_workflow_instances_company_v2_0
    • Addedlist_workflow_instances_project
    • Removedlist_workflow_instances_project_v2_0
    • Addedlist_workflow_managers_company
    • Removedlist_workflow_managers_company_v2_0
    • Addedlist_workflow_managers_project
    • Removedlist_workflow_managers_project_v2_0
    • Changedlist_workflow_permanent_logs_company5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__workflowed_object_id / description
        Previous value: -"Filter log(s) with matching workflowed object id"New value: +"Query string parameter — filter log(s) with matching workflowed object id"
      • changedInput schema / properties / filters__workflowed_object_type / description
        Previous value: -"Filter log(s) with matching workflowed object type"New value: +"Query string parameter — filter log(s) with matching workflowed object type"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
    • Changedlist_workflow_permanent_logs_project5 fields changed
      • changedInput schema / properties / filters__workflowed_object_id / description
        Previous value: -"Filter log(s) with matching workflowed object id"New value: +"Query string parameter — filter log(s) with matching workflowed object id"
      • changedInput schema / properties / filters__workflowed_object_type / description
        Previous value: -"Filter log(s) with matching workflowed object type"New value: +"Query string parameter — filter log(s) with matching workflowed object type"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedlist_workflow_presets_company
    • Removedlist_workflow_presets_company_v2_0
    • Addedlist_workflow_presets_project
    • Removedlist_workflow_presets_project_v2_0
    • Addedlist_workflow_templates
    • Removedlist_workflow_templates_v2_0
    • Changedlists_the_app_and_tool_level_permissions_for_the_user7 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / item_id / description
        Previous value: -"item_id"New value: +"Query string parameter — unique identifier of the item"
      • changedInput schema / properties / item_type / description
        Previous value: -"item_type"New value: +"Query string parameter — the item type for this Document Markup operation"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"Query string parameter — unique identifier for the Procore project"
      • changedInput schema / properties / recycled / description
        Previous value: -"recycled"New value: +"Query string parameter — the recycled for this Document Markup operation"
    • Changedmake_job_title_available_to_group3 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / group_id / description
        Previous 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."
      • changedInput schema / properties / job_title_id / description
        Previous value: -"Unique identifier for the Job Title."New value: +"URL path parameter — unique identifier for the Job Title."
    • Changedmake_tag_from_being_available_to_group3 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / group_ids / description
        Previous 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."
      • changedInput schema / properties / tag_id / description
        Previous value: -"Unique identifier for the tag."New value: +"URL path parameter — unique identifier for the tag."
    • Changedmerges_one_or_more_pdfs_of_a_requisition_into_a_single_pdf4 fields changed
      • changedInput schema / properties / files / description
        Previous value: -"files"New value: +"JSON request body field — the files for this Commitments operation"
      • changedInput schema / properties / polling / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / requisition_id / description
        Previous value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
    • Changedmodify_an_existing_markup14 fields changed
      • changedInput schema / properties / applies_to_all / description
        Previous 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."
      • changedInput schema / properties / compound / description
        Previous value: -"Details of the compound calculations for the markup."New value: +"JSON request body field — details of the compound calculations for the markup."
      • changedInput schema / properties / holder_id / description
        Previous value: -"ID of the Markup's Holder"New value: +"Query string parameter — iD of the Markup's Holder"
      • changedInput schema / properties / holder_type / description
        Previous value: -"Type of the Markup's Holder"New value: +"Query string parameter — type of the Markup's Holder"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Markup"New value: +"URL path parameter — unique identifier of the Contracts resource"
      • changedInput schema / properties / markup_conditions / description
        Previous 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."
      • changedInput schema / properties / markup_set / description
        Previous 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 ..."
      • changedInput schema / properties / name / description
        Previous value: -"Name of the markup."New value: +"JSON request body field — name of the markup."
      • changedInput schema / properties / percentage / description
        Previous 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."
      • changedInput schema / properties / position / description
        Previous 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."
      • changedInput schema / properties / prime_line_item_id / description
        Previous 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..."
      • changedInput schema / properties / project_id / description
        Previous value: -"ID of the Markup's Project"New value: +"Query string parameter — iD of the Markup's Project"
      • changedInput schema / properties / tax_code_ids / description
        Previous 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."
      • changedInput schema / properties / wbs_code_id / description
        Previous 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."
    • Changedmodify_markups4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / markups / description
        Previous value: -"markups"New value: +"JSON request body field — the markups for this Document Markup operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
      • changedInput schema / properties / viewer_doc_id / description
        Previous value: -"viewer_doc_id"New value: +"URL path parameter — unique identifier of the viewer doc"
    • Changedmove_action_plan_back_into_draft2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan ID"New value: +"URL path parameter — unique identifier of the Action Plans resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedmove_action_plan_into_in_progress2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan ID"New value: +"URL path parameter — unique identifier of the Action Plans resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedmove_action_plan_item_within_or_across_sections4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Item ID"New value: +"URL path parameter — unique identifier of the Action Plans resource"
      • changedInput schema / properties / next_plan_item_id / description
        Previous 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."
      • changedInput schema / properties / plan_section_id / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedmove_action_plan_section3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Section ID"New value: +"URL path parameter — action Plan Section ID"
      • changedInput schema / properties / next_section_id / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedmove_catalog
    • Removedmove_catalog_v2_0
    • Changedmove_company_action_plan_template_into_in_revision2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Company Action Plan Template ID"New value: +"URL path parameter — company Action Plan Template ID"
    • Removedmove_company_action_plan_template_into_in_revision_v1_1
    • Changedmove_company_action_plan_template_into_published2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Company Action Plan Template ID"New value: +"URL path parameter — company Action Plan Template ID"
    • Removedmove_company_action_plan_template_into_published_v1_1
    • Addedpatch_company_role
    • Removedpatch_company_role_v2_0
    • Addedpost_company_role
    • Removedpost_company_role_v2_0
    • Changedprocore_api_call4 fields changed
      • changedInput schema / properties / body / description
        Previous value: -"Request body for POST/PUT/PATCH requests"New value: +"JSON request body for POST/PUT/PATCH calls"
      • changedInput schema / properties / path_params / description
        Previous value: -"Path parameter substitutions, e.g. { project_id: '12345' }"New value: +"Substitutions for path placeholders, e.g. { project_id: '12345' }"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page, max 100"New value: +"Items per page (max 100)"
      • changedInput schema / properties / query_params / description
        Previous 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]"
    • Changedprocore_discover_endpoints3 fields changed
      • changedInput schema / properties / method_filter / description
        Previous value: -"Filter by HTTP method"New value: +"Restrict results to a single HTTP method"
      • changedInput schema / properties / module / description
        Previous value: -"Module within category, e.g. 'RFI', 'Submittals', 'Punch List'"New value: +"Module within the category, e.g. 'RFI', 'Submittals', 'Punch List'"
      • changedInput schema / properties / search / description
        Previous value: -"Filter endpoints by summary text"New value: +"Substring filter applied to endpoint summary text"
    • Changedprocore_get_endpoint_details1 field changed
      • changedInput schema / properties / operation_id / description
        Previous value: -"The operationId from discover_endpoints, e.g. 'RestV10ProjectsProjectIdRfisGet'"New value: +"The operationId returned by procore_discover_endpoints, e.g. 'RestV10ProjectsProjectIdRfisGet'"
    • Changedprocore_set_config2 fields changed
      • changedInput schema / properties / key / description
        Previous value: -"Config key: 'company_id' or 'project_id'"New value: +"Config key — currently 'company_id' or 'project_id'"
      • changedInput schema / properties / value / description
        Previous value: -"Config value"New value: +"New value (string; numbers are coerced server-side)"
    • Changedproject_folder_and_file_index17 fields changed
      • changedInput schema / properties / filters__created_at / description
        Previous 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-..."
      • changedInput schema / properties / filters__created_by_id / description
        Previous value: -"Return item(s) created by the specified User IDs"New value: +"Query string parameter — return item(s) created by the specified User IDs"
      • changedInput schema / properties / filters__custom_tag_ids / description
        Previous value: -"Return item(s) with specified custom tag IDs"New value: +"Query string parameter — return item(s) with specified custom tag IDs"
      • changedInput schema / properties / filters__document_type / description
        Previous value: -"Return item(s) that are file or folder"New value: +"Query string parameter — return item(s) that are file or folder"
      • changedInput schema / properties / filters__file_type / description
        Previous value: -"Return item(s) that have the file extensions"New value: +"Query string parameter — return item(s) that have the file extensions"
      • changedInput schema / properties / filters__folder_id / description
        Previous 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."
      • changedInput schema / properties / filters__folder_id / type
        Previous value: -"number"New value: +"string"
      • changedInput schema / properties / filters__is_in_recycle_bin / description
        Previous 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"
      • changedInput schema / properties / filters__private / description
        Previous 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."
      • changedInput schema / properties / filters__search / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / project_id / type
        Previous value: -"number"New value: +"string"
      • changedInput schema / properties / sort / description
        Previous 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"
      • changedInput schema / properties / view / description
        Previous 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."
    • Removedproject_folder_and_file_index_v2_0
    • Changedpunch_list_available_final_approvers4 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / query / description
        Previous 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."
    • Changedreactivate_company_user2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the user"New value: +"URL path parameter — unique identifier of the Directory resource"
    • Changedreactivate_company_vendor3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the vendor"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedreactivate_project_user2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the user"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedreactivate_project_vendor3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the vendor"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedrecycle_rfi2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"RFI ID"New value: +"URL path parameter — unique identifier of the RFI resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedremove_a_person_from_a_group3 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / group_id / description
        Previous value: -"Unique identifier for the group"New value: +"URL path parameter — unique identifier for the group"
      • changedInput schema / properties / person_id / description
        Previous value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person"
    • Changedremove_a_response_from_an_item_response_set3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"The ID of the Response"New value: +"URL path parameter — the ID of the Response"
      • changedInput schema / properties / response_set_id / description
        Previous value: -"Checklist Item Response Set ID"New value: +"URL path parameter — checklist Item Response Set ID"
    • Changedremove_a_user_from_the_project2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the user"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedremove_alternative_response_set_from_project_checklist_template2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Checklist Template ID"New value: +"URL path parameter — checklist Template ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedremove_an_existing_markup4 fields changed
      • changedInput schema / properties / holder_id / description
        Previous value: -"ID of the Markup's Holder"New value: +"Query string parameter — iD of the Markup's Holder"
      • changedInput schema / properties / holder_type / description
        Previous value: -"Type of the Markup's Holder"New value: +"Query string parameter — type of the Markup's Holder"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Markup"New value: +"URL path parameter — unique identifier of the Contracts resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"ID of the Markup's Project"New value: +"Query string parameter — iD of the Markup's Project"
    • Changedremove_change_order_package_from_a_requisition_subcontractor4 fields changed
      • changedInput schema / properties / change_order_package_id / description
        Previous value: -"Change Order Package ID"New value: +"Query string parameter — change Order Package ID"
      • changedInput schema / properties / commitment_id / description
        Previous value: -"Commitment ID"New value: +"Query string parameter — unique identifier of the commitment"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / requisition_id / description
        Previous value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
    • Changedremove_checklist_template_alternative_response_set2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Checklist Template ID"New value: +"URL path parameter — checklist Template ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedremove_company_checklist_template_alternative_response_set2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Company Checklist Template ID"New value: +"URL path parameter — company Checklist Template ID"
    • Addedremove_current_project_company
    • Removedremove_current_project_company_v2_0
    • Removedremove_current_project_company_v2_1
    • Addedremove_current_project_project
    • Removedremove_current_project_project_v2_0
    • Removedremove_current_project_project_v2_1
    • Changedremove_job_title_from_being_available_to_group3 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / group_id / description
        Previous 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."
      • changedInput schema / properties / job_title_id / description
        Previous value: -"Unique identifier for the Job Title."New value: +"URL path parameter — unique identifier for the Job Title."
    • Changedremove_role_from_project3 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project"
      • changedInput schema / properties / role_id / description
        Previous value: -"Unique identifier for the Role in the Project."New value: +"URL path parameter — unique identifier for the Role in the Project."
    • Changedremove_segment_from_the_project_pattern2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / segment_id / description
        Previous value: -"Segment ID"New value: +"JSON request body field — unique identifier of the segment"
    • Changedremove_signature_from_timecard_entry_project2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"The ID of the timecard entry."New value: +"URL path parameter — the ID of the timecard entry."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedremove_tag_availablility_to_group4 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / group_id / description
        Previous value: -"Unique identifier for the group"New value: +"URL path parameter — unique identifier for the group"
      • changedInput schema / properties / group_ids / description
        Previous 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."
      • changedInput schema / properties / tag_id / description
        Previous value: -"Unique identifier for the tag."New value: +"URL path parameter — unique identifier for the tag."
    • Changedremove_tag_instance_from_person3 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / person_id / description
        Previous value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person"
      • changedInput schema / properties / tag_instance_id / description
        Previous value: -"Unique identifier for the tag instance"New value: +"URL path parameter — unique identifier for the tag instance"
    • Changedremove_tag_instance_from_project3 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project"
      • changedInput schema / properties / tag_instance_id / description
        Previous value: -"Unique identifier for the tag instance"New value: +"URL path parameter — unique identifier for the tag instance"
    • Changedremove_values_from_custom_field3 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / field_id / description
        Previous value: -"UUID of the Custom Field."New value: +"URL path parameter — uUID of the Custom Field."
      • changedInput schema / properties / values / description
        Previous value: -"List of values to remove from the field."New value: +"JSON request body field — list of values to remove from the field."
    • Changedremove_viewpoint_association_from_issue_rest_v2_0_mm_soft4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / coordination_issue_id / description
        Previous value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / viewpoint_id / description
        Previous 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"
    • Addedreorder_company_role
    • Removedreorder_company_role_v2_0
    • Addedrespond_to_a_workflow_instance_company
    • Removedrespond_to_a_workflow_instance_company_v2_0
    • Addedrespond_to_a_workflow_instance_project
    • Removedrespond_to_a_workflow_instance_project_v2_0
    • Addedrestart_a_workflow_instance_company
    • Removedrestart_a_workflow_instance_company_v2_0
    • Addedrestart_a_workflow_instance_project
    • Removedrestart_a_workflow_instance_project_v2_0
    • Changedrestore_a_recycled_company_checklist_template2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Company Checklist Template ID"New value: +"URL path parameter — company Checklist Template ID"
    • Changedrestore_a_time_and_material_entry2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Id of the Time And Material Entry"New value: +"URL path parameter — id of the Time And Material Entry"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedrestore_change_event
    • Removedrestore_change_event_v1_1
    • Changedrestore_company_form_template2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Company Form Template ID"New value: +"URL path parameter — company Form Template ID"
    • Changedrestore_coordination_issue_from_recycle_bin2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedrestore_deleted_checklist_inspection2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the Inspections resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedrestore_deleted_checklist_inspection_v1_1
    • Addedrestore_equipment_company
    • Removedrestore_equipment_company_v2_0
    • Changedrestore_project_form2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Project Form ID"New value: +"URL path parameter — unique identifier of the Forms resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedrestore_recycled_action_plan2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan ID"New value: +"URL path parameter — unique identifier of the Action Plans resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedrestore_recycled_checklist_template2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Checklist Template ID"New value: +"URL path parameter — checklist Template ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedrestore_recycled_checklist_template_v1_1
    • Changedrestore_recycled_company_action_plan_template2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Plan ID"New value: +"URL path parameter — unique identifier of the Action Plans resource"
    • Removedrestore_recycled_company_action_plan_template_v1_1
    • Changedrestoring_an_equipment16 fields changed
      • changedInput schema / properties / company_visible / description
        Previous value: -"Company visible"New value: +"JSON request body field — the company visible for this Field Productivity operation"
      • changedInput schema / properties / current_project_id / description
        Previous 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"
      • changedInput schema / properties / description / description
        Previous value: -"description of the equipment"New value: +"JSON request body field — description of the equipment"
      • changedInput schema / properties / id / description
        Previous value: -"Id of the equipment"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
      • changedInput schema / properties / identification_number / description
        Previous value: -"Identification number of the equipment"New value: +"JSON request body field — identification number of the equipment"
      • changedInput schema / properties / managed_equipment_category_id / description
        Previous value: -"ID of the equipment category"New value: +"JSON request body field — iD of the equipment category"
      • changedInput schema / properties / managed_equipment_make_id / description
        Previous value: -"ID of the equipment make"New value: +"JSON request body field — iD of the equipment make"
      • changedInput schema / properties / managed_equipment_model_id / description
        Previous value: -"ID of the equipment model"New value: +"JSON request body field — iD of the equipment model"
      • changedInput schema / properties / managed_equipment_type_id / description
        Previous value: -"ID of the equipment type"New value: +"JSON request body field — iD of the equipment type"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the equipment"New value: +"JSON request body field — name of the equipment"
      • changedInput schema / properties / ownership / description
        Previous value: -"The type of ownership"New value: +"JSON request body field — the type of ownership"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / serial_number / description
        Previous value: -"Serial number of the equipment"New value: +"JSON request body field — serial number of the equipment"
      • changedInput schema / properties / status / description
        Previous value: -"Status"New value: +"JSON request body field — the status for this Field Productivity operation"
      • changedInput schema / properties / upload_uuids / description
        Previous value: -"Array of upload uuids"New value: +"JSON request body field — array of upload uuids"
      • changedInput schema / properties / year / description
        Previous value: -"Year the equipment was manufactured in"New value: +"JSON request body field — year the equipment was manufactured in"
    • Addedretrieve_a_line_item_by_id_company
    • Addedretrieve_a_line_item_by_id_project
    • Removedretrieve_a_line_item_by_id_v2_0_company
    • Removedretrieve_a_line_item_by_id_v2_0_project
    • Addedretrieve_a_line_item_group_by_id_company
    • Addedretrieve_a_line_item_group_by_id_project
    • Removedretrieve_a_line_item_group_by_id_v2_0_company
    • Removedretrieve_a_line_item_group_by_id_v2_0_project
    • Changedretrieve_a_list_of_markups6 fields changed
      • changedInput schema / properties / holder_id / description
        Previous value: -"ID of the Markup's Holder"New value: +"Query string parameter — iD of the Markup's Holder"
      • changedInput schema / properties / holder_type / description
        Previous value: -"Type of the Markup's Holder"New value: +"Query string parameter — type of the Markup's Holder"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"ID of the Markup's Project"New value: +"Query string parameter — iD of the Markup's Project"
      • changedInput schema / properties / view / description
        Previous 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."
    • Addedretrieve_a_note_by_id_in_the_project_company
    • Addedretrieve_a_note_by_id_in_the_project_company_v2_0
    • Removedretrieve_a_note_by_id_in_the_project_v2_0_company
    • Removedretrieve_a_note_by_id_in_the_project_v2_0_company_v2_0
    • Addedretrieve_a_project_proposal_by_id_company
    • Addedretrieve_a_project_proposal_by_id_company_v2_0
    • Removedretrieve_a_project_proposal_by_id_v2_0_company
    • Removedretrieve_a_project_proposal_by_id_v2_0_company_v2_0
    • Addedretrieve_a_single_webhook_for_company
    • Removedretrieve_a_single_webhook_for_company_v2_0
    • Addedretrieve_a_single_webhook_for_project
    • Removedretrieve_a_single_webhook_for_project_v2_0
    • Addedretrieve_all_line_item_groups_of_a_proposal_company
    • Addedretrieve_all_line_item_groups_of_a_proposal_project
    • Removedretrieve_all_line_item_groups_of_a_proposal_v2_0_company
    • Removedretrieve_all_line_item_groups_of_a_proposal_v2_0_project
    • Addedretrieve_all_line_items_of_a_proposal_company
    • Addedretrieve_all_line_items_of_a_proposal_project
    • Removedretrieve_all_line_items_of_a_proposal_v2_0_company
    • Removedretrieve_all_line_items_of_a_proposal_v2_0_project
    • Addedretrieve_all_notes_in_the_project_company
    • Addedretrieve_all_notes_in_the_project_company_v2_0
    • Removedretrieve_all_notes_in_the_project_v2_0_company
    • Removedretrieve_all_notes_in_the_project_v2_0_company_v2_0
    • Addedretrieve_all_project_proposals_company
    • Addedretrieve_all_project_proposals_company_v2_0
    • Removedretrieve_all_project_proposals_v2_0_company
    • Removedretrieve_all_project_proposals_v2_0_company_v2_0
    • Changedretrieve_details_for_the_markup6 fields changed
      • changedInput schema / properties / holder_id / description
        Previous value: -"ID of the Markup's Holder"New value: +"Query string parameter — iD of the Markup's Holder"
      • changedInput schema / properties / holder_type / description
        Previous value: -"Type of the Markup's Holder"New value: +"Query string parameter — type of the Markup's Holder"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Markup"New value: +"URL path parameter — unique identifier of the Contracts resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"ID of the Markup's Project"New value: +"Query string parameter — iD of the Markup's Project"
    • Changedretrieve_environmental3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Environmental ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedretrieve_equipment16 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / company_visible / description
        Previous value: -"Company visible"New value: +"JSON request body field — the company visible for this Field Productivity operation"
      • changedInput schema / properties / current_project_id / description
        Previous 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"
      • changedInput schema / properties / description / description
        Previous value: -"description of the equipment"New value: +"JSON request body field — description of the equipment"
      • changedInput schema / properties / id / description
        Previous value: -"Id of the Equipment"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
      • changedInput schema / properties / identification_number / description
        Previous value: -"Identification number of the equipment"New value: +"JSON request body field — identification number of the equipment"
      • changedInput schema / properties / managed_equipment_category_id / description
        Previous value: -"ID of the equipment category"New value: +"JSON request body field — iD of the equipment category"
      • changedInput schema / properties / managed_equipment_make_id / description
        Previous value: -"ID of the equipment make"New value: +"JSON request body field — iD of the equipment make"
      • changedInput schema / properties / managed_equipment_model_id / description
        Previous value: -"ID of the equipment model"New value: +"JSON request body field — iD of the equipment model"
      • changedInput schema / properties / managed_equipment_type_id / description
        Previous value: -"ID of the equipment type"New value: +"JSON request body field — iD of the equipment type"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the equipment"New value: +"JSON request body field — name of the equipment"
      • changedInput schema / properties / ownership / description
        Previous value: -"The type of ownership"New value: +"JSON request body field — the type of ownership"
      • changedInput schema / properties / serial_number / description
        Previous value: -"Serial number of the equipment"New value: +"JSON request body field — serial number of the equipment"
      • changedInput schema / properties / status / description
        Previous value: -"Status"New value: +"JSON request body field — the status for this Field Productivity operation"
      • changedInput schema / properties / upload_uuids / description
        Previous value: -"Array of upload uuids"New value: +"JSON request body field — array of upload uuids"
      • changedInput schema / properties / year / description
        Previous value: -"Year the equipment was manufactured in"New value: +"JSON request body field — year the equipment was manufactured in"
    • Changedretrieve_property_damage3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Property Damage ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedretrieve_recycled_action3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedretrieve_recycled_action_v1_1
    • Changedretrieve_recycled_incident2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Incident ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedretrieve_recycled_injury3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Injury ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedretrieve_recycled_link2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Link ID"New value: +"URL path parameter — unique identifier of the Project-Level Configuration resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedretrieve_recycled_near_miss3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Near Miss ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedretrieve_recycled_observation2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Observation ID"New value: +"URL path parameter — unique identifier of the Observations resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedretrieve_recycled_rfi2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"RFI ID"New value: +"URL path parameter — unique identifier of the RFI resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedretrieve_recycled_witness_statement3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Witness Statement ID"New value: +"URL path parameter — witness Statement ID"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedretrieve_recycled_witness_statement_v1_1
    • Changedretrieves_the_status_of_the_asyncronous_job_that_a_bulk_users4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the batch"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedreturn_a_filter4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / name / description
        Previous value: -"Filter name."New value: +"URL path parameter — filter name."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Addedreturn_a_list_of_all_submittals
    • Removedreturn_a_list_of_all_submittals_v2_0
    • Changedreturn_a_pdf_template_config4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"PDF Template Configs ID"New value: +"URL path parameter — pDF Template Configs ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedreturn_company_schedule_summary17 fields changed
      • changedInput schema / properties / after / description
        Previous value: -"Beginning of date range to filter by."New value: +"Query string parameter — beginning of date range to filter by."
      • changedInput schema / properties / before / description
        Previous value: -"End of date range to filter by"New value: +"Query string parameter — end of date range to filter by"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / limit_per_day / description
        Previous value: -"Number of results to return per day"New value: +"Query string parameter — number of results to return per day"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / program_ids / description
        Previous value: -"Filter by project program IDs"New value: +"Query string parameter — filter by project program IDs"
      • changedInput schema / properties / project_department_ids / description
        Previous value: -"Filter by project department IDs"New value: +"Query string parameter — filter by project department IDs"
      • changedInput schema / properties / project_ids / description
        Previous value: -"Filter by project IDs"New value: +"Query string parameter — filter by project IDs"
      • changedInput schema / properties / project_office_ids / description
        Previous value: -"Filter by project office IDs"New value: +"Query string parameter — filter by project office IDs"
      • changedInput schema / properties / project_owner_type_ids / description
        Previous value: -"Filter by project owner type IDs"New value: +"Query string parameter — filter by project owner type IDs"
      • changedInput schema / properties / project_region_ids / description
        Previous value: -"Filter by project region IDs"New value: +"Query string parameter — filter by project region IDs"
      • changedInput schema / properties / project_stage_ids / description
        Previous value: -"Filter by project stage IDs"New value: +"Query string parameter — filter by project stage IDs"
      • changedInput schema / properties / project_type_ids / description
        Previous value: -"Filter by project type IDs"New value: +"Query string parameter — filter by project type IDs"
      • changedInput schema / properties / resource_ids / description
        Previous value: -"Filter by resource IDs"New value: +"Query string parameter — filter by resource IDs"
      • changedInput schema / properties / sort_dir / description
        Previous value: -"Sort results in ascending or descending order"New value: +"Query string parameter — sort results in ascending or descending order"
      • changedInput schema / properties / sort_key / description
        Previous 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."
    • Changedreturns_avatar_of_the_current_user3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedreturns_specific_template4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"The ID of the permission template to be retrieved"New value: +"URL path parameter — the ID of the permission template to be retrieved"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Removedreview_requested_changes
    • Addedreview_requested_changes_project
    • Addedreview_requested_changes_v1_0
    • Removedreview_requested_changes_v1_1
    • Changedrevoke_a_persons_login2 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / person_id / description
        Previous value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person"
    • Changedrevoke_token3 fields changed
      • changedInput schema / properties / client_id / description
        Previous value: -"Client ID"New value: +"JSON request body field — oAuth application client ID from the Procore Developer Portal"
      • changedInput schema / properties / client_secret / description
        Previous value: -"Client Secret"New value: +"JSON request body field — oAuth application client secret from the Procore Developer Portal"
      • changedInput schema / properties / token / description
        Previous value: -"Token"New value: +"JSON request body field — oAuth2 access token string to be revoked"
    • Addedsave_aemp_2_0_telematics_data
    • Removedsave_aemp_2_0_telematics_data_v2_0
    • Removedsave_aemp_2_0_telematics_data_v2_1
    • Changedsave_markups4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / markups / description
        Previous value: -"markups"New value: +"JSON request body field — the markups for this Document Markup operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
      • changedInput schema / properties / viewer_doc_id / description
        Previous value: -"viewer_doc_id"New value: +"URL path parameter — unique identifier of the viewer doc"
    • Changedsave_stamp12 fields changed
      • addedInput schema / properties / background_color
        Added value: +{
        +  "description": "JSON request body field — the background color for this Document Markup operation",
        +  "type": "string"
        +}
      • addedInput schema / properties / background_image
        Added value: +{
        +  "description": "JSON request body field — the background image for this Document Markup operation",
        +  "type": "string"
        +}
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — the unique identifier of the company"
      • addedInput schema / properties / custom_properties
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — the custom properties for this Document Markup operation",
        +  "type": "object"
        +}
      • addedInput schema / properties / font_family
        Added value: +{
        +  "description": "JSON request body field — the font family for this Document Markup operation",
        +  "type": "string"
        +}
      • addedInput schema / properties / font_style
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — the font style for this Document Markup operation",
        +  "type": "object"
        +}
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — the unique identifier of the project"
      • removedInput schema / properties / stamp
        Removed value: -{
        -  "description": "stamp",
        -  "type": "string"
        -}
      • addedInput schema / properties / text
        Added value: +{
        +  "description": "JSON request body field — the text for this Document Markup operation",
        +  "type": "string"
        +}
      • addedInput schema / properties / text_color
        Added value: +{
        +  "description": "JSON request body field — the text color for this Document Markup operation",
        +  "type": "string"
        +}
      • addedInput schema / properties / title
        Added value: +{
        +  "description": "JSON request body field — the title for this Document Markup operation",
        +  "type": "string"
        +}
      • changedInput schema / required
        Previous value: -[
        -  "company_id",
        -  "project_id",
        -  "stamp"
        -]New value: +[
        +  "company_id",
        +  "project_id",
        +  "title"
        +]
    • Removedsave_stamp_v2_0
    • Addedsave_telematics_stats_data
    • Removedsave_telematics_stats_data_v2_0
    • Changedsearch_all_equipment_company16 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / filters__company_visible / description
        Previous value: -"If true, return item(s) with 'company visible' status."New value: +"Query string parameter — if true, return item(s) with 'company visible' status."
      • changedInput schema / properties / filters__current_project_id / description
        Previous value: -"Return item(s) with the specified current project ID."New value: +"Query string parameter — return item(s) with the specified current project ID."
      • changedInput schema / properties / filters__last_service_date / description
        Previous 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."
      • changedInput schema / properties / filters__managed_equipment_category_id / description
        Previous 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."
      • changedInput schema / properties / filters__managed_equipment_id / description
        Previous value: -"Return item(s) with the specified Managed Equipment ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment ID."
      • changedInput schema / properties / filters__managed_equipment_make_id / description
        Previous 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."
      • changedInput schema / properties / filters__managed_equipment_model_id / description
        Previous 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."
      • changedInput schema / properties / filters__managed_equipment_type_id / description
        Previous 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."
      • changedInput schema / properties / filters__next_service_date / description
        Previous 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."
      • changedInput schema / properties / filters__status / description
        Previous value: -"Returns item(s) matching the specified status value."New value: +"Query string parameter — returns item(s) matching the specified status value."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / filters__year / description
        Previous value: -"Return item(s) with the specified year."New value: +"Query string parameter — return item(s) with the specified year."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / search_keyword / description
        Previous value: -"Search keyword to search Project Managed Equipment."New value: +"Query string parameter — search keyword to search Project Managed Equipment."
    • Changedsearch_all_equipment_project21 fields changed
      • changedInput schema / properties / filters__company_visible / description
        Previous value: -"If true, return item(s) with 'company visible' status."New value: +"Query string parameter — if true, return item(s) with 'company visible' status."
      • changedInput schema / properties / filters__current_project_id / description
        Previous value: -"Return item(s) with the specified current project ID."New value: +"Query string parameter — return item(s) with the specified current project ID."
      • changedInput schema / properties / filters__induction_status / description
        Previous value: -"Returns item(s) with the specified inudction status."New value: +"Query string parameter — returns item(s) with the specified inudction status."
      • changedInput schema / properties / filters__last_service_date / description
        Previous 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."
      • changedInput schema / properties / filters__managed_equipment_category_id / description
        Previous 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."
      • changedInput schema / properties / filters__managed_equipment_id / description
        Previous value: -"Return item(s) with the specified Managed Equipment ID."New value: +"Query string parameter — return item(s) with the specified Managed Equipment ID."
      • changedInput schema / properties / filters__managed_equipment_make_id / description
        Previous 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."
      • changedInput schema / properties / filters__managed_equipment_model_id / description
        Previous 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."
      • changedInput schema / properties / filters__managed_equipment_type_id / description
        Previous 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."
      • changedInput schema / properties / filters__next_service_date / description
        Previous 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."
      • changedInput schema / properties / filters__offsite / description
        Previous 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."
      • changedInput schema / properties / filters__onsite / description
        Previous 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."
      • changedInput schema / properties / filters__ownership / description
        Previous 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."
      • changedInput schema / properties / filters__status / description
        Previous value: -"Returns item(s) matching the specified status value."New value: +"Query string parameter — returns item(s) matching the specified status value."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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..."
      • changedInput schema / properties / filters__vendor_id / description
        Previous value: -"Return item(s) with the specified Vendor ID."New value: +"Query string parameter — return item(s) with the specified Vendor ID."
      • changedInput schema / properties / filters__year / description
        Previous value: -"Return item(s) with the specified year."New value: +"Query string parameter — return item(s) with the specified year."
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / search_keyword / description
        Previous value: -"Search keyword to search Project Managed Equipment."New value: +"Query string parameter — search keyword to search Project Managed Equipment."
    • Changedsend_a_response_from_a_generic_tool_item_and_then_update_the5 fields changed
      • changedInput schema / properties / generic_tool_id / description
        Previous value: -"Unique identifier for the Generic Tool"New value: +"URL path parameter — unique identifier for the Generic Tool"
      • changedInput schema / properties / generic_tool_item / description
        Previous value: -"generic_tool_item"New value: +"JSON request body field — the generic tool item for this Custom - Configurable Tools operation"
      • changedInput schema / properties / generic_tool_item_id / description
        Previous value: -"Unique identifier for the Generic Tool Item"New value: +"URL path parameter — unique identifier for the Generic Tool Item"
      • changedInput schema / properties / generic_tool_item_response / description
        Previous value: -"generic_tool_item_response"New value: +"JSON request body field — generic_tool_item_response"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedsend_all_unsent_punch_item_emails3 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / punch_ids / description
        Previous value: -"punch_ids"New value: +"JSON request body field — array of punch identifiers"
      • changedInput schema / properties / recipient / description
        Previous value: -"Recipient role"New value: +"JSON request body field — recipient role"
    • Removedsend_all_unsent_punch_item_emails_v1_1
    • Changedsend_checklist_inspection_email7 fields changed
      • changedInput schema / properties / bcc_distribution_ids / description
        Previous value: -"bcc_distribution_ids"New value: +"JSON request body field — bcc_distribution_ids"
      • changedInput schema / properties / body / description
        Previous value: -"Email Body"New value: +"JSON request body field — email Body"
      • changedInput schema / properties / cc_distribution_ids / description
        Previous value: -"cc_distribution_ids"New value: +"JSON request body field — array of cc distribution identifiers"
      • changedInput schema / properties / distribution_ids / description
        Previous value: -"distribution_ids"New value: +"JSON request body field — array of distribution identifiers"
      • changedInput schema / properties / id / description
        Previous value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the Inspections resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / subject / description
        Previous value: -"Email Subject"New value: +"JSON request body field — email Subject"
    • Changedsend_email_for_file_sharing7 fields changed
      • changedInput schema / properties / bcc_distribution_ids / description
        Previous value: -"bcc_distribution_ids"New value: +"JSON request body field — bcc_distribution_ids"
      • changedInput schema / properties / body / description
        Previous value: -"Email Body"New value: +"JSON request body field — email Body"
      • changedInput schema / properties / cc_distribution_ids / description
        Previous value: -"cc_distribution_ids"New value: +"JSON request body field — array of cc distribution identifiers"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / distribution_ids / description
        Previous value: -"distribution_ids"New value: +"JSON request body field — array of distribution identifiers"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the File"New value: +"URL path parameter — unique identifier of the Documents resource"
      • changedInput schema / properties / subject / description
        Previous value: -"Email Subject"New value: +"JSON request body field — email Subject"
    • Changedsend_email_project7 fields changed
      • changedInput schema / properties / bcc_distribution_ids / description
        Previous value: -"bcc_distribution_ids"New value: +"JSON request body field — bcc_distribution_ids"
      • changedInput schema / properties / body / description
        Previous value: -"Body of email"New value: +"JSON request body field — body of email"
      • changedInput schema / properties / cc_distribution_ids / description
        Previous value: -"cc_distribution_ids"New value: +"JSON request body field — array of cc distribution identifiers"
      • changedInput schema / properties / distribution_ids / description
        Previous value: -"distribution_ids"New value: +"JSON request body field — array of distribution identifiers"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Specification Section Revision to email"New value: +"URL path parameter — iD of the Specification Section Revision to email"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / subject / description
        Previous value: -"Subject of Email"New value: +"JSON request body field — subject of Email"
    • Changedsend_email_project_v1_07 fields changed
      • changedInput schema / properties / bcc_distribution_ids / description
        Previous value: -"bcc_distribution_ids"New value: +"JSON request body field — bcc_distribution_ids"
      • changedInput schema / properties / body / description
        Previous value: -"Body of email"New value: +"JSON request body field — body of email"
      • changedInput schema / properties / cc_distribution_ids / description
        Previous value: -"cc_distribution_ids"New value: +"JSON request body field — array of cc distribution identifiers"
      • changedInput schema / properties / distribution_ids / description
        Previous value: -"distribution_ids"New value: +"JSON request body field — array of distribution identifiers"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Drawing Revision to email"New value: +"URL path parameter — iD of the Drawing Revision to email"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / subject / description
        Previous value: -"Subject of Email"New value: +"JSON request body field — subject of Email"
    • Changedsend_invite2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the user"New value: +"URL path parameter — unique identifier of the Directory resource"
    • Removedsend_invite_v1_1
    • Removedsend_invite_v1_2
    • Removedsend_invite_v1_3
    • Changedsend_observation_item_email7 fields changed
      • changedInput schema / properties / bcc_distribution_ids / description
        Previous value: -"bcc_distribution_ids"New value: +"JSON request body field — bcc_distribution_ids"
      • changedInput schema / properties / body / description
        Previous value: -"Email Body"New value: +"JSON request body field — email Body"
      • changedInput schema / properties / cc_distribution_ids / description
        Previous value: -"cc_distribution_ids"New value: +"JSON request body field — array of cc distribution identifiers"
      • changedInput schema / properties / distribution_ids / description
        Previous value: -"distribution_ids"New value: +"JSON request body field — array of distribution identifiers"
      • changedInput schema / properties / id / description
        Previous value: -"Observation Item ID"New value: +"URL path parameter — unique identifier of the Observations resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Project ID"New value: +"Query string parameter — unique identifier for the Procore project"
      • changedInput schema / properties / subject / description
        Previous value: -"Email Subject"New value: +"JSON request body field — email Subject"
    • Changedsend_punch_item_email6 fields changed
      • changedInput schema / properties / bcc_distribution_ids / description
        Previous value: -"bcc_distribution_ids"New value: +"JSON request body field — bcc_distribution_ids"
      • changedInput schema / properties / body / description
        Previous value: -"Email Body"New value: +"JSON request body field — email Body"
      • changedInput schema / properties / cc_distribution_ids / description
        Previous value: -"cc_distribution_ids"New value: +"JSON request body field — array of cc distribution identifiers"
      • changedInput schema / properties / distribution_ids / description
        Previous value: -"distribution_ids"New value: +"JSON request body field — array of distribution identifiers"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Punch Item"New value: +"URL path parameter — iD of the Punch Item"
      • changedInput schema / properties / subject / description
        Previous value: -"Email Subject"New value: +"JSON request body field — email Subject"
    • Removedsend_punch_item_email_v1_1
    • Changedsend_unsent_observation_items1 field changed
      • changedInput schema / properties / project_id / description
        Previous value: -"ID of the Project"New value: +"JSON request body field — unique identifier for the Procore project"
    • Changedsend_unsent_punch_items1 field changed
      • changedInput schema / properties / project_id / description
        Previous value: -"ID of the Project"New value: +"JSON request body field — unique identifier for the Procore project"
    • Removedsend_unsent_punch_items_v1_1
    • Changedsend_unsent_task_items1 field changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedsend_urgent_error2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / message / description
        Previous value: -"The Error Message"New value: +"JSON request body field — the Error Message"
    • Addedset_current_project_company
    • Removedset_current_project_company_v2_0
    • Addedset_current_project_project
    • Removedset_current_project_project_v2_0
    • Changedsetup_managed_equipment_taxonomy3 fields changed
      • changedInput schema / properties / categories / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / types / description
        Previous 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"
    • Changedshow_a_bid_within_a_company4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Bid Management resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_a_bid_within_a_project4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Bid Management resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_a_budgeted_production_quantity4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Id of the Budgeted Production Quantity"New value: +"URL path parameter — id of the Budgeted Production Quantity"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_a_commitment_contract4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_a_company_inspection_template_item_evidence_configuration4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / template_item_id / description
        Previous value: -"Unique identifier for the inspection template item."New value: +"URL path parameter — unique identifier for the inspection template item."
    • Changedshow_a_compliance_document_project5 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"identifier for the a commitment contract"New value: +"URL path parameter — identifier for the a commitment contract"
      • changedInput schema / properties / id / description
        Previous value: -"identifier for the document"New value: +"URL path parameter — identifier for the document"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_a_compliance_document_project_v1_05 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"identifier for the a commitment contract"New value: +"URL path parameter — identifier for the a commitment contract"
      • changedInput schema / properties / id / description
        Previous value: -"identifier for the document"New value: +"URL path parameter — identifier for the document"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedshow_a_coordination_issue_rest_v2_0
    • Removedshow_a_coordination_issue_rest_v2_0_v2_0
    • Changedshow_a_crew4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedshow_a_inspection_item_signature_request
    • Removedshow_a_inspection_item_signature_request_v2_0
    • Changedshow_a_meeting_template4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Meeting Template ID"New value: +"URL path parameter — unique identifier of the Meetings resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_a_project_inspection_template_item_evidence_configuration5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / template_item_id / description
        Previous value: -"Unique identifier for the inspection template item."New value: +"URL path parameter — unique identifier for the inspection template item."
    • Changedshow_a_signature_company4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_a_signature_project4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Signature ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_a_signature_project_v1_04 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Signature ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_a_timesheet4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_accident_logs4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Accident log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_action5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_action_plan4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan ID"New value: +"URL path parameter — unique identifier of the Action Plans resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_action_plan_approver_signature4 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / plan_approver_id / description
        Previous value: -"Action Plan Approver ID"New value: +"URL path parameter — action Plan Approver ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_action_plan_item4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Item ID"New value: +"URL path parameter — unique identifier of the Action Plans resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_action_plan_item_assignee4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Item Assignee ID"New value: +"URL path parameter — action Plan Item Assignee ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_action_plan_item_assignee_signature4 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / plan_item_assignee_id / description
        Previous value: -"Action Plan Item Assignee ID"New value: +"URL path parameter — action Plan Item Assignee ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_action_plan_receiver_signature4 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / plan_receiver_id / description
        Previous value: -"Action Plan Receiver ID"New value: +"URL path parameter — action Plan Receiver ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_action_plan_reference4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Reference ID"New value: +"URL path parameter — action Plan Reference ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_action_plan_section5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Section ID"New value: +"URL path parameter — action Plan Section ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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..."
    • Changedshow_action_plan_template_approver4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Template Approver ID"New value: +"URL path parameter — action Plan Template Approver ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_action_plan_template_receiver4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Template Receiver ID"New value: +"URL path parameter — action Plan Template Receiver ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_action_plan_test_record_request4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Test Record Request ID"New value: +"URL path parameter — test Record Request ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_action_plan_verification_method4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Verification Method ID"New value: +"URL path parameter — action Plan Verification Method ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_actual_production_quantity8 fields changed
      • changedInput schema / properties / crew_id / description
        Previous 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"
      • changedInput schema / properties / description / description
        Previous value: -"The description of the Actual Production Quantity"New value: +"JSON request body field — the description of the Actual Production Quantity"
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
      • changedInput schema / properties / location_id / description
        Previous value: -"The Location ID for the Actual Production Quantity"New value: +"JSON request body field — the Location ID for the Actual Production Quantity"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / quantity / description
        Previous value: -"Amount installed"New value: +"JSON request body field — amount installed"
    • Changedshow_affliction_type4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Affliction Type ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_all_commitment_change_order_batches10 fields changed
      • changedInput schema / properties / filters__change_order_id / description
        Previous value: -"Filter results by Change Order ID"New value: +"Query string parameter — filter results by Change Order ID"
      • changedInput schema / properties / filters__contract_id / description
        Previous value: -"Filter results by Contract ID"New value: +"Query string parameter — filter results by Contract ID"
      • changedInput schema / properties / filters__id / description
        Previous value: -"Filter results by Change Order Batch ID"New value: +"Query string parameter — filter results by Change Order Batch ID"
      • changedInput schema / properties / filters__status / description
        Previous 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."
      • changedInput schema / properties / filters__status__not / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedshow_all_commitment_change_orders14 fields changed
      • changedInput schema / properties / filters__batch_id / description
        Previous value: -"Filter results by Change Order Batch ID"New value: +"Query string parameter — filter results by Change Order Batch ID"
      • changedInput schema / properties / filters__contract_id / description
        Previous value: -"Filter results by Contract ID"New value: +"Query string parameter — filter results by Contract ID"
      • changedInput schema / properties / filters__executed / description
        Previous value: -"Filter results by executed"New value: +"Query string parameter — filter results by executed"
      • changedInput schema / properties / filters__id / description
        Previous value: -"Filter results by Change Order ID"New value: +"Query string parameter — filter results by Change Order ID"
      • changedInput schema / properties / filters__legacy_package_id / description
        Previous value: -"Filter results by legacy Change Order Package ID"New value: +"Query string parameter — filter results by legacy Change Order Package ID"
      • changedInput schema / properties / filters__signature_required / description
        Previous value: -"Filter results by signature_required"New value: +"Query string parameter — filter results by signature_required"
      • changedInput schema / properties / filters__status / description
        Previous value: -"Filter results by status"New value: +"Query string parameter — filter results by status"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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"
      • changedInput schema / properties / filters__vendor_id / description
        Previous value: -"Filter results by Contract Vendor ID"New value: +"Query string parameter — filter results by Contract Vendor ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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."
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedshow_all_prime_change_order_batches10 fields changed
      • changedInput schema / properties / filters__change_order_id / description
        Previous value: -"Filter results by Change Order ID"New value: +"Query string parameter — filter results by Change Order ID"
      • changedInput schema / properties / filters__contract_id / description
        Previous value: -"Filter results by Contract ID"New value: +"Query string parameter — filter results by Contract ID"
      • changedInput schema / properties / filters__id / description
        Previous value: -"Filter results by Change Order Batch ID"New value: +"Query string parameter — filter results by Change Order Batch ID"
      • changedInput schema / properties / filters__status / description
        Previous 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."
      • changedInput schema / properties / filters__status__not / description
        Previous 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."
      • changedInput schema / properties / filters__updated_at / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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."
    • Changedshow_all_prime_change_orders14 fields changed
      • changedInput schema / properties / filters__batch_id / description
        Previous value: -"Filter results by Change Order Batch ID"New value: +"Query string parameter — filter results by Change Order Batch ID"
      • changedInput schema / properties / filters__contract_id / description
        Previous value: -"Filter results by Contract ID"New value: +"Query string parameter — filter results by Contract ID"
      • changedInput schema / properties / filters__executed / description
        Previous value: -"Filter results by executed"New value: +"Query string parameter — filter results by executed"
      • changedInput schema / properties / filters__id / description
        Previous value: -"Filter results by Change Order ID"New value: +"Query string parameter — filter results by Change Order ID"
      • changedInput schema / properties / filters__legacy_package_id / description
        Previous value: -"Filter results by legacy Change Order Package ID"New value: +"Query string parameter — filter results by legacy Change Order Package ID"
      • changedInput schema / properties / filters__signature_required / description
        Previous value: -"Filter results by signature_required"New value: +"Query string parameter — filter results by signature_required"
      • changedInput schema / properties / filters__status / description
        Previous value: -"Filter results by status"New value: +"Query string parameter — filter results by status"
      • changedInput schema / properties / filters__updated_at / description
        Previous 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"
      • changedInput schema / properties / filters__vendor_id / description
        Previous value: -"Filter results by Contract Vendor ID"New value: +"Query string parameter — filter results by Contract Vendor ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / sort / description
        Previous 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."
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedshow_alternative_response_set4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Alternative Response Set ID"New value: +"URL path parameter — alternative Response Set ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_an_async_job_for_a_company4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / uuid / description
        Previous value: -"UUID of the Async Job"New value: +"URL path parameter — uUID of the Async Job"
    • Changedshow_an_equipment_category4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the equipment category"New value: +"URL path parameter — iD of the equipment category"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_an_equipment_log4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the log to get"New value: +"URL path parameter — iD of the log to get"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_an_equipment_make4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the equipment make"New value: +"URL path parameter — iD of the equipment make"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_an_equipment_model4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the company to get the models for"New value: +"URL path parameter — iD of the company to get the models for"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_an_equipment_type4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the company to get the types for"New value: +"URL path parameter — iD of the company to get the types for"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_an_individual_managed_equipment_maintenance_log_attachment5 fields changed
      • changedInput schema / properties / attachment_id / description
        Previous value: -"ID of the managed equipment maintenance log attachment"New value: +"URL path parameter — iD of the managed equipment maintenance log attachment"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_an_individual_time_and_material_attachment4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the time and material attachment"New value: +"URL path parameter — iD of the time and material attachment"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_an_project_equipment_log4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the company to get the logs for"New value: +"URL path parameter — iD of the company to get the logs for"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_app_configuration4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"App Configuration ID"New value: +"URL path parameter — app Configuration ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_app_installation5 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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."
      • changedInput schema / properties / id / description
        Previous value: -"App installation ID"New value: +"URL path parameter — unique identifier of the App Marketplace resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous 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."
    • Changedshow_bid_package_company4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Bid Management resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_bid_package_project4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Bid Management resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_bids_within_a_bid_package5 fields changed
      • changedInput schema / properties / bid_package_id / description
        Previous value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package"
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Bid Management resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_billing_period_for_project4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Billing Period ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_bim_file5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"BIM File ID."New value: +"URL path parameter — unique identifier of the BIM resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedshow_bim_file_extraction4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the BIM resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_bim_geometry_file_bundle5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"BIM Geometry File Bundle ID"New value: +"URL path parameter — bIM Geometry File Bundle ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedshow_bim_level5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"BIM Level ID"New value: +"URL path parameter — unique identifier of the BIM resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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 ..."
    • Changedshow_bim_model5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"BIM Model ID"New value: +"URL path parameter — unique identifier of the BIM resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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 ..."
    • Changedshow_bim_model_revision5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"BIM Model Revision ID"New value: +"URL path parameter — bIM Model Revision ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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..."
    • Changedshow_bim_model_revision_plan5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"BIM Model Revision Plan ID"New value: +"URL path parameter — bIM Model Revision Plan ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedshow_bim_plan5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"BIM Plan ID"New value: +"URL path parameter — unique identifier of the BIM resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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..."
    • Changedshow_bim_viewpoint4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the BIM resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_budget_line_item4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Budget resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Removedshow_budget_line_item_v1_1
    • Changedshow_budget_meta_data3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_budget_modification4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Budget resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_calendar_item4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Calendar Item ID"New value: +"URL path parameter — unique identifier of the Schedule (Legacy) resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_call_logs4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Call log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_change_event5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Change Events resource"
      • addedInput schema / properties / include_deleted_change_event_line_items
        Added 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"
        +}
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Removedshow_change_event_v1_1
    • Changedshow_change_history4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_change_order_package5 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"Contract ID"New value: +"Query string parameter — unique identifier of the contract"
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Change Orders resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_change_order_request5 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"Contract ID"New value: +"Query string parameter — unique identifier of the contract"
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Change Orders resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_checklist4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the Inspections resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_checklist_comment5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Comment ID"New value: +"URL path parameter — unique identifier of the Inspections resource"
      • changedInput schema / properties / list_id / description
        Previous value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_checklist_inspection4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the Inspections resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_checklist_item6 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Item ID"New value: +"URL path parameter — unique identifier of the Inspections resource"
      • changedInput schema / properties / list_id / description
        Previous value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / section_id / description
        Previous value: -"Checklist Section ID"New value: +"Query string parameter — checklist Section ID"
    • Changedshow_checklist_item_response4 fields changed
      • changedInput schema / properties / item_id / description
        Previous value: -"Checklist Item ID"New value: +"URL path parameter — unique identifier of the item"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_checklist_item_type5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Item Type ID"New value: +"URL path parameter — unique identifier of the Inspections resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_checklist_schedule4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Checklist Schedule ID"New value: +"URL path parameter — checklist Schedule ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_checklist_section5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Checklist Section ID"New value: +"URL path parameter — checklist Section ID"
      • changedInput schema / properties / list_id / description
        Previous value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_checklist_signature_request5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Signature Request ID"New value: +"URL path parameter — signature Request ID"
      • changedInput schema / properties / list_id / description
        Previous value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_checklist_template4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Checklist Template ID"New value: +"URL path parameter — checklist Template ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_classification_company4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Company Settings resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_classification_project4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Company Settings resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_commitment_change_order5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Commitment Change Order"New value: +"URL path parameter — iD of the Commitment Change Order"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedshow_commitment_change_order_batch4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Commitment Change Order Batch"New value: +"URL path parameter — iD of the Commitment Change Order Batch"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedshow_commitment_change_order_line_item
    • Removedshow_commitment_change_order_line_item_v2_0
    • Addedshow_commitment_contract
    • Addedshow_commitment_contract_line_item
    • Removedshow_commitment_contract_line_item_v2_0
    • Addedshow_commitment_contract_summary
    • Removedshow_commitment_contract_summary_v2_0
    • Removedshow_commitment_contract_v2_0
    • Changedshow_communication4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Communication ID"New value: +"URL path parameter — unique identifier of the Emails resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_communication_thread5 fields changed
      • changedInput schema / properties / communication_id / description
        Previous value: -"Communication ID"New value: +"URL path parameter — unique identifier of the communication"
      • changedInput schema / properties / id / description
        Previous value: -"Communication Thread ID"New value: +"URL path parameter — communication Thread ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_company_action_plan_template4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Company Action Plan Template ID"New value: +"URL path parameter — company Action Plan Template ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_company_action_plan_template_item_assignee4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Assignee ID"New value: +"URL path parameter — unique identifier of the Action Plans resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_company_action_plan_template_reference4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Reference ID"New value: +"URL path parameter — unique identifier of the Action Plans resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_company_action_plan_template_test_record_request4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Company Action Plan Template Test Record Request ID"New value: +"URL path parameter — company Action Plan Template Test Record Request ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Removedshow_company_action_plan_template_v1_1
    • Changedshow_company_action_plan_type4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Company Action Plan Type ID"New value: +"URL path parameter — company Action Plan Type ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_company_checklist_section4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Company Checklist Section ID"New value: +"URL path parameter — company Checklist Section ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_company_checklist_template4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Company Checklist Template ID"New value: +"URL path parameter — company Checklist Template ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_company_configuration3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_company_file5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the File"New value: +"URL path parameter — unique identifier of the Documents resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / show_latest_version_only / description
        Previous value: -"Show only latest File Version"New value: +"Query string parameter — show only latest File Version"
    • Changedshow_company_file_version4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the file version"New value: +"URL path parameter — iD of the file version"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_company_folder6 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / exclude_files / description
        Previous value: -"Exclude children Files from results"New value: +"Query string parameter — exclude children Files from results"
      • changedInput schema / properties / exclude_folders / description
        Previous value: -"Exclude children Folders from results"New value: +"Query string parameter — exclude children Folders from results"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Folder"New value: +"URL path parameter — unique identifier of the Documents resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_company_form_template4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Company Form Template ID"New value: +"URL path parameter — company Form Template ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_company_form_template_from_project4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Company Form Template ID"New value: +"URL path parameter — company Form Template ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_company_inspection_template_item5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Company Inspection Template Item ID"New value: +"URL path parameter — company Inspection Template Item ID"
      • changedInput schema / properties / inspection_template_id / description
        Previous value: -"The ID of the Company Inspection Template"New value: +"URL path parameter — the ID of the Company Inspection Template"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_company_inspection_template_item_reference5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"The ID of the Company Inspection Template Item Reference"New value: +"URL path parameter — the ID of the Company Inspection Template Item Reference"
      • changedInput schema / properties / inspection_template_id / description
        Previous value: -"The ID of the Company Inspection Template"New value: +"URL path parameter — the ID of the Company Inspection Template"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_company_insurance4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_company_level_email_communication4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Communication ID"New value: +"URL path parameter — unique identifier of the Emails resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_company_office5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the office"New value: +"URL path parameter — unique identifier of the Company Settings resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / view / description
        Previous value: -"Response schema to use"New value: +"Query string parameter — response schema to use"
    • Addedshow_company_security_settings
    • Removedshow_company_security_settings_v2_0
    • Changedshow_company_segment_item6 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Segment Item ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / segment_id / description
        Previous value: -"Segment ID"New value: +"URL path parameter — unique identifier of the segment"
      • changedInput schema / properties / standard_cost_code_list_id / description
        Previous 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)"
    • Changedshow_company_upload4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / uuid / description
        Previous value: -"Upload UUID"New value: +"URL path parameter — upload UUID"
    • Removedshow_company_upload_v1_1
    • Removedshow_company_user_v1_0
    • Removedshow_company_user_v1_0_2
    • Removedshow_company_user_v1_1
    • Removedshow_company_user_v1_1_1
    • Removedshow_company_user_v1_2
    • Changedshow_company_user_v1_35 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the user"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / required
        Previous value: -[
        -  "id",
        -  "company_id"
        -]New value: +[
        +  "company_id",
        +  "id"
        +]
    • Removedshow_company_user_v1_3_1
    • Addedshow_company_user_v1_3_2
    • Changedshow_company_vendor5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the vendor"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedshow_company_vendor_insurance5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / vendor_id / description
        Previous value: -"Vendor ID"New value: +"URL path parameter — unique identifier of the vendor"
    • Changedshow_company_wbs_segment5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / segment_item_list_id / description
        Previous value: -"Segment Item List ID"New value: +"Query string parameter — segment Item List ID"
    • Changedshow_compliance_documents_for_a_contract_project4 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"identifier for the a commitment contract"New value: +"URL path parameter — identifier for the a commitment contract"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_compliance_documents_for_a_contract_project_v1_04 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"identifier for the a commitment contract"New value: +"URL path parameter — identifier for the a commitment contract"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_compliance_information_for_a_purchase_order_contract4 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"identifier for the work order contract"New value: +"URL path parameter — identifier for the work order contract"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_compliance_information_for_a_work_order_contract4 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"identifier for the work order contract"New value: +"URL path parameter — identifier for the work order contract"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_configurable_field_set4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Configurable Field Set ID"New value: +"URL path parameter — configurable Field Set ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_contract_payment5 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"ID of the Contract"New value: +"Query string parameter — unique identifier of the contract"
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_contributing_behavior4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Contributing Behavior ID"New value: +"URL path parameter — contributing Behavior ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_contributing_condition4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Contributing Condition ID"New value: +"URL path parameter — contributing Condition ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_coordination_issue6 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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..."
      • changedInput schema / properties / viewpoint_format / description
        Previous 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..."
    • Changedshow_coordination_issue_count_by_status3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_coordination_issue_in_recycle_bin5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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..."
    • Addedshow_coordination_issue_workflow_issue
    • Removedshow_coordination_issue_workflow_issue_v2_0
    • Changedshow_correspondence_company5 fields changed
      • changedInput schema / properties / bid_package_id / description
        Previous value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Correspondence ID"New value: +"URL path parameter — unique identifier of the Bid Management resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_correspondence_project5 fields changed
      • changedInput schema / properties / bid_package_id / description
        Previous value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package"
      • changedInput schema / properties / id / description
        Previous value: -"Correspondence ID"New value: +"URL path parameter — unique identifier of the Bid Management resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_cost_code5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Unique identifier for the Cost Code"New value: +"URL path parameter — unique identifier for the Cost Code"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / sub_job_id / description
        Previous value: -"Unique identifier for the Sub Job"New value: +"Query string parameter — unique identifier for the Sub Job"
    • Changedshow_current_company_user3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Removedshow_current_company_user_v1_1
    • Removedshow_current_company_user_v1_2
    • Removedshow_current_company_user_v1_3
    • Changedshow_custom_field_definition6 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Custom Field Definition ID"New value: +"URL path parameter — custom Field Definition ID"
      • changedInput schema / properties / includes_configurable_field_sets_count / description
        Previous 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)."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / view / description
        Previous 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 ..."
    • Changedshow_custom_field_lov_entry5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / custom_field_definition_id / description
        Previous value: -"Unique identifier for the Custom Field Definition."New value: +"URL path parameter — unique identifier for the Custom Field Definition."
      • changedInput schema / properties / id / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_custom_field_metadatum5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Custom Field Metadatum ID"New value: +"URL path parameter — custom Field Metadatum ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / view / description
        Previous 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..."
    • Changedshow_custom_fields_section4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Custom Fields Section ID"New value: +"URL path parameter — custom Fields Section ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_daily_construction_report_logs4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Daily Construction Report Log ID"New value: +"URL path parameter — daily Construction Report Log ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_delay_logs4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Delay log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_delivery_log4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Delivery Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_department4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Department ID"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_detail_for_requisition_subcontractor_invoice4 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / requisition_id / description
        Previous value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
    • Changedshow_direct_cost_item4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Direct Costs resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedshow_direct_cost_item_v1_1
    • Changedshow_direct_cost_line_item5 fields changed
      • changedInput schema / properties / direct_cost_id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the direct cost"
      • changedInput schema / properties / id / description
        Previous value: -"Direct Cost Line Item ID"New value: +"URL path parameter — direct Cost Line Item ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_drawing_revision4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Drawing Revision"New value: +"URL path parameter — iD of the Drawing Revision"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedshow_drawing_upload
    • Removedshow_drawing_upload_v1_1
    • Changedshow_dumpster_logs4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Dumpster Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_early_pay_program4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / early_pay_program_id / description
        Previous value: -"UUID of the early pay program"New value: +"URL path parameter — uUID of the early pay program"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_email_communication4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Communication ID"New value: +"URL path parameter — unique identifier of the Emails resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_environmental5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Environmental ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_equipment_change_history4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_equipment_company4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_equipment_logs4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Equipment Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_equipment_maintenance_log4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the company to get the makes for"New value: +"URL path parameter — iD of the company to get the makes for"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_equipment_project4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_equipment_timecard_entry_project5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the equipment timecard entry"New value: +"URL path parameter — iD of the equipment timecard entry"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_filing_type4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Filing Type ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_first_prime_contract3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_form4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Form ID"New value: +"URL path parameter — unique identifier of the Forms resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_generic_tool_item_project6 fields changed
      • changedInput schema / properties / generic_tool_id / description
        Previous value: -"Unique identifier for the Generic Tool"New value: +"URL path parameter — unique identifier for the Generic Tool"
      • changedInput schema / properties / generic_tool_item_id / description
        Previous value: -"Unique identifier for the Generic Tool Item"New value: +"URL path parameter — unique identifier for the Generic Tool Item"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous value: -"If supplied customize the response format"New value: +"Query string parameter — if supplied customize the response format"
    • Changedshow_generic_tool_item_v1_04 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Generic Tool Item ID"New value: +"URL path parameter — generic Tool Item ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_gps_position4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Gps Position"New value: +"URL path parameter — iD of the Gps Position"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_harm_source4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Harm Source ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_hazard4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Hazard ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_image4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the image"New value: +"URL path parameter — unique identifier of the Photos resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_image_category4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the image category"New value: +"URL path parameter — iD of the image category"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_incident4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Incident ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_incident_action_type4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Incident Action Type ID"New value: +"URL path parameter — incident Action Type ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_incident_alert4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Incident Alert ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_incident_alert_recipient5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Incident Alert Recipient's User ID"New value: +"URL path parameter — incident Alert Recipient's User ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / severity_level_id / description
        Previous value: -"Incident Severity Level ID"New value: +"URL path parameter — incident Severity Level ID"
    • Changedshow_incident_severity_level4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Incident Severity Level ID"New value: +"URL path parameter — incident Severity Level ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_injury5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Injury ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_inspection_logs4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Inspection Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_inspection_type4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Inspection Type ID"New value: +"URL path parameter — unique identifier of the Inspections resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_instruction4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Instruction ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_instruction_type4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Instruction ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_item_response_set4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Item Response Set ID"New value: +"URL path parameter — item Response Set ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_item_response_set_response5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"The ID of the Response"New value: +"URL path parameter — the ID of the Response"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / response_set_id / description
        Previous value: -"Checklist Item Response Set ID"New value: +"URL path parameter — checklist Item Response Set ID"
    • Changedshow_line_item_type4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_link4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Link ID"New value: +"URL path parameter — unique identifier of the Project-Level Configuration resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_location4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the location"New value: +"URL path parameter — unique identifier of the Project resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_lookahead4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Lookahead ID"New value: +"URL path parameter — unique identifier of the Schedule (Legacy) resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedshow_lookahead_v1_1
    • Changedshow_manpower_logs4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Manpower Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_material4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the project"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedshow_meeting
    • Addedshow_meeting_project
    • Addedshow_meeting_v1_0
    • Removedshow_meeting_v1_1
    • Changedshow_near_miss5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Near Miss ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedshow_new_change_event
    • Removedshow_new_change_event_v1_1
    • Changedshow_next_available_number_for_observation_items3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_notes_logs4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Notes Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_observation_item4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Observation Item ID"New value: +"URL path parameter — unique identifier of the Observations resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_or_create_document_markup_downloadable_pdf5 fields changed
      • changedInput schema / properties / attachment_id / description
        Previous value: -"attachment_id"New value: +"JSON request body field — unique identifier of the attachment"
      • changedInput schema / properties / item_id / description
        Previous 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"
      • changedInput schema / properties / item_type / description
        Previous 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)"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"JSON request body field — unique identifier for the Procore project"
      • changedInput schema / properties / version_datetime / description
        Previous value: -"Version Datetime of the Document"New value: +"Query string parameter — version Datetime of the Document"
    • Changedshow_payment_application_owner_invoice4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Payment Application (Owner Invoice) ID"New value: +"URL path parameter — payment Application (Owner Invoice) ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_payments_beneficiary4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / payments_beneficiary_id / description
        Previous value: -"Unique identifier of the payments beneficiary"New value: +"URL path parameter — unique identifier of the payments beneficiary"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_permission_manifest5 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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."
      • changedInput schema / properties / filter_correspondence_types / description
        Previous value: -"Filter out Correspondence Types from permissions."New value: +"Query string parameter — filter out Correspondence Types from permissions."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous 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."
    • Changedshow_plan_revision_logs4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Plan Revision Log ID"New value: +"URL path parameter — plan Revision Log ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_potential_change_order_line_item5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Change Orders resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / potential_change_order_id / description
        Previous value: -"Potential Change Order ID"New value: +"URL path parameter — potential Change Order ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_potential_change_orders5 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"Contract ID"New value: +"Query string parameter — unique identifier of the contract"
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Change Orders resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_prime_change_order5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Prime Change Order"New value: +"URL path parameter — iD of the Prime Change Order"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedshow_prime_change_order_batch4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Prime Change Order Batch"New value: +"URL path parameter — iD of the Prime Change Order Batch"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedshow_prime_change_order_line_item
    • Removedshow_prime_change_order_line_item_v2_0
    • Removedshow_prime_contract
    • Removedshow_prime_contract_line_item
    • Addedshow_prime_contract_line_item_project
    • Addedshow_prime_contract_line_item_v1_0
    • Removedshow_prime_contract_line_item_v2_0
    • Addedshow_prime_contract_project
    • Addedshow_prime_contract_summary
    • Removedshow_prime_contract_summary_v2_0
    • Addedshow_prime_contract_v1_0
    • Removedshow_prime_contract_v2_0
    • Changedshow_productivity_logs4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Productivity Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_program4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the program"New value: +"URL path parameter — unique identifier of the Company Settings resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_project5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / view / description
        Previous 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,..."
    • Changedshow_project_action_plan_template_reference4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Project Action Plan Template Reference ID"New value: +"URL path parameter — project Action Plan Template Reference ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_project_bid_type4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Project Bid Type"New value: +"URL path parameter — iD of the Project Bid Type"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_project_checklist_template4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Checklist Template ID"New value: +"URL path parameter — checklist Template ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedshow_project_checklist_template_v1_1
    • Changedshow_project_date_v1_04 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Project Date"New value: +"URL path parameter — iD of the Project Date"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_project_date_v1_0_24 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Project Date"New value: +"URL path parameter — iD of the Project Date"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_project_distribution_group_v1_09 fields changed
      • changedInput schema / properties / distribution_group_id / description
        Previous value: -"Unique identifier for the distribution group."New value: +"URL path parameter — unique identifier for the distribution group."
      • changedInput schema / properties / domain_id / description
        Previous 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..."
      • changedInput schema / properties / include_ancestors / description
        Previous 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 `..."
      • changedInput schema / properties / min_ual / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / ual / description
        Previous 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..."
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedshow_project_distribution_group_v1_0_28 fields changed
      • changedInput schema / properties / distribution_group_id / description
        Previous value: -"Unique identifier for the distribution group."New value: +"URL path parameter — unique identifier for the distribution group."
      • changedInput schema / properties / domain_id / description
        Previous 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..."
      • changedInput schema / properties / min_ual / description
        Previous 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..."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / ual / description
        Previous 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..."
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedshow_project_equipment_maintenance_log4 fields changed
      • changedInput schema / properties / id / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_project_file5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the File"New value: +"URL path parameter — unique identifier of the Documents resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / show_latest_version_only / description
        Previous value: -"Show only latest File version"New value: +"Query string parameter — show only latest File version"
    • Changedshow_project_file_version4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the file version"New value: +"URL path parameter — iD of the file version"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_project_folder7 fields changed
      • changedInput schema / properties / exclude_files / description
        Previous 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."
      • changedInput schema / properties / exclude_folders / description
        Previous 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."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the folder"New value: +"URL path parameter — unique identifier of the Documents resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / show_latest_file_version_only / description
        Previous 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."
    • Changedshow_project_inspection_template_item_reference5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"The ID of the Project Inspection Template Item Reference"New value: +"URL path parameter — the ID of the Project Inspection Template Item Reference"
      • changedInput schema / properties / inspection_template_id / description
        Previous value: -"The ID of the Project Inspection Template"New value: +"URL path parameter — the ID of the Project Inspection Template"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_project_insurance5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous value: -"Extended view of data"New value: +"Query string parameter — extended view of data"
    • Changedshow_project_location4 fields changed
      • changedInput schema / properties / location_id / description
        Previous value: -"ID of the location"New value: +"URL path parameter — unique identifier of the location"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_project_owner_type4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Project Owner Type"New value: +"URL path parameter — iD of the Project Owner Type"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_project_region4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Project Region"New value: +"URL path parameter — iD of the Project Region"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_project_schedule_settings3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_project_stage4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the project stage"New value: +"URL path parameter — iD of the project stage"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_project_type4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the project type"New value: +"URL path parameter — iD of the project type"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_project_upload4 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / uuid / description
        Previous value: -"Upload UUID"New value: +"URL path parameter — upload UUID"
    • Removedshow_project_upload_v1_1
    • Changedshow_project_user4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the user"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_project_vendor5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the vendor"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedshow_project_vendor_insurance6 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / vendor_id / description
        Previous value: -"Vendor ID"New value: +"URL path parameter — unique identifier of the vendor"
      • changedInput schema / properties / view / description
        Previous value: -"Extended view of data"New value: +"Query string parameter — extended view of data"
    • Removedshow_project_vendor_v1_1
    • Changedshow_project_wbs_segment5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource"
      • changedInput schema / properties / legacy_sub_job_id / description
        Previous value: -"Legacy Sub_Job ID"New value: +"Query string parameter — unique identifier of the legacy sub job"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_property_damage5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Property Damage ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_punch_assignment4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Punch Item Assignment"New value: +"URL path parameter — iD of the Punch Item Assignment"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_punch_item5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Punch Item"New value: +"URL path parameter — iD of the Punch Item"
      • changedInput schema / properties / include_deleted / description
        Previous value: -"Returns deleted items when set to true"New value: +"Query string parameter — returns deleted items when set to true"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_punch_item_type4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Punch Item Type"New value: +"URL path parameter — iD of the Punch Item Type"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Removedshow_punch_item_v1_1
    • Changedshow_purchase_order_contract4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_purchase_order_contract_detail_line_item5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / purchase_order_contract_id / description
        Previous value: -"Purchase Order Contract ID"New value: +"URL path parameter — purchase Order Contract ID"
    • Changedshow_purchase_order_contract_line_item6 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / purchase_order_contract_id / description
        Previous value: -"Purchase Order Contract ID"New value: +"URL path parameter — purchase Order Contract ID"
      • changedInput schema / properties / view / description
        Previous 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..."
    • Changedshow_quantity_logs4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Quantity Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedshow_recent_timecard_entry_wbs_code_ids_deprecated
    • Removedshow_recent_timecard_entry_wbs_code_ids_deprecated_v1_1
    • Changedshow_recycled_action5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_recycled_action_plan4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan ID"New value: +"URL path parameter — unique identifier of the Action Plans resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_recycled_action_plan_item4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Item ID"New value: +"URL path parameter — unique identifier of the Action Plans resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_recycled_action_plan_item_assignee4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Item Assignee ID"New value: +"URL path parameter — action Plan Item Assignee ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_recycled_action_plan_reference4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Reference ID"New value: +"URL path parameter — action Plan Reference ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_recycled_action_plan_section4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Section ID"New value: +"URL path parameter — action Plan Section ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_recycled_action_plan_template_approver4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Template Approver ID"New value: +"URL path parameter — action Plan Template Approver ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_recycled_action_plan_template_items4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Template Item ID"New value: +"URL path parameter — action Plan Template Item ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_recycled_action_plan_template_receiver4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Template Receiver ID"New value: +"URL path parameter — action Plan Template Receiver ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_recycled_action_plan_template_section4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Template Section ID"New value: +"URL path parameter — action Plan Template Section ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_recycled_action_plan_test_record4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Test Record ID"New value: +"URL path parameter — action Plan Test Record ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_recycled_action_plan_test_record_request4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Test Record Request ID"New value: +"URL path parameter — action Plan Test Record Request ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedshow_recycled_action_v1_1
    • Changedshow_recycled_checklist_inspection4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the Inspections resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_recycled_checklist_template4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Checklist Template ID"New value: +"URL path parameter — checklist Template ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page"New value: +"Query string parameter — page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Elements per page"New value: +"Query string parameter — number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_recycled_company_action_plan_template4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Company Action Plan Template ID"New value: +"URL path parameter — company Action Plan Template ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_recycled_company_action_plan_template_items_assignee4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Template Item Assignee ID"New value: +"URL path parameter — action Plan Template Item Assignee ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_recycled_company_action_plan_template_reference4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Template Reference ID"New value: +"URL path parameter — action Plan Template Reference ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_recycled_company_action_plan_template_test_record_request4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Company Action Plan Template Test Record Request ID"New value: +"URL path parameter — company Action Plan Template Test Record Request ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Removedshow_recycled_company_action_plan_template_v1_1
    • Changedshow_recycled_company_checklist_template4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Company Checklist Template ID"New value: +"URL path parameter — company Checklist Template ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_recycled_company_form_template4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Company Form Template ID"New value: +"URL path parameter — company Form Template ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_recycled_environmental5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Environmental ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_recycled_incident4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Incident ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_recycled_injury5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Injury ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_recycled_near_miss5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Near Miss ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_recycled_observation4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Observation ID"New value: +"URL path parameter — unique identifier of the Observations resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_recycled_project_action_plan_template_reference4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Template Reference ID"New value: +"URL path parameter — action Plan Template Reference ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_recycled_project_form4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Project Form ID"New value: +"URL path parameter — unique identifier of the Forms resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_recycled_property_damage5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Property Damage ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_recycled_witness_statement5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Witness Statement ID"New value: +"URL path parameter — witness Statement ID"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedshow_recycled_witness_statement_v1_1
    • Changedshow_requisition_subcontractor_invoice5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • addedInput schema / properties / view
        Added 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"
        +}
    • Changedshow_requisition_subcontractor_invoice_change_order_item5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Change Order Item ID"New value: +"URL path parameter — change Order Item ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / requisition_id / description
        Previous value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
    • Changedshow_requisition_subcontractor_invoice_contract_detail_item5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Contract Detail Item ID"New value: +"URL path parameter — contract Detail Item ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / requisition_id / description
        Previous value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
    • Changedshow_requisition_subcontractor_invoice_contract_item5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Contract Item ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / requisition_id / description
        Previous value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
    • Removedshow_requisition_subcontractor_invoice_v1_1
    • Removedshow_resource
    • Addedshow_resource_assignment
    • Removedshow_resource_assignment_v1_1
    • Addedshow_resource_project
    • Addedshow_resource_v1_0
    • Removedshow_resource_v1_1
    • Changedshow_response4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"The ID of the Response"New value: +"URL path parameter — the ID of the Response"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_rfi4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"RFI ID"New value: +"URL path parameter — unique identifier of the RFI resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_rfi_in_pdf_format5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"RFI ID"New value: +"URL path parameter — unique identifier of the RFI resource"
      • changedInput schema / properties / only_official / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_rfi_reply5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Reply ID"New value: +"URL path parameter — unique identifier of the RFI resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / rfi_id / description
        Previous value: -"RFI ID"New value: +"URL path parameter — unique identifier of the rfi"
    • Changedshow_rfq5 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"Contract ID"New value: +"Query string parameter — unique identifier of the contract"
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_rfq_quote6 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"Contract ID"New value: +"Query string parameter — unique identifier of the contract"
      • changedInput schema / properties / id / description
        Previous value: -"RFQ Quote ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / rfq_id / description
        Previous value: -"RFQ ID"New value: +"URL path parameter — unique identifier of the rfq"
    • Changedshow_rfq_response6 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"Contract ID"New value: +"Query string parameter — unique identifier of the contract"
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / rfq_id / description
        Previous value: -"RFQ ID"New value: +"URL path parameter — unique identifier of the rfq"
    • Changedshow_rounding_configuration3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_safety_violation_logs4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Safety Violation Log ID"New value: +"URL path parameter — safety Violation Log ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_specification_section_revision4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Specification section revision ID"New value: +"URL path parameter — specification section revision ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_specification_set4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the specification section to show"New value: +"URL path parameter — iD of the specification section to show"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_standard_cost_code6 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / standard_cost_code_list_id / description
        Previous value: -"The ID of the Standard Cost Code List"New value: +"Query string parameter — the ID of the Standard Cost Code List"
      • changedInput schema / properties / view / description
        Previous 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..."
    • Changedshow_standard_cost_code_list4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Unique identifier for the Standard Cost Code"New value: +"URL path parameter — unique identifier for the Standard Cost Code"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_sub_job4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Addedshow_submittal_in_pdf_format
    • Removedshow_submittal_in_pdf_format_v1_1
    • Changedshow_submittal_project4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Submittal ID"New value: +"URL path parameter — unique identifier of the Submittals resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_submittal_v1_04 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of Submittal"New value: +"URL path parameter — unique identifier of the Submittals resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Removedshow_submittal_v1_1
    • Changedshow_task4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the task"New value: +"URL path parameter — unique identifier of the Schedule (Legacy) resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_task_item4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Task Item ID"New value: +"URL path parameter — unique identifier of the Tasks resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_tax_code4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"The Tax Code ID"New value: +"URL path parameter — unique identifier of the Tax resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_tax_type4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"The Tax Type ID"New value: +"URL path parameter — unique identifier of the Tax resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_the_schedule_integration_type_for_a_project3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_time_and_material_entry4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_time_and_material_equipment_log4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_time_and_material_notification3 fields changed
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_time_and_material_timecard4 fields changed
      • changedInput schema / properties / id / description
        Previous 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"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_timecard_entry4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the timecard entry"New value: +"URL path parameter — iD of the timecard entry"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_timecard_entry_change_history_company4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the timecard entry"New value: +"URL path parameter — iD of the timecard entry"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_timecard_entry_company4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the timecard entry"New value: +"URL path parameter — iD of the timecard entry"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_timecard_entry_project4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the timecard entry"New value: +"URL path parameter — iD of the timecard entry"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_timesheet_approval_status_filters3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_timesheet_billable_filters3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_timesheet_created_by_filters3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_timesheet_crews_filters3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_timesheet_department_filters3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_timesheet_employee_filters3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_timesheet_employee_id_filters3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_timesheet_location_filters3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_timesheet_office_filters3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_timesheet_project_filters3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_timesheet_region_filters3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_timesheet_sub_job_filters3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_timesheet_time_type_filters3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_timesheet_to_budget_configuration3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_timesheet_wbs_code_filters3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_timesheet_work_classification_filters3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_todo4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the todo"New value: +"URL path parameter — unique identifier of the Schedule (Legacy) resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_trade4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Trade ID"New value: +"URL path parameter — unique identifier of the Company Settings resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_unit_of_measure4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Unit of Measure ID"New value: +"URL path parameter — unique identifier of the Units of Measure resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_user_info4 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous 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."
    • Changedshow_visitor_logs4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Visitor Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_waste_logs4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Waste Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedshow_weather_log
    • Removedshow_weather_log_v1_1
    • Changedshow_weather_logs5 fields changed
      • changedInput schema / properties / id / description
        Previous 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"
      • changedInput schema / properties / log_date / description
        Previous 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)"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_witness_statement5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Witness Statement ID"New value: +"URL path parameter — witness Statement ID"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_work_activity4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Work Activity ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedshow_work_logs4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Work Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedshow_work_order_contract4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedshow_work_order_contract_detail_line_item5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / work_order_contract_id / description
        Previous value: -"Work Order Contract ID"New value: +"URL path parameter — work Order Contract ID"
    • Changedshow_work_order_contract_line_item6 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous 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..."
      • changedInput schema / properties / work_order_contract_id / description
        Previous value: -"Work Order Contract ID"New value: +"URL path parameter — work Order Contract ID"
    • Changedshow_workflow_activity_history5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Workflows resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / workflow_instance_id / description
        Previous value: -"Workflow Instance ID"New value: +"Query string parameter — workflow Instance ID"
    • Changedshow_workflow_instance4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Workflows resource"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedsync_budget_line_items2 fields changed
      • changedInput schema / properties / budget_line_items / description
        Previous value: -"budget_line_items"New value: +"JSON request body field — the budget line items for this Budget operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Project ID"New value: +"JSON request body field — unique identifier for the Procore project"
    • Changedsync_calendar_items2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / updates / description
        Previous value: -"updates"New value: +"JSON request body field — the updates for this Schedule (Legacy) operation"
    • Changedsync_change_order_requests3 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"Contract ID"New value: +"Query string parameter — unique identifier of the contract"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / updates / description
        Previous value: -"updates"New value: +"JSON request body field — the updates for this Change Orders operation"
    • Changedsync_company_insurances2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / updates / description
        Previous value: -"updates"New value: +"JSON request body field — the updates for this Directory operation"
    • Changedsync_company_insurances_alternative1 field changed
      • changedInput schema / properties / updates / description
        Previous value: -"updates"New value: +"JSON request body field — the updates for this Directory operation"
    • Changedsync_company_users2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / updates / description
        Previous value: -"updates"New value: +"JSON request body field — the updates for this Directory operation"
    • Removedsync_company_users_v1_1
    • Removedsync_company_users_v1_2
    • Removedsync_company_users_v1_3
    • Changedsync_company_vendor_insurances3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / updates / description
        Previous value: -"updates"New value: +"JSON request body field — the updates for this Directory operation"
      • changedInput schema / properties / vendor_id / description
        Previous value: -"Vendor ID"New value: +"URL path parameter — unique identifier of the vendor"
    • Changedsync_company_vendors3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / updates / description
        Previous value: -"updates"New value: +"JSON request body field — the updates for this Directory operation"
    • Changedsync_cost_codes3 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / sub_job_id / description
        Previous value: -"Unique identifier for the Sub Job"New value: +"Query string parameter — unique identifier for the Sub Job"
      • changedInput schema / properties / updates / description
        Previous value: -"updates"New value: +"JSON request body field — the updates for this Work Breakdown Structure operation"
    • Changedsync_direct_cost_items2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / updates / description
        Previous value: -"An array of Direct Cost Items"New value: +"JSON request body field — an array of Direct Cost Items"
    • Changedsync_direct_cost_line_items2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / updates / description
        Previous value: -"updates"New value: +"JSON request body field — the updates for this Direct Costs operation"
    • Changedsync_line_item_types2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company"
      • changedInput schema / properties / updates / description
        Previous value: -"updates"New value: +"JSON request body field — the updates for this Commitments operation"
    • Changedsync_potential_change_order_line_items3 fields changed
      • changedInput schema / properties / potential_change_order_id / description
        Previous value: -"Potential Change Order ID"New value: +"URL path parameter — potential Change Order ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / updates / description
        Previous value: -"updates"New value: +"JSON request body field — the updates for this Change Orders operation"
    • Changedsync_potential_change_orders3 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"Contract ID"New value: +"Query string parameter — unique identifier of the contract"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / updates / description
        Previous value: -"updates"New value: +"JSON request body field — the updates for this Change Orders operation"
    • Changedsync_prime_contract_line_items3 fields changed
      • changedInput schema / properties / prime_contract_id / description
        Previous value: -"Prime Contract ID"New value: +"URL path parameter — unique identifier of the prime contract"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / updates / description
        Previous value: -"updates"New value: +"JSON request body field — the updates for this Prime Contracts operation"
    • Changedsync_project_insurances2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / updates / description
        Previous value: -"updates"New value: +"JSON request body field — the updates for this Directory operation"
    • Changedsync_project_vendor_insurances3 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / updates / description
        Previous value: -"updates"New value: +"JSON request body field — the updates for this Directory operation"
      • changedInput schema / properties / vendor_id / description
        Previous value: -"Vendor ID"New value: +"URL path parameter — unique identifier of the vendor"
    • Changedsync_projects3 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / updates / description
        Previous value: -"updates"New value: +"JSON request body field — the updates for this Portfolio operation"
    • Changedsync_purchase_order_contract_line_items3 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / purchase_order_contract_id / description
        Previous value: -"Purchase Order Contract ID"New value: +"URL path parameter — purchase Order Contract ID"
      • changedInput schema / properties / updates / description
        Previous value: -"updates"New value: +"JSON request body field — the updates for this Commitments operation"
    • Changedsync_purchase_order_contracts2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / updates / description
        Previous value: -"Updated Purchase Order Contracts"New value: +"JSON request body field — updated Purchase Order Contracts"
    • Changedsync_standard_cost_codes4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company"
      • changedInput schema / properties / standard_cost_code_list_id / description
        Previous value: -"Standard Cost Code list ID"New value: +"JSON request body field — standard Cost Code list ID"
      • changedInput schema / properties / updates / description
        Previous value: -"updates"New value: +"JSON request body field — the updates for this Work Breakdown Structure operation"
      • changedInput schema / properties / view / description
        Previous 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..."
    • Changedsync_sub_jobs2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / updates / description
        Previous value: -"updates"New value: +"JSON request body field — the updates for this Work Breakdown Structure operation"
    • Changedsync_tasks2 fields changed
      • changedInput schema / properties / project_id / description
        Previous 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"
      • changedInput schema / properties / updates / description
        Previous value: -"updates"New value: +"JSON request body field — the updates for this Schedule (Legacy) operation"
    • Changedsync_tax_codes2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company"
      • changedInput schema / properties / updates / description
        Previous value: -"updates"New value: +"JSON request body field — the updates for this Tax operation"
    • Changedsync_tax_types2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company"
      • changedInput schema / properties / updates / description
        Previous value: -"updates"New value: +"JSON request body field — the updates for this Tax operation"
    • Changedsync_todos2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / updates / description
        Previous value: -"updates"New value: +"JSON request body field — the updates for this Schedule (Legacy) operation"
    • Changedsync_units_of_measure3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / deletes / description
        Previous value: -"deletes"New value: +"JSON request body field — the deletes for this Units of Measure operation"
      • changedInput schema / properties / updates / description
        Previous value: -"updates"New value: +"JSON request body field — the updates for this Units of Measure operation"
    • Changedsync_work_order_contract_line_items3 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / updates / description
        Previous value: -"updates"New value: +"JSON request body field — the updates for this Commitments operation"
      • changedInput schema / properties / work_order_contract_id / description
        Previous value: -"Work Order Contract ID"New value: +"URL path parameter — work Order Contract ID"
    • Changedsync_work_order_contracts2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / updates / description
        Previous value: -"Updated Work order contracts"New value: +"JSON request body field — updated Work order contracts"
    • Addedterminate_a_workflow_instance_company_public
    • Removedterminate_a_workflow_instance_company_public_v2_0
    • Addedterminate_a_workflow_instance_project_public
    • Removedterminate_a_workflow_instance_project_public_v2_0
    • Changedtoggle_checklist_section_not_applicable_status_v1_04 fields changed
      • changedInput schema / properties / list_id / description
        Previous value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list"
      • changedInput schema / properties / not_applicable / description
        Previous value: -"Not applicable status"New value: +"JSON request body field — not applicable status"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / section_id / description
        Previous value: -"Checklist Section ID"New value: +"URL path parameter — checklist Section ID"
    • Changedtoggle_checklist_section_not_applicable_status_v1_0_24 fields changed
      • changedInput schema / properties / list_id / description
        Previous value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list"
      • changedInput schema / properties / not_applicable / description
        Previous value: -"Not applicable status"New value: +"JSON request body field — not applicable status"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / section_id / description
        Previous value: -"Checklist Section ID"New value: +"URL path parameter — checklist Section ID"
    • Addedunassign_the_attribute_items_from_the_wbs_codes
    • Removedunassign_the_attribute_items_from_the_wbs_codes_v2_0
    • Changedupdate_a_bid_from_a_bid_package15 fields changed
      • addedInput schema / properties / bid_items
        Added value: +{
        +  "description": "JSON request body field — bid Items for a Bid",
        +  "items": {},
        +  "type": "array"
        +}
      • addedInput schema / properties / bid_items_to_delete
        Added value: +{
        +  "description": "JSON request body field — iDs of Bid Items that need to be deleted",
        +  "items": {},
        +  "type": "array"
        +}
      • changedInput schema / properties / bid_package_id / description
        Previous value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package"
      • addedInput schema / properties / bid_status
        Added 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"
        +}
      • changedInput schema / properties / bidder_comments / description
        Previous value: -"Comments"New value: +"JSON request body field — comments"
      • changedInput schema / properties / bidder_exclusion / description
        Previous value: -"Exclusions"New value: +"JSON request body field — exclusions"
      • changedInput schema / properties / bidder_inclusion / description
        Previous value: -"Inclusions"New value: +"JSON request body field — inclusions"
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Bid Management resource"
      • changedInput schema / properties / is_bidder_committed / description
        Previous value: -"Bidder committed"New value: +"JSON request body field — bidder committed"
      • changedInput schema / properties / lump_sum_amount / description
        Previous value: -"Lump sum (overall) amount"New value: +"JSON request body field — lump sum (overall) amount"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • addedInput schema / properties / prostore_file_ids
        Added value: +{
        +  "description": "JSON request body field — array of Prostore File IDs for attachments",
        +  "items": {},
        +  "type": "array"
        +}
      • changedInput schema / properties / recipient_ids / description
        Previous value: -"Array of Login IDs to add as recipients"New value: +"JSON request body field — array of Login IDs to add as recipients"
      • addedInput schema / properties / show_bid_in_estimating
        Added value: +{
        +  "description": "JSON request body field — show bid in Estimating",
        +  "type": "boolean"
        +}
      • changedInput schema / properties / submitted / description
        Previous value: -"Vendor submitted Bid"New value: +"JSON request body field — vendor submitted Bid"
    • Removedupdate_a_bid_from_a_bid_package_v1_1
    • Changedupdate_a_bid_within_a_company13 fields changed
      • changedInput schema / properties / attachments_attributes / description
        Previous value: -"attachments_attributes"New value: +"JSON request body field — attachments_attributes"
      • changedInput schema / properties / bid_items_attributes / description
        Previous value: -"bid_items_attributes"New value: +"JSON request body field — bid_items_attributes"
      • changedInput schema / properties / bid_items_to_delete / description
        Previous 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"
      • changedInput schema / properties / bidder_comments / description
        Previous value: -"Comments"New value: +"JSON request body field — comments"
      • changedInput schema / properties / bidder_exclusion / description
        Previous value: -"Exclusions"New value: +"JSON request body field — exclusions"
      • changedInput schema / properties / bidder_id / description
        Previous value: -"Bidder Login ID"New value: +"JSON request body field — unique identifier of the bidder"
      • changedInput schema / properties / bidder_inclusion / description
        Previous value: -"Inclusions"New value: +"JSON request body field — inclusions"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Bid Management resource"
      • changedInput schema / properties / is_bidder_committed / description
        Previous value: -"Bidder committed"New value: +"JSON request body field — bidder committed"
      • changedInput schema / properties / lump_sum_amount / description
        Previous value: -"Lump sum (overall) amount"New value: +"JSON request body field — lump sum (overall) amount"
      • changedInput schema / properties / submitted / description
        Previous value: -"Vendor submitted Bid"New value: +"JSON request body field — vendor submitted Bid"
      • changedInput schema / properties / uploads / description
        Previous value: -"uploads"New value: +"JSON request body field — the uploads for this Bid Management operation"
    • Changedupdate_a_budgeted_production_quantity6 fields changed
      • changedInput schema / properties / cost_code_id / description
        Previous 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."
      • changedInput schema / properties / id / description
        Previous value: -"Id of the Budgeted Production Quantity"New value: +"URL path parameter — id of the Budgeted Production Quantity"
      • changedInput schema / properties / project_id / description
        Previous value: -"Project"New value: +"JSON request body field — unique identifier for the Procore project"
      • changedInput schema / properties / quantity / description
        Previous value: -"Quantity budgeted for a project cost code"New value: +"JSON request body field — quantity budgeted for a project cost code"
      • changedInput schema / properties / unit_of_measure / description
        Previous value: -"Unit of Measure"New value: +"JSON request body field — the unit of measure for this Budget operation"
      • changedInput schema / properties / wbs_code_id / description
        Previous 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."
    • Addedupdate_a_change_event_status
    • Removedupdate_a_change_event_status_v2_0
    • Addedupdate_a_change_event_type
    • Removedupdate_a_change_event_type_v2_0
    • Addedupdate_a_change_order_change_reason
    • Removedupdate_a_change_order_change_reason_v2_0
    • Changedupdate_a_checklist_inspection_schedule13 fields changed
      • changedInput schema / properties / assignee_ids / description
        Previous value: -"assignee_ids"New value: +"JSON request body field — array of assignee identifiers"
      • changedInput schema / properties / distribution_member_ids / description
        Previous value: -"distribution_member_ids"New value: +"JSON request body field — distribution_member_ids"
      • changedInput schema / properties / ends_at / description
        Previous 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."
      • changedInput schema / properties / equipment_id / description
        Previous 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."
      • changedInput schema / properties / first_inspection_due_at / description
        Previous 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."
      • changedInput schema / properties / frequency / description
        Previous 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."
      • changedInput schema / properties / id / description
        Previous value: -"Checklist Schedule ID"New value: +"URL path parameter — checklist Schedule ID"
      • changedInput schema / properties / location_id / description
        Previous 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."
      • changedInput schema / properties / name / description
        Previous value: -"The name for the Checklist Schedule."New value: +"JSON request body field — the name for the Checklist Schedule."
      • changedInput schema / properties / point_of_contact_id / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / responsible_contractor_id / description
        Previous 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."
      • changedInput schema / properties / specification_section_id / description
        Previous 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."
    • Changedupdate_a_classification5 fields changed
      • changedInput schema / properties / abbreviation / description
        Previous value: -"The shortened form of classification"New value: +"JSON request body field — the shortened form of classification"
      • changedInput schema / properties / id / description
        Previous value: -"Id of the classification"New value: +"URL path parameter — id of the classification"
      • changedInput schema / properties / is_active / description
        Previous value: -"Is the classification active or not"New value: +"JSON request body field — is the classification active or not"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the classification"New value: +"JSON request body field — name of the classification"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedupdate_a_company_action_plan_template6 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / description / description
        Previous value: -"Description"New value: +"JSON request body field — the description for this Action Plans operation"
      • changedInput schema / properties / id / description
        Previous value: -"Company Action Plan Template ID"New value: +"URL path parameter — company Action Plan Template ID"
      • changedInput schema / properties / plan_type_id / description
        Previous value: -"ID of an Action Plan Type"New value: +"JSON request body field — iD of an Action Plan Type"
      • addedInput schema / properties / private
        Added value: +{
        +  "description": "JSON request body field — privacy flag of the Company Action Plan Template",
        +  "type": "boolean"
        +}
      • changedInput schema / properties / title / description
        Previous value: -"Title"New value: +"JSON request body field — the title for this Action Plans operation"
    • Removedupdate_a_company_action_plan_template_v1_1
    • Changedupdate_a_compliance_document_project16 fields changed
      • changedInput schema / properties / attachment_ids / description
        Previous value: -"Existing attachments to preserve on the response"New value: +"JSON request body field — existing attachments to preserve on the response"
      • changedInput schema / properties / contract_id / description
        Previous value: -"identifier for the commitment contract"New value: +"URL path parameter — identifier for the commitment contract"
      • changedInput schema / properties / drawing_revision_ids / description
        Previous value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response"
      • changedInput schema / properties / effective_at / description
        Previous value: -"effective_at"New value: +"JSON request body field — the effective at for this Commitments operation"
      • changedInput schema / properties / expires_at / description
        Previous value: -"expires_at"New value: +"JSON request body field — the expires at for this Commitments operation"
      • changedInput schema / properties / file_version_ids / description
        Previous value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response"
      • changedInput schema / properties / form_ids / description
        Previous value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response"
      • changedInput schema / properties / id / description
        Previous value: -"identifier for the document"New value: +"URL path parameter — identifier for the document"
      • changedInput schema / properties / image_ids / description
        Previous value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response"
      • changedInput schema / properties / name / description
        Previous value: -"name"New value: +"JSON request body field — the name for this Commitments operation"
      • changedInput schema / properties / notes / description
        Previous value: -"notes"New value: +"JSON request body field — the notes for this Commitments operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / send_expiration_notification / description
        Previous value: -"send_expiration_notification"New value: +"JSON request body field — send_expiration_notification"
      • changedInput schema / properties / status / description
        Previous value: -"status"New value: +"JSON request body field — the status for this Commitments operation"
      • changedInput schema / properties / type / description
        Previous value: -"type"New value: +"JSON request body field — the type for this Commitments operation"
      • changedInput schema / properties / upload_ids / description
        Previous value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
    • Changedupdate_a_compliance_document_project_v1_016 fields changed
      • changedInput schema / properties / attachment_ids / description
        Previous value: -"Existing attachments to preserve on the response"New value: +"JSON request body field — existing attachments to preserve on the response"
      • changedInput schema / properties / contract_id / description
        Previous value: -"identifier for the commitment contract"New value: +"URL path parameter — identifier for the commitment contract"
      • changedInput schema / properties / drawing_revision_ids / description
        Previous value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response"
      • changedInput schema / properties / effective_at / description
        Previous value: -"effective_at"New value: +"JSON request body field — the effective at for this Commitments operation"
      • changedInput schema / properties / expires_at / description
        Previous value: -"expires_at"New value: +"JSON request body field — the expires at for this Commitments operation"
      • changedInput schema / properties / file_version_ids / description
        Previous value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response"
      • changedInput schema / properties / form_ids / description
        Previous value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response"
      • changedInput schema / properties / id / description
        Previous value: -"identifier for the document"New value: +"URL path parameter — identifier for the document"
      • changedInput schema / properties / image_ids / description
        Previous value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response"
      • changedInput schema / properties / name / description
        Previous value: -"name"New value: +"JSON request body field — the name for this Commitments operation"
      • changedInput schema / properties / notes / description
        Previous value: -"notes"New value: +"JSON request body field — the notes for this Commitments operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / send_expiration_notification / description
        Previous value: -"send_expiration_notification"New value: +"JSON request body field — send_expiration_notification"
      • changedInput schema / properties / status / description
        Previous value: -"status"New value: +"JSON request body field — the status for this Commitments operation"
      • changedInput schema / properties / type / description
        Previous value: -"type"New value: +"JSON request body field — the type for this Commitments operation"
      • changedInput schema / properties / upload_ids / description
        Previous value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
    • Addedupdate_a_coordination_issue_rest_v2_0
    • Removedupdate_a_coordination_issue_rest_v2_0_v2_0
    • Changedupdate_a_crew6 fields changed
      • changedInput schema / properties / equipment_ids / description
        Previous value: -"equipment_ids"New value: +"JSON request body field — array of equipment identifiers"
      • changedInput schema / properties / id / description
        Previous value: -"Id of the Crew"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / lead_party_id / description
        Previous value: -"Party Id of crew leader"New value: +"JSON request body field — party Id of crew leader"
      • changedInput schema / properties / name / description
        Previous value: -"Crew Name"New value: +"JSON request body field — crew Name"
      • changedInput schema / properties / party_ids / description
        Previous value: -"party_ids"New value: +"JSON request body field — array of party identifiers"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedupdate_a_delay_log_type3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Delay Log Type ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / visible / description
        Previous 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"
    • Changedupdate_a_drawing_area4 fields changed
      • changedInput schema / properties / description / description
        Previous value: -"Drawing Area description"New value: +"JSON request body field — drawing Area description"
      • changedInput schema / properties / id / description
        Previous value: -"Unique identifier for the drawing area."New value: +"URL path parameter — unique identifier for the drawing area."
      • changedInput schema / properties / name / description
        Previous value: -"Drawing Area name"New value: +"JSON request body field — drawing Area name"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedupdate_a_drawing_area_v1_1
    • Changedupdate_a_job_title7 fields changed
      • changedInput schema / properties / color / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / globally_accessible / description
        Previous 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."
      • changedInput schema / properties / hourly_rate / description
        Previous 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`."
      • changedInput schema / properties / job_title_id / description
        Previous value: -"Unique identifier for the Job Title."New value: +"URL path parameter — unique identifier for the Job Title."
      • changedInput schema / properties / name / description
        Previous value: -"Name of the Job Title."New value: +"JSON request body field — name of the Job Title."
      • changedInput schema / properties / type / description
        Previous 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"
    • Addedupdate_a_line_item_group_of_the_proposal_company
    • Addedupdate_a_line_item_group_of_the_proposal_project
    • Removedupdate_a_line_item_group_of_the_proposal_v2_0_company
    • Removedupdate_a_line_item_group_of_the_proposal_v2_0_project
    • Addedupdate_a_maintenance_record
    • Addedupdate_a_maintenance_record_project
    • Removedupdate_a_maintenance_record_project_v2_0
    • Removedupdate_a_maintenance_record_v2_0
    • Changedupdate_a_manual_forecast_line_item9 fields changed
      • changedInput schema / properties / amount / description
        Previous value: -"Total amount"New value: +"JSON request body field — total amount"
      • changedInput schema / properties / budget_line_item_id / description
        Previous 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"
      • changedInput schema / properties / description / description
        Previous value: -"Description"New value: +"JSON request body field — the description for this Budget operation"
      • changedInput schema / properties / id / description
        Previous value: -"Unique identifier for the manual forecast line item."New value: +"URL path parameter — unique identifier for the manual forecast line item."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / quantity / description
        Previous value: -"Quantity"New value: +"JSON request body field — the quantity for this Budget operation"
      • changedInput schema / properties / unit_cost / description
        Previous value: -"Unit cost"New value: +"JSON request body field — the unit cost for this Budget operation"
      • changedInput schema / properties / uom / description
        Previous value: -"Unit of measure"New value: +"JSON request body field — unit of measure"
      • changedInput schema / properties / wbs_code_id / description
        Previous 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"
    • Changedupdate_a_manual_hold3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Manual Hold ID"New value: +"URL path parameter — unique identifier of the Invoices resource"
      • changedInput schema / properties / invoice_id / description
        Previous value: -"Unique identifier of the invoice"New value: +"Query string parameter — unique identifier of the invoice"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedupdate_a_note_of_the_project_company
    • Addedupdate_a_note_of_the_project_company_v2_0
    • Removedupdate_a_note_of_the_project_v2_0_company
    • Removedupdate_a_note_of_the_project_v2_0_company_v2_0
    • Changedupdate_a_pdf_template_config_company6 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / default_project / description
        Previous 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"
      • changedInput schema / properties / description / description
        Previous value: -"description of the PdfTemplateConfig"New value: +"JSON request body field — description of the PdfTemplateConfig"
      • changedInput schema / properties / id / description
        Previous value: -"PDF Template Configs ID"New value: +"URL path parameter — pDF Template Configs ID"
      • changedInput schema / properties / pdf_config_options / description
        Previous value: -"pdf_config_options"New value: +"JSON request body field — the pdf config options for this Documents operation"
      • changedInput schema / properties / template_name / description
        Previous value: -"PdfTemplate name"New value: +"JSON request body field — pdfTemplate name"
    • Changedupdate_a_pdf_template_config_company_v1_06 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / default_project / description
        Previous 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"
      • changedInput schema / properties / description / description
        Previous value: -"description of the PdfTemplateConfig"New value: +"JSON request body field — description of the PdfTemplateConfig"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the PDF Template Config"New value: +"URL path parameter — iD of the PDF Template Config"
      • changedInput schema / properties / pdf_config_options / description
        Previous value: -"pdf_config_options"New value: +"JSON request body field — the pdf config options for this Documents operation"
      • changedInput schema / properties / template_name / description
        Previous value: -"PdfTemplate name"New value: +"JSON request body field — pdfTemplate name"
    • Changedupdate_a_permission_template_assignment_for_a_user_on_a_project3 fields changed
      • changedInput schema / properties / permission_template_id / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / user_id / description
        Previous 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"
    • Changedupdate_a_person31 fields changed
      • changedInput schema / properties / address_1 / description
        Previous value: -"First part of the Person's address."New value: +"JSON request body field — first part of the Person's address."
      • changedInput schema / properties / address_2 / description
        Previous 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)."
      • changedInput schema / properties / can_receive_email / description
        Previous value: -"Determines if the Person can receive email notifications."New value: +"JSON request body field — determines if the Person can receive email notifications."
      • changedInput schema / properties / can_receive_mobile / description
        Previous 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."
      • changedInput schema / properties / can_receive_sms / description
        Previous value: -"Determines if the Person can receive SMS notifications."New value: +"JSON request body field — determines if the Person can receive SMS notifications."
      • changedInput schema / properties / city_town / description
        Previous 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."
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / country / description
        Previous value: -"The country where the Person is located."New value: +"JSON request body field — the country where the Person is located."
      • changedInput schema / properties / dob / description
        Previous 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."
      • changedInput schema / properties / email / description
        Previous 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"
      • changedInput schema / properties / emergency_contact_email / description
        Previous value: -"Email address of the emergency contact."New value: +"JSON request body field — email address of the emergency contact."
      • changedInput schema / properties / emergency_contact_name / description
        Previous value: -"Name of the Person's emergency contact."New value: +"JSON request body field — name of the Person's emergency contact."
      • changedInput schema / properties / emergency_contact_number / description
        Previous value: -"Phone number of the emergency contact."New value: +"JSON request body field — phone number of the emergency contact."
      • changedInput schema / properties / emergency_contact_relation / description
        Previous 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."
      • changedInput schema / properties / employee_number / description
        Previous value: -"Internal employee identifier."New value: +"JSON request body field — internal employee identifier."
      • changedInput schema / properties / first_name / description
        Previous value: -"First Name of the Person."New value: +"JSON request body field — first Name of the Person."
      • changedInput schema / properties / group_ids / description
        Previous 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"
      • changedInput schema / properties / hired_date / description
        Previous 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."
      • changedInput schema / properties / hourly_wage / description
        Previous 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."
      • changedInput schema / properties / is_assignable / description
        Previous 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."
      • changedInput schema / properties / is_male / description
        Previous value: -"Specifies if the Person identifies as male."New value: +"JSON request body field — specifies if the Person identifies as male."
      • changedInput schema / properties / job_title_id / description
        Previous 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."
      • changedInput schema / properties / language / description
        Previous value: -"Language preference. Currently only `english` is supported."New value: +"JSON request body field — language preference. Currently only `english` is supported."
      • changedInput schema / properties / last_name / description
        Previous value: -"Last Name of the Person."New value: +"JSON request body field — last Name of the Person."
      • changedInput schema / properties / notification_profile_id / description
        Previous value: -"UUID of the Notification Profile for the user."New value: +"JSON request body field — uUID of the Notification Profile for the user."
      • changedInput schema / properties / permission_level_id / description
        Previous 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"
      • changedInput schema / properties / person_id / description
        Previous value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person"
      • changedInput schema / properties / phone / description
        Previous 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"
      • changedInput schema / properties / state_province / description
        Previous 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."
      • changedInput schema / properties / status / description
        Previous 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"
      • changedInput schema / properties / zipcode / description
        Previous value: -"The postal/zip code of the Person."New value: +"JSON request body field — the postal/zip code of the Person."
    • Changedupdate_a_private_field_in_company_level_email_communication3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Communication ID"New value: +"URL path parameter — unique identifier of the Emails resource"
      • changedInput schema / properties / private / description
        Previous value: -"Private Indicator"New value: +"JSON request body field — private Indicator"
    • Changedupdate_a_private_field_in_email_communication3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Communication ID"New value: +"URL path parameter — unique identifier of the Emails resource"
      • changedInput schema / properties / private / description
        Previous value: -"Private Indicator"New value: +"JSON request body field — private Indicator"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedupdate_a_proposal_of_the_project_company
    • Addedupdate_a_proposal_of_the_project_company_v2_0
    • Removedupdate_a_proposal_of_the_project_v2_0_company
    • Removedupdate_a_proposal_of_the_project_v2_0_company_v2_0
    • Changedupdate_a_response4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / corresponding_status / description
        Previous value: -"Item Status that the Response corresponds to"New value: +"JSON request body field — item Status that the Response corresponds to"
      • changedInput schema / properties / id / description
        Previous value: -"The ID of the Response"New value: +"URL path parameter — the ID of the Response"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the Response"New value: +"JSON request body field — name of the Response"
    • Changedupdate_a_single_group14 fields changed
      • changedInput schema / properties / address_1 / description
        Previous value: -"The first part of the Group's address."New value: +"JSON request body field — the first part of the Group's address."
      • changedInput schema / properties / address_2 / description
        Previous 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)."
      • changedInput schema / properties / city_town / description
        Previous value: -"The City or Town for the Group."New value: +"JSON request body field — the City or Town for the Group."
      • changedInput schema / properties / color / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / contact_email / description
        Previous 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."
      • changedInput schema / properties / contact_name / description
        Previous 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."
      • changedInput schema / properties / contact_phone / description
        Previous 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"
      • changedInput schema / properties / country / description
        Previous value: -"The Country for the Group."New value: +"JSON request body field — the Country for the Group."
      • changedInput schema / properties / group_id / description
        Previous value: -"Unique identifier for the group"New value: +"URL path parameter — unique identifier for the group"
      • changedInput schema / properties / name / description
        Previous value: -"Group Name."New value: +"JSON request body field — group Name."
      • changedInput schema / properties / state_province / description
        Previous value: -"The State or Province for the Group."New value: +"JSON request body field — the State or Province for the Group."
      • changedInput schema / properties / timezone / description
        Previous 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"
      • changedInput schema / properties / zipcode / description
        Previous value: -"Zip or Postal Code for the Group."New value: +"JSON request body field — zip or Postal Code for the Group."
    • Changedupdate_a_single_project10 fields changed
      • changedInput schema / properties / color / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / daily_end_time / description
        Previous 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"
      • changedInput schema / properties / daily_start_time / description
        Previous 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"
      • changedInput schema / properties / job_title_id / description
        Previous 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"
      • changedInput schema / properties / name / description
        Previous value: -"The name of the Project."New value: +"JSON request body field — the name of the Project."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project"
      • changedInput schema / properties / start_date / description
        Previous 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`."
      • changedInput schema / properties / status / description
        Previous 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"
      • changedInput schema / properties / timezone / description
        Previous 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"
    • Changedupdate_a_single_resource_request14 fields changed
      • changedInput schema / properties / category_id / description
        Previous value: -"UUID of the Project Category."New value: +"JSON request body field — uUID of the Project Category."
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / end_day / description
        Previous 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)."
      • changedInput schema / properties / end_time / description
        Previous 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)."
      • changedInput schema / properties / instruction_text / description
        Previous value: -"Instructions for the Resource Request."New value: +"JSON request body field — instructions for the Resource Request."
      • changedInput schema / properties / job_title_id / description
        Previous value: -"Job Title UUID for this request."New value: +"JSON request body field — job Title UUID for this request."
      • changedInput schema / properties / percent_allocated / description
        Previous 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."
      • changedInput schema / properties / request_id / description
        Previous value: -"Unique identifier for the Resource Request."New value: +"URL path parameter — unique identifier for the Resource Request."
      • changedInput schema / properties / start_day / description
        Previous 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)."
      • changedInput schema / properties / start_time / description
        Previous 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)."
      • changedInput schema / properties / state_id / description
        Previous value: -"UUID of the Assignment State."New value: +"JSON request body field — uUID of the Assignment State."
      • changedInput schema / properties / subcategory_id / description
        Previous value: -"UUID of the Project Subcategory."New value: +"JSON request body field — uUID of the Project Subcategory."
      • changedInput schema / properties / work_days / description
        Previous 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)."
      • changedInput schema / properties / work_scope_text / description
        Previous value: -"Scope of Work for the Resource Request."New value: +"JSON request body field — scope of Work for the Resource Request."
    • Changedupdate_a_task_item_comment12 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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."
      • changedInput schema / properties / comment / description
        Previous value: -"The message of the comment"New value: +"JSON request body field — the message of the comment"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / document_management_document_revision_ids / description
        Previous value: -"PDM document to attach to the response"New value: +"JSON request body field — pDM document to attach to the response"
      • changedInput schema / properties / drawing_revision_ids / description
        Previous value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response"
      • changedInput schema / properties / file_version_ids / description
        Previous value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response"
      • changedInput schema / properties / form_ids / description
        Previous value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response"
      • changedInput schema / properties / id / description
        Previous value: -"Task Item Comment ID"New value: +"URL path parameter — task Item Comment ID"
      • changedInput schema / properties / image_ids / description
        Previous value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / status / description
        Previous 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."
      • changedInput schema / properties / upload_ids / description
        Previous value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
    • Changedupdate_a_time_and_material_entry19 fields changed
      • changedInput schema / properties / company_signature_id / description
        Previous value: -"The ID associate with company's signature"New value: +"JSON request body field — the ID associate with company's signature"
      • changedInput schema / properties / company_signee_party_id / description
        Previous value: -"The ID associate with company's signature party"New value: +"JSON request body field — the ID associate with company's signature party"
      • changedInput schema / properties / customer_signature_id / description
        Previous value: -"The ID associate with customer's signature"New value: +"JSON request body field — the ID associate with customer's signature"
      • changedInput schema / properties / customer_signee_party_id / description
        Previous value: -"The ID associate with customer's signature party"New value: +"JSON request body field — the ID associate with customer's signature party"
      • changedInput schema / properties / description / description
        Previous value: -"The description of job"New value: +"JSON request body field — the description of job"
      • changedInput schema / properties / drawing_revision_ids / description
        Previous value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response"
      • changedInput schema / properties / file_version_ids / description
        Previous value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response"
      • changedInput schema / properties / form_ids / description
        Previous value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response"
      • changedInput schema / properties / id / description
        Previous value: -"Id of the Time And Material Entry"New value: +"URL path parameter — id of the Time And Material Entry"
      • changedInput schema / properties / image_ids / description
        Previous value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response"
      • changedInput schema / properties / name / description
        Previous value: -"The title of T&M ticket"New value: +"JSON request body field — the title of T&M ticket"
      • changedInput schema / properties / number / description
        Previous value: -"Unique number for the T&M ticket"New value: +"JSON request body field — unique number for the T&M ticket"
      • changedInput schema / properties / private / description
        Previous value: -"If the T&M ticket is private"New value: +"JSON request body field — if the T&M ticket is private"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / reference_number / description
        Previous value: -"The refrence number associate with T&M ticket"New value: +"JSON request body field — the refrence number associate with T&M ticket"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / status / description
        Previous value: -"Current status of T&M ticket"New value: +"JSON request body field — current status of T&M ticket"
      • changedInput schema / properties / upload_ids / description
        Previous 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."
      • changedInput schema / properties / work_performed_on_date / description
        Previous value: -"Date work performed on"New value: +"JSON request body field — date work performed on"
    • Changedupdate_a_time_and_material_equipment_log7 fields changed
      • changedInput schema / properties / description / description
        Previous value: -"Description of Time And Material Equipment Log"New value: +"JSON request body field — description of Time And Material Equipment Log"
      • changedInput schema / properties / id / description
        Previous value: -"Id of the Time And Material Equipment Log"New value: +"URL path parameter — id of the Time And Material Equipment Log"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / quantity / description
        Previous value: -"Quantity of Time And Material Equipment Log"New value: +"JSON request body field — quantity of Time And Material Equipment Log"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / time_and_material_entry_id / description
        Previous 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"
      • changedInput schema / properties / uom / description
        Previous 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"
    • Changedupdate_a_time_and_material_notification12 fields changed
      • changedInput schema / properties / closed / description
        Previous value: -"closed"New value: +"JSON request body field — the closed for this Field Productivity operation"
      • changedInput schema / properties / company_signed / description
        Previous value: -"company_signed"New value: +"JSON request body field — the company signed for this Field Productivity operation"
      • changedInput schema / properties / creation / description
        Previous value: -"creation"New value: +"JSON request body field — the creation for this Field Productivity operation"
      • changedInput schema / properties / customer_signed / description
        Previous value: -"customer_signed"New value: +"JSON request body field — the customer signed for this Field Productivity operation"
      • changedInput schema / properties / group_equipment_totals_by / description
        Previous 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"
      • changedInput schema / properties / group_labor_totals_by / description
        Previous 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"
      • changedInput schema / properties / notify_dl_on_closed / description
        Previous value: -"notify_dl_on_closed"New value: +"JSON request body field — the notify dl on closed for this Field Productivity operation"
      • changedInput schema / properties / notify_dl_on_company_signed / description
        Previous value: -"notify_dl_on_company_signed"New value: +"JSON request body field — notify_dl_on_company_signed"
      • changedInput schema / properties / notify_dl_on_creation / description
        Previous value: -"notify_dl_on_creation"New value: +"JSON request body field — notify_dl_on_creation"
      • changedInput schema / properties / notify_dl_on_customer_signed / description
        Previous value: -"notify_dl_on_customer_signed"New value: +"JSON request body field — notify_dl_on_customer_signed"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
    • Changedupdate_a_time_off_record11 fields changed
      • changedInput schema / properties / apply_to_saturday / description
        Previous value: -"Whether the time off applies to Saturdays."New value: +"JSON request body field — whether the time off applies to Saturdays."
      • changedInput schema / properties / apply_to_sunday / description
        Previous value: -"Whether the time off applies to Sundays."New value: +"JSON request body field — whether the time off applies to Sundays."
      • changedInput schema / properties / batch_end_time / description
        Previous 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)."
      • changedInput schema / properties / batch_start_time / description
        Previous 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)."
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / end_day / description
        Previous 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)."
      • changedInput schema / properties / is_paid / description
        Previous value: -"Whether the time off is paid."New value: +"JSON request body field — whether the time off is paid."
      • changedInput schema / properties / person_id / description
        Previous value: -"Unique identifier for the person"New value: +"URL path parameter — unique identifier for the person"
      • changedInput schema / properties / reason / description
        Previous value: -"Reason for the time off."New value: +"JSON request body field — reason for the time off."
      • changedInput schema / properties / start_day / description
        Previous 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)."
      • changedInput schema / properties / time_off_id / description
        Previous value: -"The UUID of the Time Off record."New value: +"URL path parameter — the UUID of the Time Off record."
    • Changedupdate_a_wbs_code4 fields changed
      • changedInput schema / properties / description / description
        Previous value: -"New custom description of the WBS Code"New value: +"JSON request body field — new custom description of the WBS Code"
      • changedInput schema / properties / id / description
        Previous value: -"WBS Code ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / status / description
        Previous value: -"New status of the WBS Code"New value: +"JSON request body field — new status of the WBS Code"
    • Changedupdate_accident_log4 fields changed
      • changedInput schema / properties / accident_log / description
        Previous value: -"accident_log"New value: +"JSON request body field — the accident log for this Daily Log operation"
      • changedInput schema / properties / attachments / description
        Previous 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."
      • changedInput schema / properties / id / description
        Previous value: -"Accident log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedupdate_action12 fields changed
      • changedInput schema / properties / action_type_id / description
        Previous value: -"The ID of the Action Type"New value: +"JSON request body field — the ID of the Action Type"
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / description / description
        Previous value: -"Description of action taken in rich text form."New value: +"JSON request body field — description of action taken in rich text form."
      • changedInput schema / properties / drawing_revision_ids / description
        Previous value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response"
      • changedInput schema / properties / file_version_ids / description
        Previous value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response"
      • changedInput schema / properties / form_ids / description
        Previous value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response"
      • changedInput schema / properties / id / description
        Previous value: -"Action ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / image_ids / description
        Previous value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response"
      • changedInput schema / properties / incident_id / description
        Previous value: -"The ID of the Incident"New value: +"JSON request body field — the ID of the Incident"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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..."
      • changedInput schema / properties / upload_ids / description
        Previous value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
    • Changedupdate_action_plan12 fields changed
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / description / description
        Previous value: -"Description of the Action Plan"New value: +"JSON request body field — description of the Action Plan"
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan ID"New value: +"URL path parameter — unique identifier of the Action Plans resource"
      • changedInput schema / properties / location_id / description
        Previous 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"
      • changedInput schema / properties / manager_id / description
        Previous value: -"Party Person ID of the Action Plan Manager"New value: +"JSON request body field — party Person ID of the Action Plan Manager"
      • changedInput schema / properties / plan_approvers_attributes / description
        Previous value: -"plan_approvers_attributes"New value: +"JSON request body field — plan_approvers_attributes"
      • changedInput schema / properties / plan_receivers_attributes / description
        Previous value: -"plan_receivers_attributes"New value: +"JSON request body field — plan_receivers_attributes"
      • changedInput schema / properties / plan_type_id / description
        Previous 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"
      • changedInput schema / properties / private / description
        Previous value: -"Privacy flag of the Action Plan"New value: +"JSON request body field — privacy flag of the Action Plan"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / status_id / description
        Previous 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"
      • changedInput schema / properties / title / description
        Previous value: -"Title of the Action Plan"New value: +"JSON request body field — title of the Action Plan"
    • Changedupdate_action_plan_item8 fields changed
      • changedInput schema / properties / description / description
        Previous value: -"Description of the Action Plan Item"New value: +"JSON request body field — description of the Action Plan Item"
      • changedInput schema / properties / due_at / description
        Previous value: -"Due Date of the Action Plan Item"New value: +"JSON request body field — due Date of the Action Plan Item"
      • changedInput schema / properties / holding_type / description
        Previous 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"
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Item ID"New value: +"URL path parameter — unique identifier of the Action Plans resource"
      • changedInput schema / properties / notes / description
        Previous value: -"Notes for the Action Plan Item"New value: +"JSON request body field — notes for the Action Plan Item"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / status_id / description
        Previous 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)"
      • changedInput schema / properties / title / description
        Previous value: -"Title of the Action Plan Item"New value: +"JSON request body field — title of the Action Plan Item"
    • Changedupdate_action_plan_item_assignee5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Item Assignee ID"New value: +"URL path parameter — action Plan Item Assignee ID"
      • changedInput schema / properties / is_holding / description
        Previous 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"
      • changedInput schema / properties / party_id / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / verification_method_id / description
        Previous 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"
    • Changedupdate_action_plan_section4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Section ID"New value: +"URL path parameter — action Plan Section ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / title / description
        Previous value: -"Title"New value: +"JSON request body field — the title for this Action Plans operation"
      • changedInput schema / properties / view / description
        Previous 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..."
    • Changedupdate_action_plan_verification_method3 fields changed
      • changedInput schema / properties / active / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Verification Method ID"New value: +"URL path parameter — action Plan Verification Method ID"
    • Changedupdate_actual_production_quantity6 fields changed
      • changedInput schema / properties / crew_id / description
        Previous 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"
      • changedInput schema / properties / description / description
        Previous value: -"The description of the Actual Production Quantity"New value: +"JSON request body field — the description of the Actual Production Quantity"
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
      • changedInput schema / properties / location_id / description
        Previous value: -"The Location ID for the Actual Production Quantity"New value: +"JSON request body field — the Location ID for the Actual Production Quantity"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / quantity / description
        Previous value: -"Amount installed"New value: +"JSON request body field — amount installed"
    • Changedupdate_advance_ball_in_court2 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"RFI ID"New value: +"URL path parameter — unique identifier of the RFI resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedupdate_advance_ball_in_court_v1_1
    • Addedupdate_advanced_forecasting_rows
    • Removedupdate_advanced_forecasting_rows_v2_0
    • Changedupdate_affliction_type4 fields changed
      • changedInput schema / properties / active / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Affliction Type ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Affliction Type"New value: +"JSON request body field — the Name of the Affliction Type"
    • Changedupdate_all_classification2 fields changed
      • changedInput schema / properties / is_active / description
        Previous value: -"Is the classifications active or not"New value: +"JSON request body field — is the classifications active or not"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedupdate_all_company_segment_items4 fields changed
      • changedInput schema / properties / attributes / description
        Previous value: -"attributes"New value: +"JSON request body field — the attributes for this Work Breakdown Structure operation"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / ids / description
        Previous 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."
      • changedInput schema / properties / segment_id / description
        Previous value: -"Segment ID"New value: +"URL path parameter — unique identifier of the segment"
    • Changedupdate_all_project_segment_items4 fields changed
      • changedInput schema / properties / attributes / description
        Previous value: -"attributes"New value: +"JSON request body field — the attributes for this Work Breakdown Structure operation"
      • changedInput schema / properties / ids / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / segment_id / description
        Previous value: -"Segment ID"New value: +"URL path parameter — unique identifier of the segment"
    • Changedupdate_an_equipment16 fields changed
      • changedInput schema / properties / company_visible / description
        Previous value: -"Company visible"New value: +"JSON request body field — the company visible for this Field Productivity operation"
      • changedInput schema / properties / current_project_id / description
        Previous 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"
      • changedInput schema / properties / description / description
        Previous value: -"description of the equipment"New value: +"JSON request body field — description of the equipment"
      • changedInput schema / properties / id / description
        Previous value: -"Id of the equipment"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
      • changedInput schema / properties / identification_number / description
        Previous value: -"Identification number of the equipment"New value: +"JSON request body field — identification number of the equipment"
      • changedInput schema / properties / managed_equipment_category_id / description
        Previous value: -"ID of the equipment category"New value: +"JSON request body field — iD of the equipment category"
      • changedInput schema / properties / managed_equipment_make_id / description
        Previous value: -"ID of the equipment make"New value: +"JSON request body field — iD of the equipment make"
      • changedInput schema / properties / managed_equipment_model_id / description
        Previous value: -"ID of the equipment model"New value: +"JSON request body field — iD of the equipment model"
      • changedInput schema / properties / managed_equipment_type_id / description
        Previous value: -"ID of the equipment type"New value: +"JSON request body field — iD of the equipment type"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the equipment"New value: +"JSON request body field — name of the equipment"
      • changedInput schema / properties / ownership / description
        Previous value: -"The type of ownership"New value: +"JSON request body field — the type of ownership"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / serial_number / description
        Previous value: -"Serial number of the equipment"New value: +"JSON request body field — serial number of the equipment"
      • changedInput schema / properties / status / description
        Previous value: -"Status"New value: +"JSON request body field — the status for this Field Productivity operation"
      • changedInput schema / properties / upload_uuids / description
        Previous value: -"Array of upload uuids"New value: +"JSON request body field — array of upload uuids"
      • changedInput schema / properties / year / description
        Previous value: -"Year the equipment was manufactured in"New value: +"JSON request body field — year the equipment was manufactured in"
    • Changedupdate_an_equipment_make4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the equipment make"New value: +"URL path parameter — iD of the equipment make"
      • changedInput schema / properties / is_active / description
        Previous value: -"Equipment make is active if true"New value: +"JSON request body field — equipment make is active if true"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the equipment make"New value: +"JSON request body field — name of the equipment make"
    • Changedupdate_an_equipment_model6 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the company to get the models for"New value: +"URL path parameter — iD of the company to get the models for"
      • changedInput schema / properties / is_active / description
        Previous value: -"If the equipment model is active"New value: +"JSON request body field — if the equipment model is active"
      • changedInput schema / properties / managed_equipment_make_id / description
        Previous value: -"Equipment make ID the model is associated to"New value: +"JSON request body field — equipment make ID the model is associated to"
      • changedInput schema / properties / managed_equipment_type_id / description
        Previous value: -"Equipment type ID the model is associated to"New value: +"JSON request body field — equipment type ID the model is associated to"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the equipment model"New value: +"JSON request body field — name of the equipment model"
    • Changedupdate_an_equipment_type5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the company to get the types for"New value: +"URL path parameter — iD of the company to get the types for"
      • changedInput schema / properties / is_active / description
        Previous value: -"If the equipment model is active"New value: +"JSON request body field — if the equipment model is active"
      • changedInput schema / properties / managed_equipment_category_id / description
        Previous value: -"Equipment category ID the type is associated to"New value: +"JSON request body field — equipment category ID the type is associated to"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the equipment Type"New value: +"JSON request body field — name of the equipment Type"
    • Addedupdate_an_estimate_line_item_of_the_proposal_company
    • Addedupdate_an_estimate_line_item_of_the_proposal_project
    • Removedupdate_an_estimate_line_item_of_the_proposal_v2_0_company
    • Removedupdate_an_estimate_line_item_of_the_proposal_v2_0_project
    • Changedupdate_an_project_equipment_log9 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the company to get the logs for"New value: +"URL path parameter — iD of the company to get the logs for"
      • changedInput schema / properties / induction_checklist_list_id / description
        Previous value: -"Id of the inspection list the equipment uses"New value: +"JSON request body field — id of the inspection list the equipment uses"
      • changedInput schema / properties / induction_number / description
        Previous value: -"The number used for equipment induction"New value: +"JSON request body field — the number used for equipment induction"
      • changedInput schema / properties / induction_status / description
        Previous 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"
      • changedInput schema / properties / inspection_date / description
        Previous value: -"The date the equipment was inspected"New value: +"JSON request body field — the date the equipment was inspected"
      • changedInput schema / properties / managed_equipment_id / description
        Previous value: -"Equipment Id the log is associated with"New value: +"JSON request body field — equipment Id the log is associated with"
      • changedInput schema / properties / offsite / description
        Previous value: -"The Date equipment left the site"New value: +"JSON request body field — the Date equipment left the site"
      • changedInput schema / properties / onsite / description
        Previous value: -"The Date equipment arrived on site"New value: +"JSON request body field — the Date equipment arrived on site"
      • changedInput schema / properties / project_id / description
        Previous 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"
    • Changedupdate_app_configuration5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"App Configuration ID"New value: +"URL path parameter — app Configuration ID"
      • changedInput schema / properties / instance_configuration / description
        Previous 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."
      • changedInput schema / properties / project_ids / description
        Previous 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"
      • changedInput schema / properties / title / description
        Previous value: -"Title for app configuration"New value: +"JSON request body field — title for app configuration"
    • Changedupdate_app_installation5 fields changed
      • changedInput schema / properties / app_installation / description
        Previous value: -"app_installation"New value: +"JSON request body field — the app installation for this App Marketplace operation"
      • changedInput schema / properties / app_uid / description
        Previous value: -"Third party application UID"New value: +"JSON request body field — third party application UID"
      • changedInput schema / properties / company_id / description
        Previous 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."
      • changedInput schema / properties / id / description
        Previous value: -"App installation ID"New value: +"URL path parameter — unique identifier of the App Marketplace resource"
      • changedInput schema / properties / project_id / description
        Previous 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."
    • Addedupdate_assignees_and_workflow_manager_company
    • Removedupdate_assignees_and_workflow_manager_company_v2_0
    • Addedupdate_assignees_and_workflow_manager_project
    • Removedupdate_assignees_and_workflow_manager_project_v2_0
    • Addedupdate_bid_board_project
    • Addedupdate_bid_board_project_custom_field
    • Removedupdate_bid_board_project_custom_field_v2_0
    • Removedupdate_bid_board_project_v2_0
    • Changedupdate_bid_form11 fields changed
      • changedInput schema / properties / alternates / description
        Previous value: -"Alternate bids"New value: +"JSON request body field — alternate bids"
      • changedInput schema / properties / base_bid / description
        Previous value: -"Base Bids"New value: +"JSON request body field — base Bids"
      • changedInput schema / properties / bid_form_id / description
        Previous value: -"Bid Form ID"New value: +"URL path parameter — unique identifier of the bid form"
      • changedInput schema / properties / bid_package_id / description
        Previous value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package"
      • addedInput schema / properties / lock_quantity_fields_alternates
        Added value: +{
        +  "description": "JSON request body field — lock quantity fields for all alternate items",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / lock_quantity_fields_base_bid
        Added value: +{
        +  "description": "JSON request body field — lock quantity fields for all base bid items",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / lock_unit_fields_alternates
        Added value: +{
        +  "description": "JSON request body field — lock unit fields for all alternate items",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / lock_unit_fields_base_bid
        Added value: +{
        +  "description": "JSON request body field — lock unit fields for all base bid items",
        +  "type": "boolean"
        +}
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • addedInput schema / properties / proposal_id
        Added value: +{
        +  "description": "JSON request body field — unique identifier of the proposal",
        +  "type": "number"
        +}
      • changedInput schema / properties / title / description
        Previous value: -"Bid Form Title"New value: +"JSON request body field — bid Form Title"
    • Removedupdate_bid_form_v1_1
    • Changedupdate_bid_package32 fields changed
      • changedInput schema / properties / accept_post_due_submissions / description
        Previous value: -"Accepts bid post due submissions"New value: +"JSON request body field — accepts bid post due submissions"
      • changedInput schema / properties / accounting_method / description
        Previous value: -"Bid package accounting method, either 'amount' or 'unit'"New value: +"JSON request body field — bid package accounting method, either 'amount' or 'unit'"
      • changedInput schema / properties / anticipated_award_date / description
        Previous value: -"Anticipated award date"New value: +"JSON request body field — anticipated award date"
      • changedInput schema / properties / bid_due_date / description
        Previous value: -"Due date"New value: +"JSON request body field — bid due date in YYYY-MM-DD format"
      • changedInput schema / properties / bid_email_message / description
        Previous value: -"Bid package email information details"New value: +"JSON request body field — bid package email information details"
      • changedInput schema / properties / bid_submission_confirmation / description
        Previous value: -"Bid Package submission confirmation text"New value: +"JSON request body field — bid Package submission confirmation text"
      • changedInput schema / properties / bid_web_message / description
        Previous value: -"Bid package bidding instructions"New value: +"JSON request body field — bid package bidding instructions"
      • changedInput schema / properties / blind_bidding / description
        Previous value: -"Blind bidding enabled"New value: +"JSON request body field — blind bidding enabled"
      • changedInput schema / properties / business_classifications / description
        Previous value: -"Array of business classifications"New value: +"JSON request body field — array of business classifications"
      • changedInput schema / properties / display_project_name / description
        Previous value: -"Display project name"New value: +"JSON request body field — display project name"
      • changedInput schema / properties / distribution_ids / description
        Previous 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"
      • changedInput schema / properties / enable_prebid_walkthrough / description
        Previous value: -"Pre-bid walkthrough enabled"New value: +"JSON request body field — pre-bid walkthrough enabled"
      • changedInput schema / properties / enable_public_discovery / description
        Previous 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"
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Bid Management resource"
      • changedInput schema / properties / manager_id / description
        Previous value: -"Login Information ID for Manager"New value: +"JSON request body field — login Information ID for Manager"
      • changedInput schema / properties / number / description
        Previous value: -"Bid package number"New value: +"JSON request body field — bid package number"
      • changedInput schema / properties / pre_bid_meeting_date / description
        Previous 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)"
      • changedInput schema / properties / pre_bid_meeting_location / description
        Previous value: -"Location for the pre-bid meeting"New value: +"JSON request body field — location for the pre-bid meeting"
      • changedInput schema / properties / pre_bid_meeting_notes / description
        Previous value: -"Notes for the pre-bid meeting"New value: +"JSON request body field — notes for the pre-bid meeting"
      • changedInput schema / properties / pre_bid_meeting_online_link / description
        Previous value: -"Online meeting link for the pre-bid meeting"New value: +"JSON request body field — online meeting link for the pre-bid meeting"
      • changedInput schema / properties / pre_bid_walk_through_date / description
        Previous value: -"Scheduled pre-bid walkthrough date"New value: +"JSON request body field — scheduled pre-bid walkthrough date"
      • changedInput schema / properties / pre_bid_walk_through_notes / description
        Previous value: -"Pre-bid walkthrough notes"New value: +"JSON request body field — pre-bid walkthrough notes"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / prostore_file_ids / description
        Previous 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"
      • changedInput schema / properties / public_bid_opening_details_date / description
        Previous 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)"
      • changedInput schema / properties / public_bid_opening_details_location / description
        Previous value: -"Location for the public bid opening"New value: +"JSON request body field — location for the public bid opening"
      • changedInput schema / properties / public_bid_opening_details_online_link / description
        Previous value: -"Online link for the public bid opening"New value: +"JSON request body field — online link for the public bid opening"
      • changedInput schema / properties / public_project_funding_source / description
        Previous 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'"
      • changedInput schema / properties / require_nda / description
        Previous value: -"Require Non-Disclosure Agreement"New value: +"JSON request body field — require Non-Disclosure Agreement"
      • changedInput schema / properties / show_location_for_nda_projects / description
        Previous 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"
      • changedInput schema / properties / title / description
        Previous value: -"Bid package title"New value: +"JSON request body field — bid package title"
      • changedInput schema / properties / trades_and_services / description
        Previous value: -"Array of trades and services"New value: +"JSON request body field — array of trades and services"
    • Changedupdate_billing_period6 fields changed
      • changedInput schema / properties / due_date / description
        Previous value: -"Due date"New value: +"JSON request body field — due date in YYYY-MM-DD format"
      • changedInput schema / properties / end_date / description
        Previous value: -"End date"New value: +"JSON request body field — the end date in YYYY-MM-DD format"
      • changedInput schema / properties / id / description
        Previous value: -"Billing Period ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / start_date / description
        Previous value: -"Start date"New value: +"JSON request body field — the start date in YYYY-MM-DD format"
      • changedInput schema / properties / status / description
        Previous value: -"Status"New value: +"JSON request body field — the status for this Commitments operation"
    • Changedupdate_bim_file3 fields changed
      • changedInput schema / properties / bim_file / description
        Previous value: -"BIM File Item object"New value: +"JSON request body field — bIM File Item object"
      • changedInput schema / properties / id / description
        Previous value: -"BIM File ID"New value: +"URL path parameter — unique identifier of the BIM resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedupdate_bim_level3 fields changed
      • changedInput schema / properties / bim_level / description
        Previous value: -"BIM Level Item object"New value: +"JSON request body field — bIM Level Item object"
      • changedInput schema / properties / id / description
        Previous value: -"BIM Level ID"New value: +"URL path parameter — unique identifier of the BIM resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedupdate_bim_model3 fields changed
      • changedInput schema / properties / bim_model / description
        Previous value: -"BIM Model"New value: +"JSON request body field — the bim model for this BIM operation"
      • changedInput schema / properties / id / description
        Previous value: -"BIM Model ID"New value: +"URL path parameter — unique identifier of the BIM resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedupdate_bim_model_revision3 fields changed
      • changedInput schema / properties / bim_model_revision / description
        Previous value: -"bim_model_revision"New value: +"JSON request body field — the bim model revision for this BIM operation"
      • changedInput schema / properties / id / description
        Previous value: -"BIM Model Revision ID"New value: +"URL path parameter — bIM Model Revision ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedupdate_bim_plan4 fields changed
      • changedInput schema / properties / bim_plan / description
        Previous value: -"bim_plan"New value: +"JSON request body field — the bim plan for this BIM operation"
      • changedInput schema / properties / id / description
        Previous value: -"BIM Plan ID"New value: +"URL path parameter — unique identifier of the BIM resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / view / description
        Previous value: -"Specify response schema view"New value: +"JSON request body field — specify response schema view"
    • Changedupdate_budget_line_item3 fields changed
      • changedInput schema / properties / budget_line_item / description
        Previous value: -"Budget Line Item object"New value: +"JSON request body field — budget Line Item object"
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Budget resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Removedupdate_budget_line_item_v1_1
    • Changedupdate_budget_modification8 fields changed
      • changedInput schema / properties / from_budget_line_item_id / description
        Previous 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..."
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Budget resource"
      • changedInput schema / properties / notes / description
        Previous value: -"Notes on the purpose of the transfer"New value: +"JSON request body field — notes on the purpose of the transfer"
      • changedInput schema / properties / origin_data / description
        Previous 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"
      • changedInput schema / properties / origin_id / description
        Previous 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)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / to_budget_line_item_id / description
        Previous 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."
      • changedInput schema / properties / transfer_amount / description
        Previous value: -"Transfer amount"New value: +"JSON request body field — the transfer amount for this Budget operation"
    • Changedupdate_calendar_item10 fields changed
      • changedInput schema / properties / assigned_id / description
        Previous 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"
      • changedInput schema / properties / color / description
        Previous value: -"Calendar Item color (as a hex triplet)"New value: +"JSON request body field — calendar Item color (as a hex triplet)"
      • changedInput schema / properties / description / description
        Previous value: -"Calendar Item description"New value: +"JSON request body field — calendar Item description"
      • changedInput schema / properties / finish / description
        Previous value: -"The finish date of the Calendar Item"New value: +"JSON request body field — the finish date of the Calendar Item"
      • changedInput schema / properties / id / description
        Previous value: -"Calendar Item ID"New value: +"URL path parameter — unique identifier of the Schedule (Legacy) resource"
      • changedInput schema / properties / name / description
        Previous value: -"Calendar Item name"New value: +"JSON request body field — calendar Item name"
      • changedInput schema / properties / percentage / description
        Previous value: -"Calendar Item completion percentage"New value: +"JSON request body field — calendar Item completion percentage"
      • changedInput schema / properties / private / description
        Previous value: -"Calendar Item private status"New value: +"JSON request body field — calendar Item private status"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / start / description
        Previous value: -"The start date of the Calendar Item"New value: +"JSON request body field — the start date of the Calendar Item"
    • Changedupdate_call_log4 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / call_log / description
        Previous value: -"call_log"New value: +"JSON request body field — the call log for this Daily Log operation"
      • changedInput schema / properties / id / description
        Previous value: -"Call log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedupdate_catalog
    • Removedupdate_catalog_v2_0
    • Changedupdate_category_name4 fields changed
      • changedInput schema / properties / category_id / description
        Previous value: -"Unique identifier for the Category."New value: +"URL path parameter — unique identifier for the Category."
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / name / description
        Previous value: -"The updated name of the Category."New value: +"JSON request body field — the updated name of the Category."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project"
    • Changedupdate_change_event27 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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"
      • addedInput schema / properties / attachments_by_drawing_revision
        Added value: +{
        +  "description": "JSON request body field — attachments_by_drawing_revision",
        +  "items": {},
        +  "type": "array"
        +}
      • addedInput schema / properties / attachments_by_file_version
        Added value: +{
        +  "description": "JSON request body field — attachments_by_file_version",
        +  "items": {},
        +  "type": "array"
        +}
      • addedInput schema / properties / attachments_by_form
        Added value: +{
        +  "description": "JSON request body field — the attachments by form for this Change Events operation",
        +  "items": {},
        +  "type": "array"
        +}
      • addedInput schema / properties / attachments_by_image
        Added value: +{
        +  "description": "JSON request body field — attachments_by_image",
        +  "items": {},
        +  "type": "array"
        +}
      • addedInput schema / properties / attachments_by_uuid
        Added value: +{
        +  "description": "JSON request body field — the attachments by uuid for this Change Events operation",
        +  "items": {},
        +  "type": "array"
        +}
      • removedInput schema / properties / change_event
        Removed value: -{
        -  "additionalProperties": {},
        -  "description": "change_event",
        -  "type": "object"
        -}
      • removedInput schema / properties / change_event_origin_id
        Removed 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"
        -}
      • removedInput schema / properties / change_event_origin_type
        Removed value: -{
        -  "description": "Change Event origin type. Supported values: `GenericToolItem`, `CommunicationThread`, `Meeting`, `Observations::Item`, `Rfi::Header`, `SiteInstruction`.",
        -  "type": "string"
        -}
      • addedInput schema / properties / change_items
        Added value: +{
        +  "description": "JSON request body field — change Event Line Items",
        +  "items": {},
        +  "type": "array"
        +}
      • addedInput schema / properties / change_reason
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — the change reason for this Change Events operation",
        +  "type": "object"
        +}
      • addedInput schema / properties / change_type
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — the change type for this Change Events operation",
        +  "type": "object"
        +}
      • addedInput schema / properties / custom_fields
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — the custom fields for this Change Events operation",
        +  "type": "object"
        +}
      • addedInput schema / properties / description
        Added value: +{
        +  "description": "JSON request body field — the description for this Change Events operation",
        +  "type": "string"
        +}
      • addedInput schema / properties / event_origin
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — the event origin for this Change Events operation",
        +  "type": "object"
        +}
      • addedInput schema / properties / external_data
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — the external data for this Change Events operation",
        +  "type": "object"
        +}
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Change Events resource"
      • addedInput schema / properties / number
        Added value: +{
        +  "description": "JSON request body field — the number for this Change Events operation",
        +  "type": "string"
        +}
      • removedInput schema / properties / origin_global_id
        Removed 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"
        -}
      • addedInput schema / properties / prime_contract_for_estimates
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — prime_contract_for_estimates",
        +  "type": "object"
        +}
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • addedInput schema / properties / scope
        Added value: +{
        +  "description": "JSON request body field — event Scope",
        +  "enum": [
        +    "in_scope",
        +    "out_of_scope",
        +    "tbd"
        +  ],
        +  "type": "string"
        +}
      • addedInput schema / properties / source
        Added 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"
        +}
      • addedInput schema / properties / source_of_revenue_rom
        Added value: +{
        +  "description": "JSON request body field — revenue ROM source for this Change Event",
        +  "enum": [
        +    "automatic",
        +    "latest_cost",
        +    "manual",
        +    "no_revenue_expected"
        +  ],
        +  "type": "string"
        +}
      • addedInput schema / properties / status
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — the status for this Change Events operation",
        +  "type": "object"
        +}
      • addedInput schema / properties / title
        Added value: +{
        +  "description": "JSON request body field — the title for this Change Events operation",
        +  "type": "string"
        +}
      • changedInput schema / required
        Previous value: -[
        -  "id",
        -  "project_id",
        -  "change_event"
        -]New value: +[
        +  "id",
        +  "project_id"
        +]
    • Changedupdate_change_event_production_quantity8 fields changed
      • changedInput schema / properties / change_event_id / description
        Previous value: -"Unique identifier for the Change Event"New value: +"URL path parameter — unique identifier for the Change Event"
      • changedInput schema / properties / cost_code_id / description
        Previous value: -"ID of the associated Cost Code"New value: +"JSON request body field — iD of the associated Cost Code"
      • changedInput schema / properties / description / description
        Previous value: -"Description"New value: +"JSON request body field — the description for this Change Events operation"
      • changedInput schema / properties / id / description
        Previous value: -"Change Event Production Quantity ID"New value: +"URL path parameter — change Event Production Quantity ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / quantity / description
        Previous value: -"Quantity"New value: +"JSON request body field — the quantity for this Change Events operation"
      • changedInput schema / properties / uom / description
        Previous value: -"Unit of Measure"New value: +"JSON request body field — unit of Measure"
      • changedInput schema / properties / wbs_code_id / description
        Previous value: -"ID of the associated WBS Code"New value: +"JSON request body field — iD of the associated WBS Code"
    • Removedupdate_change_event_v1_1
    • Changedupdate_change_order_package4 fields changed
      • changedInput schema / properties / change_order / description
        Previous value: -"change_order"New value: +"JSON request body field — the change order for this Change Orders operation"
      • changedInput schema / properties / contract_id / description
        Previous value: -"Contract ID"New value: +"JSON request body field — unique identifier of the contract"
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Change Orders resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedupdate_change_order_request4 fields changed
      • changedInput schema / properties / change_order / description
        Previous value: -"change_order"New value: +"JSON request body field — the change order for this Change Orders operation"
      • changedInput schema / properties / contract_id / description
        Previous value: -"Contract ID"New value: +"JSON request body field — unique identifier of the contract"
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Change Orders resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedupdate_checklist5 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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."
      • changedInput schema / properties / id / description
        Previous value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the Inspections resource"
      • changedInput schema / properties / list / description
        Previous value: -"Checklist object"New value: +"JSON request body field — checklist object"
      • changedInput schema / properties / project_id / description
        Previous value: -"The ID of the Project"New value: +"JSON request body field — the ID of the Project"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
    • Changedupdate_checklist_inspection21 fields changed
      • removedInput 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"
        -}
      • removedInput schema / properties / description
        Removed value: -{
        -  "description": "Description of the Inspection",
        -  "type": "string"
        -}
      • removedInput schema / properties / distribution_member_ids
        Removed value: -{
        -  "description": "The IDs of the Distribution Members for the Inspection",
        -  "items": {},
        -  "type": "array"
        -}
      • removedInput schema / properties / due_at
        Removed value: -{
        -  "description": "Timestamp indicating when the Inspection is due.",
        -  "type": "string"
        -}
      • changedInput schema / properties / id / description
        Previous value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the Inspections resource"
      • removedInput schema / properties / inspection_date
        Removed value: -{
        -  "description": "Date of the Inspection",
        -  "type": "string"
        -}
      • removedInput schema / properties / inspection_type_id
        Removed value: -{
        -  "description": "The ID of the Inspection's Type",
        -  "type": "number"
        -}
      • removedInput schema / properties / inspector_ids
        Removed value: -{
        -  "description": "The IDs of the Inspectors performing the Inspection",
        -  "items": {},
        -  "type": "array"
        -}
      • addedInput schema / properties / list
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — the list for this Inspections operation",
        +  "type": "object"
        +}
      • removedInput schema / properties / location_id
        Removed value: -{
        -  "description": "The ID of the Location of the Inspection",
        -  "type": "number"
        -}
      • removedInput schema / properties / name
        Removed value: -{
        -  "description": "The Name of the Inspection",
        -  "type": "string"
        -}
      • removedInput schema / properties / number
        Removed value: -{
        -  "description": "The Number of the Checklist. If no number is passed in, the next available number will be used.",
        -  "type": "number"
        -}
      • removedInput schema / properties / point_of_contact_id
        Removed value: -{
        -  "description": "The ID of the Inspection's Point of Contact",
        -  "type": "number"
        -}
      • removedInput schema / properties / private
        Removed value: -{
        -  "description": "Indicates whether this Inspection is private",
        -  "type": "boolean"
        -}
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • removedInput schema / properties / responsible_contractor_id
        Removed value: -{
        -  "description": "The ID of the Inspection's Responsible Contractor",
        -  "type": "number"
        -}
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • removedInput schema / properties / spec_section_id
        Removed value: -{
        -  "description": "The ID of the Inspection's Specification Section",
        -  "type": "number"
        -}
      • removedInput schema / properties / status
        Removed value: -{
        -  "description": "The Inspection's status",
        -  "enum": [
        -    "open",
        -    "in_review",
        -    "closed"
        -  ],
        -  "type": "string"
        -}
      • removedInput schema / properties / trade_id
        Removed value: -{
        -  "description": "The ID of the Trade involved in the Inspection",
        -  "type": "number"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "id",
        -  "project_id"
        -]New value: +[
        +  "id",
        +  "project_id",
        +  "list"
        +]
    • Removedupdate_checklist_inspection_v1_1
    • Changedupdate_checklist_item6 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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."
      • changedInput schema / properties / id / description
        Previous value: -"Item ID"New value: +"URL path parameter — unique identifier of the Inspections resource"
      • changedInput schema / properties / item / description
        Previous value: -"Item object"New value: +"JSON request body field — item object"
      • changedInput schema / properties / list_id / description
        Previous value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list"
      • changedInput schema / properties / project_id / description
        Previous 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"
      • changedInput schema / properties / section_id / description
        Previous 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"
    • Changedupdate_checklist_section4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Checklist Section ID"New value: +"URL path parameter — checklist Section ID"
      • changedInput schema / properties / list_id / description
        Previous value: -"Checklist ID"New value: +"URL path parameter — unique identifier of the list"
      • changedInput schema / properties / project_id / description
        Previous 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"
      • changedInput schema / properties / section / description
        Previous value: -"Section object"New value: +"JSON request body field — section object"
    • Changedupdate_classification4 fields changed
      • changedInput schema / properties / abbreviation / description
        Previous value: -"The shortened form of classification"New value: +"JSON request body field — the shortened form of classification"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Id of the Classification"New value: +"URL path parameter — id of the Classification"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the classification"New value: +"JSON request body field — name of the classification"
    • Changedupdate_commitment_change_order32 fields changed
      • changedInput schema / properties / attachment_ids / description
        Previous value: -"Existing attachments to preserve on the response"New value: +"JSON request body field — existing attachments to preserve on the response"
      • changedInput schema / properties / batch_id / description
        Previous value: -"Unique identifier for a change order batch."New value: +"JSON request body field — unique identifier for a change order batch."
      • changedInput schema / properties / change_event_attachment_ids / description
        Previous 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."
      • changedInput schema / properties / change_order_change_reason_id / description
        Previous value: -"Unique identifier for the change reason."New value: +"JSON request body field — unique identifier for the change reason."
      • changedInput schema / properties / contract_id / description
        Previous value: -"Unique identifier for the contract."New value: +"JSON request body field — unique identifier for the contract."
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / description / description
        Previous value: -"Description"New value: +"JSON request body field — the description for this Commitments operation"
      • changedInput schema / properties / designated_reviewer_id / description
        Previous 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."
      • changedInput schema / properties / drawing_revision_ids / description
        Previous value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response"
      • changedInput schema / properties / due_date / description
        Previous value: -"Due Date"New value: +"JSON request body field — due date in YYYY-MM-DD format"
      • changedInput schema / properties / enable_ssov / description
        Previous 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."
      • changedInput schema / properties / executed / description
        Previous value: -"Whether or not the Change Order is executed"New value: +"JSON request body field — whether or not the Change Order is executed"
      • changedInput schema / properties / field_change / description
        Previous value: -"Field Change"New value: +"JSON request body field — the field change for this Commitments operation"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Commitment Change Order"New value: +"URL path parameter — iD of the Commitment Change Order"
      • changedInput schema / properties / invoiced_date / description
        Previous value: -"Invoiced Date"New value: +"JSON request body field — the invoiced date in YYYY-MM-DD format"
      • changedInput schema / properties / location_id / description
        Previous value: -"Unique identifier for the location."New value: +"JSON request body field — unique identifier for the location."
      • changedInput schema / properties / number / description
        Previous value: -"Number of the Change Order"New value: +"JSON request body field — number of the Change Order"
      • changedInput schema / properties / paid / description
        Previous 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"
      • changedInput schema / properties / paid_date / description
        Previous value: -"Paid Date"New value: +"JSON request body field — the paid date in YYYY-MM-DD format"
      • changedInput schema / properties / private / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / reason / description
        Previous value: -"Reason for the change order"New value: +"JSON request body field — reason for the change order"
      • changedInput schema / properties / received_from_id / description
        Previous value: -"Unique identifier for the received from entity."New value: +"JSON request body field — unique identifier for the received from entity."
      • changedInput schema / properties / reference / description
        Previous value: -"Reference"New value: +"JSON request body field — the reference for this Commitments operation"
      • changedInput schema / properties / revision / description
        Previous value: -"Revision Number"New value: +"JSON request body field — revision Number"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / schedule_impact_amount / description
        Previous value: -"Schedule impact in days"New value: +"JSON request body field — schedule impact in days"
      • changedInput schema / properties / signature_required / description
        Previous 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"
      • changedInput schema / properties / signed_change_order_received_date / description
        Previous value: -"Signed Change Order Received Date"New value: +"JSON request body field — signed Change Order Received Date"
      • changedInput schema / properties / status / description
        Previous value: -"Status"New value: +"JSON request body field — the status for this Commitments operation"
      • changedInput schema / properties / title / description
        Previous value: -"Title of the Contract"New value: +"JSON request body field — title of the Contract"
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedupdate_commitment_change_order_batch29 fields changed
      • changedInput schema / properties / attachment_ids / description
        Previous value: -"Existing attachments to preserve on the response"New value: +"JSON request body field — existing attachments to preserve on the response"
      • changedInput schema / properties / change_event_attachment_ids / description
        Previous 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."
      • changedInput schema / properties / change_order_ids / description
        Previous 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."
      • changedInput schema / properties / contract_id / description
        Previous value: -"Unique identifier for the contract."New value: +"JSON request body field — unique identifier for the contract."
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / description / description
        Previous value: -"Description"New value: +"JSON request body field — the description for this Commitments operation"
      • changedInput schema / properties / designated_reviewer_id / description
        Previous 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."
      • changedInput schema / properties / drawing_revision_ids / description
        Previous value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response"
      • changedInput schema / properties / due_date / description
        Previous value: -"Due Date"New value: +"JSON request body field — due date in YYYY-MM-DD format"
      • changedInput schema / properties / executed / description
        Previous 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"
      • changedInput schema / properties / file_version_ids / description
        Previous value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response"
      • changedInput schema / properties / form_ids / description
        Previous value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Commitment Change Order Batch"New value: +"URL path parameter — iD of the Commitment Change Order Batch"
      • changedInput schema / properties / image_ids / description
        Previous value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response"
      • changedInput schema / properties / invoiced_date / description
        Previous value: -"Invoiced Date"New value: +"JSON request body field — the invoiced date in YYYY-MM-DD format"
      • changedInput schema / properties / legacy_request_ids / description
        Previous 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."
      • changedInput schema / properties / number / description
        Previous value: -"Number of the Change Order Batch"New value: +"JSON request body field — number of the Change Order Batch"
      • changedInput schema / properties / paid_date / description
        Previous value: -"Paid Date"New value: +"JSON request body field — the paid date in YYYY-MM-DD format"
      • changedInput schema / properties / private / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / revised_substantial_completion_date / description
        Previous value: -"Revised substantial completion date"New value: +"JSON request body field — revised substantial completion date"
      • changedInput schema / properties / revision / description
        Previous value: -"Revision Number"New value: +"JSON request body field — revision Number"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / schedule_impact_amount / description
        Previous value: -"Schedule impact in days"New value: +"JSON request body field — schedule impact in days"
      • changedInput schema / properties / signature_required / description
        Previous 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"
      • changedInput schema / properties / signed_change_order_received_date / description
        Previous value: -"Signed Change Order Batch Received Date"New value: +"JSON request body field — signed Change Order Batch Received Date"
      • changedInput schema / properties / status / description
        Previous value: -"Status"New value: +"JSON request body field — the status for this Commitments operation"
      • changedInput schema / properties / title / description
        Previous value: -"Title of the Change Order Batch"New value: +"JSON request body field — title of the Change Order Batch"
      • changedInput schema / properties / upload_ids / description
        Previous value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
    • Addedupdate_commitment_change_order_line_item
    • Removedupdate_commitment_change_order_line_item_v2_0
    • Addedupdate_commitment_contract
    • Addedupdate_commitment_contract_line_item
    • Removedupdate_commitment_contract_line_item_v2_0
    • Removedupdate_commitment_contract_v2_0
    • Changedupdate_company_action_plan_template_item_assignee4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Assignee ID"New value: +"URL path parameter — unique identifier of the Action Plans resource"
      • changedInput schema / properties / is_holding / description
        Previous 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"
      • changedInput schema / properties / verification_method_id / description
        Previous 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"
    • Changedupdate_company_action_plan_type3 fields changed
      • changedInput schema / properties / active / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Company Action Plan Type ID"New value: +"URL path parameter — company Action Plan Type ID"
    • Changedupdate_company_checklist_section4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Company Checklist Section ID"New value: +"URL path parameter — company Checklist Section ID"
      • changedInput schema / properties / name / description
        Previous value: -"Name"New value: +"JSON request body field — the name for this Inspections operation"
      • changedInput schema / properties / position / description
        Previous value: -"The position of Section"New value: +"JSON request body field — the position of Section"
    • Changedupdate_company_checklist_template4 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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[]..."
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Company Checklist Template ID"New value: +"URL path parameter — company Checklist Template ID"
      • changedInput schema / properties / list_template / description
        Previous value: -"Checklist Template object"New value: +"JSON request body field — checklist Template object"
    • Changedupdate_company_currency_configuration4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / currency_display / description
        Previous value: -"Currency Display Options"New value: +"JSON request body field — currency Display Options"
      • changedInput schema / properties / currency_iso_code / description
        Previous value: -"Currency ISO Code"New value: +"JSON request body field — the currency iso code for this Currency Configurations operation"
      • changedInput schema / properties / multicurrency_enabled / description
        Previous value: -"Whether multicurrency is enabled for the company"New value: +"JSON request body field — whether multicurrency is enabled for the company"
    • Changedupdate_company_exchange_rates2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / exchange_rates / description
        Previous value: -"Company exchange rates"New value: +"JSON request body field — company exchange rates"
    • Changedupdate_company_file11 fields changed
      • changedInput schema / properties / checked_out_until / description
        Previous 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\""
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / data / description
        Previous 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..."
      • changedInput schema / properties / description / description
        Previous value: -"A description of the file"New value: +"JSON request body field — a description of the file"
      • changedInput schema / properties / explicit_permissions / description
        Previous value: -"Set file to private (true/false)"New value: +"JSON request body field — set file to private (true/false)"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the File"New value: +"URL path parameter — unique identifier of the Documents resource"
      • changedInput schema / properties / is_tracked / description
        Previous 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)"
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the file"New value: +"JSON request body field — the Name of the file"
      • changedInput schema / properties / parent_id / description
        Previous 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"
      • changedInput schema / properties / upload_uuid / description
        Previous 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..."
    • Changedupdate_company_folder7 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / explicit_permissions / description
        Previous value: -"Set folder to private (true/false)"New value: +"JSON request body field — set folder to private (true/false)"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Folder"New value: +"URL path parameter — unique identifier of the Documents resource"
      • changedInput schema / properties / is_tracked / description
        Previous 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)"
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the folder"New value: +"JSON request body field — the Name of the folder"
      • changedInput schema / properties / parent_id / description
        Previous 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."
    • Changedupdate_company_form_template5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / description / description
        Previous value: -"The Description of the Form Template"New value: +"JSON request body field — the Description of the Form Template"
      • changedInput schema / properties / fillable_pdf / description
        Previous 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."
      • changedInput schema / properties / id / description
        Previous value: -"Company Form Template ID"New value: +"URL path parameter — company Form Template ID"
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Form Template"New value: +"JSON request body field — the Name of the Form Template"
    • Changedupdate_company_inspection_template_item6 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Company Inspection Template Item ID"New value: +"URL path parameter — company Inspection Template Item ID"
      • changedInput schema / properties / inspection_template_id / description
        Previous value: -"The ID of the Company Inspection Template"New value: +"URL path parameter — the ID of the Company Inspection Template"
      • changedInput schema / properties / name / description
        Previous value: -"Name"New value: +"JSON request body field — the name for this Inspections operation"
      • changedInput schema / properties / response_set_id / description
        Previous value: -"Response Set ID"New value: +"JSON request body field — unique identifier of the response set"
      • changedInput schema / properties / type / description
        Previous value: -"Item type"New value: +"JSON request body field — item type"
    • Changedupdate_company_insurance19 fields changed
      • changedInput schema / properties / additional_insured / description
        Previous value: -"Additional Individuals and/or Companies Insured"New value: +"JSON request body field — additional Individuals and/or Companies Insured"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / division_template / description
        Previous value: -"Division Template"New value: +"JSON request body field — the division template for this Directory operation"
      • changedInput schema / properties / effective_date / description
        Previous value: -"Effective date"New value: +"JSON request body field — the effective date in YYYY-MM-DD format"
      • changedInput schema / properties / enable_expired_insurance_notifications / description
        Previous value: -"Enable/Disable expired insurance notifications"New value: +"JSON request body field — enable/Disable expired insurance notifications"
      • changedInput schema / properties / exempt / description
        Previous value: -"Exempt status"New value: +"JSON request body field — exempt status"
      • changedInput schema / properties / expiration_date / description
        Previous value: -"Expiration date"New value: +"JSON request body field — the expiration date in YYYY-MM-DD format"
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / info_received / description
        Previous value: -"Information received (or not)"New value: +"JSON request body field — information received (or not)"
      • changedInput schema / properties / insurance_sets / description
        Previous value: -"Insurance Sets"New value: +"JSON request body field — the insurance sets for this Directory operation"
      • changedInput schema / properties / insurance_type / description
        Previous value: -"Insurance type"New value: +"JSON request body field — the insurance type for this Directory operation"
      • changedInput schema / properties / limit / description
        Previous value: -"Limit"New value: +"JSON request body field — the limit for this Directory operation"
      • changedInput schema / properties / name / description
        Previous value: -"Provider name"New value: +"JSON request body field — provider name"
      • changedInput schema / properties / notes / description
        Previous value: -"Notes"New value: +"JSON request body field — the notes for this Directory operation"
      • changedInput schema / properties / origin_data / description
        Previous value: -"Origin data"New value: +"JSON request body field — the origin data for this Directory operation"
      • changedInput schema / properties / origin_id / description
        Previous value: -"Origin ID"New value: +"JSON request body field — unique identifier of the origin"
      • changedInput schema / properties / policy_number / description
        Previous value: -"Policy number"New value: +"JSON request body field — the policy number for this Directory operation"
      • changedInput schema / properties / status / description
        Previous value: -"Status"New value: +"JSON request body field — the status for this Directory operation"
      • changedInput schema / properties / vendor_id / description
        Previous value: -"Vendor ID"New value: +"JSON request body field — unique identifier of the vendor"
    • Changedupdate_company_office3 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the office"New value: +"URL path parameter — unique identifier of the Company Settings resource"
      • changedInput schema / properties / office / description
        Previous value: -"Office object"New value: +"JSON request body field — office object"
    • Changedupdate_company_patterns_segment_order2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / updated_order / description
        Previous value: -"New position for each segment in the pattern"New value: +"JSON request body field — new position for each segment in the pattern"
    • Changedupdate_company_person11 fields changed
      • changedInput schema / properties / active / description
        Previous value: -"The active status of the Company Person"New value: +"JSON request body field — the active status of the Company Person"
      • changedInput schema / properties / company_id / description
        Previous value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / employee_id / description
        Previous value: -"The Employee ID of the Company Person"New value: +"JSON request body field — the Employee ID of the Company Person"
      • changedInput schema / properties / first_name / description
        Previous value: -"The First Name of the Company Person"New value: +"JSON request body field — the First Name of the Company Person"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the person"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / is_employee / description
        Previous value: -"The Employee status of the Company Person"New value: +"JSON request body field — the Employee status of the Company Person"
      • changedInput schema / properties / job_title / description
        Previous value: -"The Job Title of the Company Person"New value: +"JSON request body field — the Job Title of the Company Person"
      • changedInput schema / properties / last_name / description
        Previous value: -"The Last Name of the Company Person"New value: +"JSON request body field — the Last Name of the Company Person"
      • changedInput schema / properties / origin_id / description
        Previous value: -"The Origin ID of the Company User"New value: +"JSON request body field — the Origin ID of the Company User"
      • changedInput schema / properties / view / description
        Previous 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."
      • changedInput schema / properties / work_classification_id / description
        Previous 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."
    • Changedupdate_company_segment_item7 fields changed
      • changedInput schema / properties / code / description
        Previous value: -"Segment Item Code"New value: +"JSON request body field — segment Item Code"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Segment Item ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource"
      • changedInput schema / properties / name / description
        Previous value: -"Segment Item Name"New value: +"JSON request body field — segment Item Name"
      • changedInput schema / properties / segment_id / description
        Previous value: -"Segment ID"New value: +"URL path parameter — unique identifier of the segment"
      • changedInput schema / properties / standard_cost_code_list_id / description
        Previous 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)"
      • changedInput schema / properties / status / description
        Previous value: -"Segment Item Status"New value: +"JSON request body field — segment Item Status"
    • Changedupdate_company_tag10 fields changed
      • changedInput schema / properties / abbreviation / description
        Previous 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."
      • changedInput schema / properties / categories / description
        Previous 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."
      • changedInput schema / properties / color / description
        Previous 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."
      • changedInput schema / properties / company_id / description
        Previous 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."
      • changedInput schema / properties / expr_days_warning / description
        Previous 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."
      • changedInput schema / properties / globally_accessible / description
        Previous 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."
      • changedInput schema / properties / group_ids / description
        Previous 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."
      • changedInput schema / properties / name / description
        Previous value: -"The Tag's name."New value: +"JSON request body field — the Tag's name."
      • changedInput schema / properties / require_expr_date / description
        Previous 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."
      • changedInput schema / properties / tag_id / description
        Previous value: -"Unique identifier for the tag."New value: +"URL path parameter — unique identifier for the tag."
    • Changedupdate_company_upload3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / segments / description
        Previous value: -"Upload segments"New value: +"JSON request body field — upload segments"
      • changedInput schema / properties / uuid / description
        Previous value: -"Upload UUID"New value: +"URL path parameter — upload UUID"
    • Removedupdate_company_upload_v1_1
    • Changedupdate_company_user30 fields changed
      • changedInput schema / properties / add_to_new_projects / description
        Previous 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"
      • changedInput schema / properties / address / description
        Previous value: -"The Address of the Company User"New value: +"JSON request body field — the Address of the Company User"
      • changedInput schema / properties / avatar / description
        Previous 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."
      • changedInput schema / properties / business_phone / description
        Previous value: -"The Business Phone of the Company User"New value: +"JSON request body field — the Business Phone of the Company User"
      • changedInput schema / properties / business_phone_extension / description
        Previous value: -"The Business Phone Extension of the Company User"New value: +"JSON request body field — the Business Phone Extension of the Company User"
      • changedInput schema / properties / city / description
        Previous value: -"The City of the Company User"New value: +"JSON request body field — the City of the Company User"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / company_permission_template_id / description
        Previous 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"
      • changedInput schema / properties / country_code / description
        Previous 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)"
      • changedInput schema / properties / default_permission_template_id / description
        Previous 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"
      • changedInput schema / properties / email_address / description
        Previous 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"
      • changedInput schema / properties / email_signature / description
        Previous value: -"The Email Signature of the Company User"New value: +"JSON request body field — the Email Signature of the Company User"
      • changedInput schema / properties / employee_id / description
        Previous 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`"
      • changedInput schema / properties / fax_number / description
        Previous value: -"The Fax Number of the Company User"New value: +"JSON request body field — the Fax Number of the Company User"
      • changedInput schema / properties / first_name / description
        Previous value: -"The First Name of the Company User"New value: +"JSON request body field — the First Name of the Company User"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the user"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / initials / description
        Previous value: -"The Initials of the Company User"New value: +"JSON request body field — the Initials of the Company User"
      • changedInput schema / properties / is_active / description
        Previous value: -"The Active status of the Company User"New value: +"JSON request body field — the Active status of the Company User"
      • changedInput schema / properties / is_employee / description
        Previous value: -"The Employee status of the Company User"New value: +"JSON request body field — the Employee status of the Company User"
      • changedInput schema / properties / job_title / description
        Previous value: -"The Job Title of the Company User"New value: +"JSON request body field — the Job Title of the Company User"
      • changedInput schema / properties / last_name / description
        Previous value: -"The Last Name of the Company User"New value: +"JSON request body field — the Last Name of the Company User"
      • changedInput schema / properties / mobile_phone / description
        Previous value: -"The Mobile Phone of the Company User"New value: +"JSON request body field — the Mobile Phone of the Company User"
      • changedInput schema / properties / notes / description
        Previous 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"
      • changedInput schema / properties / origin_data / description
        Previous value: -"The Origin Data of the Company User"New value: +"JSON request body field — the Origin Data of the Company User"
      • changedInput schema / properties / origin_id / description
        Previous value: -"The Origin ID of the Company User"New value: +"JSON request body field — the Origin ID of the Company User"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / state_code / description
        Previous 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)"
      • changedInput schema / properties / vendor_id / description
        Previous 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"
      • changedInput schema / properties / work_classification_id / description
        Previous 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"
      • changedInput schema / properties / zip / description
        Previous value: -"The Zip code of the Company User"New value: +"JSON request body field — the Zip code of the Company User"
    • Removedupdate_company_user_v1_1
    • Removedupdate_company_user_v1_2
    • Removedupdate_company_user_v1_3
    • Changedupdate_company_vendor5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the vendor"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / vendor / description
        Previous value: -"vendor"New value: +"JSON request body field — the vendor for this Directory operation"
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedupdate_company_vendor_business_register4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"ID of the Company"New value: +"Query string parameter — unique identifier for the Procore company"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Company Vendor"New value: +"URL path parameter — iD of the Company Vendor"
      • changedInput schema / properties / identifier / description
        Previous value: -"Entity ID. This field ignores spaces and dashes."New value: +"JSON request body field — entity ID. This field ignores spaces and dashes."
      • changedInput schema / properties / type / description
        Previous value: -"Entity Type"New value: +"JSON request body field — entity Type"
    • Changedupdate_company_vendor_insurance19 fields changed
      • changedInput schema / properties / additional_insured / description
        Previous value: -"Additional Individuals and/or Companies Insured"New value: +"JSON request body field — additional Individuals and/or Companies Insured"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / division_template / description
        Previous value: -"Division Template"New value: +"JSON request body field — the division template for this Directory operation"
      • changedInput schema / properties / effective_date / description
        Previous value: -"Effective date"New value: +"JSON request body field — the effective date in YYYY-MM-DD format"
      • changedInput schema / properties / enable_expired_insurance_notifications / description
        Previous value: -"Enable/Disable expired insurance notifications"New value: +"JSON request body field — enable/Disable expired insurance notifications"
      • changedInput schema / properties / exempt / description
        Previous value: -"Exempt status"New value: +"JSON request body field — exempt status"
      • changedInput schema / properties / expiration_date / description
        Previous value: -"Expiration date"New value: +"JSON request body field — the expiration date in YYYY-MM-DD format"
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / info_received / description
        Previous value: -"Information received (or not)"New value: +"JSON request body field — information received (or not)"
      • changedInput schema / properties / insurance_sets / description
        Previous value: -"Insurance Sets"New value: +"JSON request body field — the insurance sets for this Directory operation"
      • changedInput schema / properties / insurance_type / description
        Previous value: -"Insurance type"New value: +"JSON request body field — the insurance type for this Directory operation"
      • changedInput schema / properties / limit / description
        Previous value: -"Limit"New value: +"JSON request body field — the limit for this Directory operation"
      • changedInput schema / properties / name / description
        Previous value: -"Provider name"New value: +"JSON request body field — provider name"
      • changedInput schema / properties / notes / description
        Previous value: -"Notes"New value: +"JSON request body field — the notes for this Directory operation"
      • changedInput schema / properties / origin_data / description
        Previous value: -"Origin data"New value: +"JSON request body field — the origin data for this Directory operation"
      • changedInput schema / properties / origin_id / description
        Previous value: -"Origin ID"New value: +"JSON request body field — unique identifier of the origin"
      • changedInput schema / properties / policy_number / description
        Previous value: -"Policy number"New value: +"JSON request body field — the policy number for this Directory operation"
      • changedInput schema / properties / status / description
        Previous value: -"Status"New value: +"JSON request body field — the status for this Directory operation"
      • changedInput schema / properties / vendor_id / description
        Previous value: -"Vendor ID"New value: +"URL path parameter — unique identifier of the vendor"
    • Changedupdate_company_wbs_segment6 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource"
      • changedInput schema / properties / name / description
        Previous value: -"Segment Name"New value: +"JSON request body field — segment Name"
      • changedInput schema / properties / project_can_delete_origin_company / description
        Previous 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."
      • changedInput schema / properties / project_can_modify_origin_project / description
        Previous 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."
      • changedInput schema / properties / segment_item_list_id / description
        Previous value: -"Segment Item List ID"New value: +"Query string parameter — segment Item List ID"
    • Addedupdate_company_webhooks_hook
    • Removedupdate_company_webhooks_hook_v2_0
    • Changedupdate_companys_logo2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / type / description
        Previous value: -"Type of requesting entity"New value: +"Query string parameter — type of requesting entity"
    • Changedupdate_concierge_parameters3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / estimated_initial_projects / description
        Previous value: -"Estimated number of projects in first three months"New value: +"JSON request body field — estimated number of projects in first three months"
      • changedInput schema / properties / estimated_initial_users / description
        Previous 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"
    • Changedupdate_configurable_field_set8 fields changed
      • changedInput schema / properties / category / description
        Previous 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 ..."
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / fields / description
        Previous 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."
      • changedInput schema / properties / id / description
        Previous value: -"Configurable Field Set ID"New value: +"URL path parameter — configurable Field Set ID"
      • changedInput schema / properties / include_all_projects / description
        Previous value: -"Whether or not all projects selected"New value: +"JSON request body field — whether or not all projects selected"
      • changedInput schema / properties / name / description
        Previous value: -"Name"New value: +"JSON request body field — the name for this Custom - Configurable Tools operation"
      • changedInput schema / properties / observations_category_id / description
        Previous 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 ..."
      • changedInput schema / properties / project_ids / description
        Previous value: -"project_ids"New value: +"JSON request body field — array of project identifiers"
    • Changedupdate_context5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / context_id / description
        Previous value: -"context_id"New value: +"URL path parameter — unique identifier of the context"
      • changedInput schema / properties / name / description
        Previous value: -"name"New value: +"JSON request body field — the name for this Document Markup operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
      • changedInput schema / properties / settings / description
        Previous value: -"settings"New value: +"JSON request body field — the settings for this Document Markup operation"
    • Changedupdate_contract_payment5 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / contract_id / description
        Previous value: -"Contract ID"New value: +"JSON request body field — unique identifier of the contract"
      • changedInput schema / properties / contract_payment / description
        Previous value: -"Contract Payment object"New value: +"JSON request body field — contract Payment object"
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedupdate_contracts_invoice_configuration4 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"ID of the Contract"New value: +"URL path parameter — unique identifier of the contract"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / separate_billing_for_stored_materials / description
        Previous 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"
      • changedInput schema / properties / stored_materials_billing_method / description
        Previous value: -"Billing method for stored materials"New value: +"JSON request body field — billing method for stored materials"
    • Changedupdate_contributing_behavior4 fields changed
      • changedInput schema / properties / active / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Contributing Behavior ID"New value: +"URL path parameter — contributing Behavior ID"
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Contributing Behavior"New value: +"JSON request body field — the Name of the Contributing Behavior"
    • Changedupdate_contributing_condition4 fields changed
      • changedInput schema / properties / active / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Contributing Condition ID"New value: +"URL path parameter — contributing Condition ID"
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Contributing Condition"New value: +"JSON request body field — the Name of the Contributing Condition"
    • Changedupdate_coordination_issue3 fields changed
      • changedInput schema / properties / coordination_issue / description
        Previous value: -"Coordination Issue Item object"New value: +"JSON request body field — coordination Issue Item object"
      • changedInput schema / properties / id / description
        Previous value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Addedupdate_coordination_issue_workflow_issue
    • Removedupdate_coordination_issue_workflow_issue_v2_0
    • Changedupdate_cost_code4 fields changed
      • changedInput schema / properties / cost_code / description
        Previous value: -"Cost Code object"New value: +"JSON request body field — cost Code object"
      • changedInput schema / properties / id / description
        Previous value: -"Unique identifier for the Cost Code"New value: +"URL path parameter — unique identifier for the Cost Code"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / sub_job_id / description
        Previous value: -"Unique identifier for the Sub Job"New value: +"JSON request body field — unique identifier for the Sub Job"
    • Addedupdate_cost_item
    • Removedupdate_cost_item_v2_0
    • Addedupdate_current_project_company
    • Removedupdate_current_project_company_v2_0
    • Removedupdate_current_project_company_v2_1
    • Addedupdate_current_project_project
    • Removedupdate_current_project_project_v2_0
    • Removedupdate_current_project_project_v2_1
    • Changedupdate_custom_field10 fields changed
      • changedInput schema / properties / can_filter / description
        Previous 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."
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / description / description
        Previous 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."
      • changedInput schema / properties / field_id / description
        Previous value: -"UUID of the Custom Field."New value: +"URL path parameter — uUID of the Custom Field."
      • changedInput schema / properties / integration_only / description
        Previous value: -"If true, only integrations can update this field."New value: +"JSON request body field — if true, only integrations can update this field."
      • changedInput schema / properties / name / description
        Previous value: -"The updated name of the Custom Field."New value: +"JSON request body field — the updated name of the Custom Field."
      • changedInput schema / properties / on_people / description
        Previous value: -"If true, the field is available on People."New value: +"JSON request body field — if true, the field is available on People."
      • changedInput schema / properties / on_projects / description
        Previous value: -"If true, the field is available on Projects."New value: +"JSON request body field — if true, the field is available on Projects."
      • changedInput schema / properties / sort_by / description
        Previous 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"
      • changedInput schema / properties / values / description
        Previous 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"
    • Changedupdate_daily_construction_report_log5 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / daily_construction_report_log / description
        Previous value: -"daily_construction_report_log"New value: +"JSON request body field — daily_construction_report_log"
      • changedInput schema / properties / id / description
        Previous value: -"Daily Construction Report Log ID"New value: +"URL path parameter — daily Construction Report Log ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
    • Changedupdate_delay_log5 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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[]` ..."
      • changedInput schema / properties / delay_log / description
        Previous value: -"delay_log"New value: +"JSON request body field — the delay log for this Daily Log operation"
      • changedInput schema / properties / id / description
        Previous value: -"Delay log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
    • Changedupdate_deleted_equipment_serial_number3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Id of the Equipment"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
      • changedInput schema / properties / serial_number / description
        Previous value: -"Serial number of the equipment"New value: +"JSON request body field — serial number of the equipment"
    • Changedupdate_delivery_log4 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / delivery_log / description
        Previous value: -"delivery_log"New value: +"JSON request body field — the delivery log for this Daily Log operation"
      • changedInput schema / properties / id / description
        Previous value: -"Delivery Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedupdate_department3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company"
      • changedInput schema / properties / department / description
        Previous value: -"department"New value: +"JSON request body field — the department for this Directory operation"
      • changedInput schema / properties / id / description
        Previous value: -"Department ID"New value: +"URL path parameter — unique identifier of the Directory resource"
    • Changedupdate_direct_cost_item5 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • addedInput schema / properties / direct_cost
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "JSON request body field — direct Cost Item object",
        +  "type": "object"
        +}
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Direct Costs resource"
      • removedInput schema / properties / item
        Removed value: -{
        -  "additionalProperties": {},
        -  "description": "Direct Cost Item object",
        -  "type": "object"
        -}
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedupdate_direct_cost_item_v1_1
    • Changedupdate_direct_cost_line_item15 fields changed
      • changedInput schema / properties / amount / description
        Previous value: -"Amount"New value: +"JSON request body field — the amount for this Direct Costs operation"
      • changedInput schema / properties / cost_code_id / description
        Previous value: -"Cost Code ID"New value: +"JSON request body field — unique identifier of the cost code"
      • changedInput schema / properties / description / description
        Previous value: -"Description"New value: +"JSON request body field — the description for this Direct Costs operation"
      • changedInput schema / properties / direct_cost_id / description
        Previous value: -"Direct Cost ID"New value: +"JSON request body field — unique identifier of the direct cost"
      • changedInput schema / properties / extended_type / description
        Previous 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"
      • changedInput schema / properties / id / description
        Previous value: -"Direct Cost Line Item ID"New value: +"URL path parameter — direct Cost Line Item ID"
      • changedInput schema / properties / line_item_type_id / description
        Previous value: -"Line Item Type ID"New value: +"JSON request body field — unique identifier of the line item type"
      • changedInput schema / properties / origin_data / description
        Previous value: -"Origin Data"New value: +"JSON request body field — the origin data for this Direct Costs operation"
      • changedInput schema / properties / origin_id / description
        Previous value: -"Origin ID"New value: +"JSON request body field — unique identifier of the origin"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / quantity / description
        Previous value: -"Quantity of described item"New value: +"JSON request body field — quantity of described item"
      • changedInput schema / properties / tax_code_id / description
        Previous value: -"Tax Code ID"New value: +"JSON request body field — unique identifier of the tax code"
      • changedInput schema / properties / unit_cost / description
        Previous value: -"Unit cost of described item"New value: +"JSON request body field — unit cost of described item"
      • changedInput schema / properties / uom / description
        Previous value: -"Unit of measure of the described item"New value: +"JSON request body field — unit of measure of the described item"
      • changedInput schema / properties / wbs_code_id / description
        Previous value: -"WBS Code ID"New value: +"JSON request body field — unique identifier of the wbs code"
    • Changedupdate_drawing7 fields changed
      • changedInput schema / properties / drawing_area_id / description
        Previous value: -"ID of the drawing area"New value: +"URL path parameter — iD of the drawing area"
      • changedInput schema / properties / drawing_discipline / description
        Previous value: -"Drawing discipline"New value: +"JSON request body field — the drawing discipline for this Drawings operation"
      • changedInput schema / properties / id / description
        Previous value: -"Drawing ID"New value: +"URL path parameter — unique identifier of the Drawings resource"
      • changedInput schema / properties / number / description
        Previous value: -"Drawing number"New value: +"JSON request body field — drawing number"
      • changedInput schema / properties / obsolete / description
        Previous value: -"Obsolete status"New value: +"JSON request body field — obsolete status"
      • changedInput schema / properties / ordered_revision_ids / description
        Previous 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"
      • changedInput schema / properties / title / description
        Previous value: -"Drawing title"New value: +"JSON request body field — drawing title"
    • Changedupdate_drawing_discipline_project3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the discipline to update"New value: +"URL path parameter — iD of the discipline to update"
      • changedInput schema / properties / name / description
        Previous value: -"New name for the Drawing Discipline"New value: +"JSON request body field — new name for the Drawing Discipline"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedupdate_drawing_discipline_project_v1_03 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the discipline to update"New value: +"URL path parameter — iD of the discipline to update"
      • changedInput schema / properties / name / description
        Previous value: -"New name for the Drawing Discipline"New value: +"Query string parameter — new name for the Drawing Discipline"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedupdate_drawing_discipline_v1_1
    • Changedupdate_drawing_revision9 fields changed
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / drawing_date / description
        Previous value: -"Drawing date"New value: +"JSON request body field — the drawing date in YYYY-MM-DD format"
      • changedInput schema / properties / drawing_id / description
        Previous value: -"Drawing ID"New value: +"JSON request body field — unique identifier of the drawing"
      • changedInput schema / properties / drawing_set_id / description
        Previous value: -"Drawing Set ID"New value: +"JSON request body field — unique identifier of the drawing set"
      • changedInput schema / properties / floorplan / description
        Previous value: -"Revision floorplan status"New value: +"JSON request body field — revision floorplan status"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Drawing Revision"New value: +"URL path parameter — iD of the Drawing Revision"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / received_date / description
        Previous value: -"Received date"New value: +"JSON request body field — the received date in YYYY-MM-DD format"
      • changedInput schema / properties / revision_number / description
        Previous value: -"Revision number"New value: +"JSON request body field — the revision number for this Drawings operation"
    • Changedupdate_drawing_set4 fields changed
      • changedInput schema / properties / date / description
        Previous value: -"Drawing Set date"New value: +"JSON request body field — drawing Set date"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the drawing set"New value: +"URL path parameter — iD of the drawing set"
      • changedInput schema / properties / name / description
        Previous value: -"Drawing Set name"New value: +"JSON request body field — drawing Set name"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedupdate_drawing_v1_1
    • Changedupdate_dumpster_log4 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / dumpster_log / description
        Previous value: -"dumpster_log"New value: +"JSON request body field — the dumpster log for this Daily Log operation"
      • changedInput schema / properties / id / description
        Previous value: -"Dumpster Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedupdate_early_pay_program4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / early_pay_program_id / description
        Previous value: -"UUID of the early pay program"New value: +"URL path parameter — uUID of the early pay program"
      • changedInput schema / properties / messageToVendor / description
        Previous value: -"Custom message to vendor"New value: +"JSON request body field — custom message to vendor"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the early pay program"New value: +"JSON request body field — name of the early pay program"
    • Changedupdate_environmental12 fields changed
      • changedInput schema / properties / affected_company_id / description
        Previous value: -"The ID of the Affected Company"New value: +"JSON request body field — the ID of the Affected Company"
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / description / description
        Previous value: -"Description of event in Rich Text format"New value: +"JSON request body field — description of event in Rich Text format"
      • changedInput schema / properties / environmental_type_id / description
        Previous value: -"The ID of the Environmental Type"New value: +"JSON request body field — the ID of the Environmental Type"
      • changedInput schema / properties / estimated_cost_impact / description
        Previous value: -"Estimated cost impact of the record"New value: +"JSON request body field — estimated cost impact of the record"
      • changedInput schema / properties / id / description
        Previous value: -"Environmental ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / managed_equipment_id / description
        Previous value: -"The ID of the Managed Equipment"New value: +"JSON request body field — the ID of the Managed Equipment"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / quantity_unit_of_measure / description
        Previous 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)"
      • changedInput schema / properties / quantity_value / description
        Previous value: -"Numeric portion of the \"quantity\" field"New value: +"JSON request body field — numeric portion of the \"quantity\" field"
      • changedInput schema / properties / work_activity_id / description
        Previous value: -"The ID of the Work Activity"New value: +"JSON request body field — the ID of the Work Activity"
    • Changedupdate_equipment16 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / company_visible / description
        Previous value: -"Company visible"New value: +"JSON request body field — the company visible for this Field Productivity operation"
      • changedInput schema / properties / current_project_id / description
        Previous 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"
      • changedInput schema / properties / description / description
        Previous value: -"description of the equipment"New value: +"JSON request body field — description of the equipment"
      • changedInput schema / properties / id / description
        Previous value: -"Id of the Equipment"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
      • changedInput schema / properties / identification_number / description
        Previous value: -"Identification number of the equipment"New value: +"JSON request body field — identification number of the equipment"
      • changedInput schema / properties / managed_equipment_category_id / description
        Previous value: -"ID of the equipment category"New value: +"JSON request body field — iD of the equipment category"
      • changedInput schema / properties / managed_equipment_make_id / description
        Previous value: -"ID of the equipment make"New value: +"JSON request body field — iD of the equipment make"
      • changedInput schema / properties / managed_equipment_model_id / description
        Previous value: -"ID of the equipment model"New value: +"JSON request body field — iD of the equipment model"
      • changedInput schema / properties / managed_equipment_type_id / description
        Previous value: -"ID of the equipment type"New value: +"JSON request body field — iD of the equipment type"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the equipment"New value: +"JSON request body field — name of the equipment"
      • changedInput schema / properties / ownership / description
        Previous value: -"The type of ownership"New value: +"JSON request body field — the type of ownership"
      • changedInput schema / properties / serial_number / description
        Previous value: -"Serial number of the equipment"New value: +"JSON request body field — serial number of the equipment"
      • changedInput schema / properties / status / description
        Previous value: -"Status"New value: +"JSON request body field — the status for this Field Productivity operation"
      • changedInput schema / properties / upload_uuids / description
        Previous value: -"Array of upload uuids"New value: +"JSON request body field — array of upload uuids"
      • changedInput schema / properties / year / description
        Previous value: -"Year the equipment was manufactured in"New value: +"JSON request body field — year the equipment was manufactured in"
    • Addedupdate_equipment_attachment_company
    • Removedupdate_equipment_attachment_company_v2_0
    • Addedupdate_equipment_attachment_project
    • Removedupdate_equipment_attachment_project_v2_0
    • Changedupdate_equipment_category4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Equipment Category"New value: +"URL path parameter — iD of the Equipment Category"
      • changedInput schema / properties / is_active / description
        Previous value: -"If the category is active"New value: +"JSON request body field — if the category is active"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the category"New value: +"JSON request body field — name of the category"
    • Addedupdate_equipment_category_company
    • Removedupdate_equipment_category_company_v2_0
    • Changedupdate_equipment_company_v2_01 field changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
    • Changedupdate_equipment_company_v2_121 fields changed
      • changedInput schema / properties / assignee_ids / description
        Previous value: -"The people id of the equipment."New value: +"JSON request body field — the people id of the equipment."
      • changedInput schema / properties / category_id / description
        Previous value: -"The category of the equipment."New value: +"JSON request body field — the category of the equipment."
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / equipment_id / description
        Previous value: -"equipment_id"New value: +"JSON request body field — unique identifier of the equipment"
      • changedInput schema / properties / equipment_name / description
        Previous value: -"equipment_name"New value: +"JSON request body field — the equipment name for this Equipment operation"
      • changedInput schema / properties / group_ids / description
        Previous 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"
      • changedInput schema / properties / identification_number / description
        Previous value: -"The identification number of the equipment."New value: +"JSON request body field — the identification number of the equipment."
      • changedInput schema / properties / make_id / description
        Previous value: -"The make of the equipment."New value: +"JSON request body field — the make of the equipment."
      • changedInput schema / properties / model_id / description
        Previous value: -"The model of the equipment."New value: +"JSON request body field — the model of the equipment."
      • changedInput schema / properties / name / description
        Previous value: -"The name of the equipment."New value: +"JSON request body field — the name of the equipment."
      • changedInput schema / properties / notes / description
        Previous value: -"notes"New value: +"JSON request body field — the notes for this Equipment operation"
      • changedInput schema / properties / ownership / description
        Previous value: -"ownership"New value: +"JSON request body field — the ownership for this Equipment operation"
      • changedInput schema / properties / profile_photo / description
        Previous value: -"profile_photo"New value: +"JSON request body field — the profile photo for this Equipment operation"
      • changedInput schema / properties / rate_per_hour / description
        Previous value: -"rate_per_hour"New value: +"JSON request body field — the rate per hour for this Equipment operation"
      • changedInput schema / properties / rental_end_date / description
        Previous value: -"The end date of the rental."New value: +"JSON request body field — the end date of the rental."
      • changedInput schema / properties / rental_start_date / description
        Previous value: -"The start date of the rental."New value: +"JSON request body field — the start date of the rental."
      • changedInput schema / properties / serial_number / description
        Previous value: -"The serial number of the equipment."New value: +"JSON request body field — the serial number of the equipment."
      • changedInput schema / properties / status_id / description
        Previous value: -"The status of the equipment."New value: +"JSON request body field — the status of the equipment."
      • changedInput schema / properties / type_id / description
        Previous value: -"The type of the equipment."New value: +"JSON request body field — the type of the equipment."
      • changedInput schema / properties / vendor_id / description
        Previous value: -"The vendor id of the equipment."New value: +"JSON request body field — the vendor id of the equipment."
      • changedInput schema / properties / year / description
        Previous value: -"The year of the equipment."New value: +"JSON request body field — the year of the equipment."
    • Changedupdate_equipment_log5 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / equipment_log / description
        Previous value: -"equipment_log"New value: +"JSON request body field — the equipment log for this Daily Log operation"
      • changedInput schema / properties / id / description
        Previous value: -"Equipment Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
    • Changedupdate_equipment_maintenance_log6 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the company to get the makes for"New value: +"URL path parameter — iD of the company to get the makes for"
      • changedInput schema / properties / last_service_date / description
        Previous value: -"The Date the equipment was last services"New value: +"JSON request body field — the Date the equipment was last services"
      • changedInput schema / properties / managed_equipment_id / description
        Previous value: -"Equipment Id the maintenance log is associated with"New value: +"JSON request body field — equipment Id the maintenance log is associated with"
      • changedInput schema / properties / next_service_date / description
        Previous value: -"Next service date for the equipment"New value: +"JSON request body field — next service date for the equipment"
      • changedInput schema / properties / upload_ids / description
        Previous 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."
    • Addedupdate_equipment_make_company
    • Removedupdate_equipment_make_company_v2_0
    • Addedupdate_equipment_model_company
    • Removedupdate_equipment_model_company_v2_0
    • Addedupdate_equipment_project_company
    • Addedupdate_equipment_project_company_v2_0
    • Addedupdate_equipment_project_company_v2_1
    • Removedupdate_equipment_project_v2_0
    • Removedupdate_equipment_project_v2_1_company
    • Removedupdate_equipment_project_v2_1_company_v2_1
    • Addedupdate_equipment_status_company
    • Removedupdate_equipment_status_company_v2_0
    • Changedupdate_equipment_timecard_entry_project15 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / crew_id / description
        Previous 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."
      • changedInput schema / properties / date / description
        Previous 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."
      • changedInput schema / properties / equipment_id / description
        Previous 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."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the equipment timecard entry"New value: +"URL path parameter — iD of the equipment timecard entry"
      • changedInput schema / properties / idle_quantity / description
        Previous 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."
      • changedInput schema / properties / location_id / description
        Previous 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."
      • changedInput schema / properties / origin_data / description
        Previous value: -"Value of related external data"New value: +"JSON request body field — value of related external data"
      • changedInput schema / properties / origin_id / description
        Previous value: -"ID of related external data"New value: +"JSON request body field — iD of related external data"
      • changedInput schema / properties / party_id / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / quantity / description
        Previous 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."
      • changedInput schema / properties / timesheet_id / description
        Previous 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."
      • changedInput schema / properties / unit_of_measure / description
        Previous 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'."
      • changedInput schema / properties / wbs_code_id / description
        Previous 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."
    • Addedupdate_equipment_type_company
    • Removedupdate_equipment_type_company_v2_0
    • Changedupdate_existing_or_create_a_new_incident_alert_recipient3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Incident Alert Recipient's User ID"New value: +"URL path parameter — incident Alert Recipient's User ID"
      • changedInput schema / properties / severity_level_id / description
        Previous value: -"Incident Severity Level ID"New value: +"URL path parameter — incident Severity Level ID"
    • Changedupdate_filing_type3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Filing Type ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / severity_level_id / description
        Previous value: -"Incident Severity Level ID"New value: +"JSON request body field — incident Severity Level ID"
    • Changedupdate_form8 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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."
      • changedInput schema / properties / description / description
        Previous value: -"The Description of the Form"New value: +"JSON request body field — the Description of the Form"
      • changedInput schema / properties / fillable_pdf / description
        Previous 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."
      • changedInput schema / properties / id / description
        Previous value: -"Form ID"New value: +"URL path parameter — unique identifier of the Forms resource"
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Form"New value: +"JSON request body field — the Name of the Form"
      • changedInput schema / properties / private / description
        Previous value: -"The Private status of the Form"New value: +"JSON request body field — the Private status of the Form"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / send_emails / description
        Previous 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)"
    • Changedupdate_forward_for_review3 fields changed
      • changedInput schema / properties / forwardee_ids / description
        Previous 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"
      • changedInput schema / properties / id / description
        Previous value: -"RFI ID"New value: +"URL path parameter — unique identifier of the RFI resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Removedupdate_forward_for_review_v1_1
    • Changedupdate_generic_tool7 fields changed
      • changedInput schema / properties / abbreviation / description
        Previous value: -"An abbreviation for the generic tool."New value: +"JSON request body field — an abbreviation for the generic tool."
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / generic_tool_id / description
        Previous value: -"Unique identifier for the Generic Tool."New value: +"URL path parameter — unique identifier for the Generic Tool."
      • changedInput schema / properties / new_project_default / description
        Previous 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."
      • changedInput schema / properties / private_by_default / description
        Previous 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."
      • changedInput schema / properties / send_overdue_notifications / description
        Previous 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."
      • changedInput schema / properties / title / description
        Previous value: -"The title of the generic tool."New value: +"JSON request body field — the title of the generic tool."
    • Changedupdate_generic_tool_item30 fields changed
      • changedInput schema / properties / assignee_ids / description
        Previous 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."
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / cost_code_id / description
        Previous 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."
      • changedInput schema / properties / cost_impact / description
        Previous value: -"The cost impact of the generic tool item."New value: +"JSON request body field — the cost impact of the generic tool item."
      • changedInput schema / properties / cost_impact_value / description
        Previous 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."
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / description / description
        Previous value: -"The description of the generic tool item."New value: +"JSON request body field — the description of the generic tool item."
      • changedInput schema / properties / distribution_member_ids / description
        Previous 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."
      • changedInput schema / properties / document_management_document_revision_ids / description
        Previous value: -"PDM document to attach to the response"New value: +"JSON request body field — pDM document to attach to the response"
      • changedInput schema / properties / drawing_revision_ids / description
        Previous value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response"
      • changedInput schema / properties / due_date / description
        Previous value: -"The due date for the generic tool item."New value: +"JSON request body field — the due date for the generic tool item."
      • changedInput schema / properties / file_version_ids / description
        Previous value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response"
      • changedInput schema / properties / form_ids / description
        Previous value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response"
      • changedInput schema / properties / generic_tool_id / description
        Previous value: -"Unique identifier for the Generic Tool"New value: +"URL path parameter — unique identifier for the Generic Tool"
      • changedInput schema / properties / generic_tool_item_id / description
        Previous value: -"Unique identifier for the Generic Tool Item"New value: +"URL path parameter — unique identifier for the Generic Tool Item"
      • changedInput schema / properties / image_ids / description
        Previous value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response"
      • changedInput schema / properties / location_id / description
        Previous value: -"The location identifier for the generic tool item."New value: +"JSON request body field — the location identifier for the generic tool item."
      • changedInput schema / properties / position / description
        Previous value: -"The position/number of the generic tool item."New value: +"JSON request body field — the position/number of the generic tool item."
      • changedInput schema / properties / private / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / received_from_id / description
        Previous value: -"The unique identifier for the Received From entity."New value: +"JSON request body field — the unique identifier for the Received From entity."
      • changedInput schema / properties / schedule_impact / description
        Previous 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."
      • changedInput schema / properties / schedule_impact_value / description
        Previous 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."
      • changedInput schema / properties / skip_emails / description
        Previous 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."
      • changedInput schema / properties / specification_section_id / description
        Previous 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."
      • changedInput schema / properties / status / description
        Previous value: -"The status of the generic tool item."New value: +"JSON request body field — the status of the generic tool item."
      • changedInput schema / properties / title / description
        Previous value: -"The title of the generic tool item."New value: +"JSON request body field — the title of the generic tool item."
      • changedInput schema / properties / trade_id / description
        Previous value: -"The trade identifier for the generic tool item."New value: +"JSON request body field — the trade identifier for the generic tool item."
      • changedInput schema / properties / upload_ids / description
        Previous value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
      • changedInput schema / properties / view / description
        Previous value: -"If supplied customize the response format"New value: +"Query string parameter — if supplied customize the response format"
    • Changedupdate_generic_tool_item_response5 fields changed
      • changedInput schema / properties / generic_tool_id / description
        Previous value: -"Unique identifier for the generic tool"New value: +"URL path parameter — unique identifier for the generic tool"
      • changedInput schema / properties / generic_tool_item_id / description
        Previous value: -"Unique identifier for the generic tool item"New value: +"URL path parameter — unique identifier for the generic tool item"
      • changedInput schema / properties / id / description
        Previous value: -"Unique identifier for the response"New value: +"URL path parameter — unique identifier for the response"
      • changedInput schema / properties / official / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedupdate_group9 fields changed
      • changedInput schema / properties / color / description
        Previous value: -"color"New value: +"JSON request body field — the color for this Document Markup operation"
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / group_id / description
        Previous value: -"group_id"New value: +"URL path parameter — unique identifier of the group"
      • changedInput schema / properties / layer_id / description
        Previous value: -"layer_id"New value: +"JSON request body field — unique identifier of the layer"
      • changedInput schema / properties / name / description
        Previous value: -"name"New value: +"JSON request body field — the name for this Document Markup operation"
      • changedInput schema / properties / order_index / description
        Previous value: -"order_index"New value: +"JSON request body field — the order index for this Document Markup operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
      • changedInput schema / properties / settings / description
        Previous value: -"settings"New value: +"JSON request body field — the settings for this Document Markup operation"
      • changedInput schema / properties / visibility / description
        Previous value: -"visibility"New value: +"JSON request body field — the visibility for this Document Markup operation"
    • Changedupdate_group_order_rank4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / group_id / description
        Previous value: -"group_id"New value: +"URL path parameter — unique identifier of the group"
      • changedInput schema / properties / order_index / description
        Previous value: -"order_index"New value: +"JSON request body field — the order index for this Document Markup operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
    • Changedupdate_harm_source4 fields changed
      • changedInput schema / properties / active / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Harm Source ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Harm Source"New value: +"JSON request body field — the Name of the Harm Source"
    • Changedupdate_hazard4 fields changed
      • changedInput schema / properties / active / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Hazard ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Hazard"New value: +"JSON request body field — the Name of the Hazard"
    • Changedupdate_image10 fields changed
      • changedInput schema / properties / daily_log_segment_id / description
        Previous value: -"Daily Log Segment ID"New value: +"JSON request body field — daily Log Segment ID"
      • changedInput schema / properties / description / description
        Previous value: -"Image description"New value: +"JSON request body field — image description"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the image"New value: +"URL path parameter — unique identifier of the Photos resource"
      • changedInput schema / properties / image_category_id / description
        Previous value: -"Image Category ID to move the Image to"New value: +"JSON request body field — image Category ID to move the Image to"
      • changedInput schema / properties / location_id / description
        Previous 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`"
      • changedInput schema / properties / log_date / description
        Previous value: -"log_date"New value: +"JSON request body field — the log date in YYYY-MM-DD format"
      • changedInput schema / properties / mt_location / description
        Previous 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."
      • changedInput schema / properties / private / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / trade_ids / description
        Previous 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"
    • Changedupdate_image_category5 fields changed
      • changedInput schema / properties / album_cover_id / description
        Previous 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."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the image category"New value: +"URL path parameter — iD of the image category"
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Image Category"New value: +"JSON request body field — the Name of the Image Category"
      • changedInput schema / properties / private / description
        Previous value: -"The Private status of the Image Category"New value: +"JSON request body field — the Private status of the Image Category"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedupdate_incident29 fields changed
      • changedInput schema / properties / assignee_ids / description
        Previous 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."
      • changedInput schema / properties / contributing_behavior_id / description
        Previous value: -"The ID of a Contributing Behavior"New value: +"JSON request body field — the ID of a Contributing Behavior"
      • changedInput schema / properties / contributing_condition_id / description
        Previous value: -"The ID of a Contributing Condition"New value: +"JSON request body field — the ID of a Contributing Condition"
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / custom_status_id / description
        Previous 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."
      • changedInput schema / properties / description / description
        Previous value: -"Description of the Incident"New value: +"JSON request body field — description of the Incident"
      • changedInput schema / properties / distribution_member_ids / description
        Previous 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)"
      • changedInput schema / properties / drawing_revision_ids / description
        Previous value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response"
      • changedInput schema / properties / environmentals / description
        Previous value: -"Associated Environmentals to create"New value: +"JSON request body field — associated Environmentals to create"
      • changedInput schema / properties / event_date / description
        Previous 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."
      • changedInput schema / properties / file_version_ids / description
        Previous value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response"
      • changedInput schema / properties / form_ids / description
        Previous value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response"
      • changedInput schema / properties / hazard_id / description
        Previous value: -"The ID of a Hazard"New value: +"JSON request body field — unique identifier of the hazard"
      • changedInput schema / properties / id / description
        Previous value: -"Incident ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / image_ids / description
        Previous value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response"
      • changedInput schema / properties / injuries / description
        Previous value: -"Associated Injuries to create"New value: +"JSON request body field — associated Injuries to create"
      • changedInput schema / properties / location_id / description
        Previous value: -"The ID of a Location"New value: +"JSON request body field — the ID of a Location"
      • changedInput schema / properties / near_misses / description
        Previous value: -"Associated Near Misses to create"New value: +"JSON request body field — associated Near Misses to create"
      • changedInput schema / properties / private / description
        Previous value: -"Indicates whether an Incident is private"New value: +"JSON request body field — indicates whether an Incident is private"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / property_damages / description
        Previous value: -"Associated Property Damages to create"New value: +"JSON request body field — associated Property Damages to create"
      • changedInput schema / properties / recordable / description
        Previous value: -"Indicates whether an Incident is recordable"New value: +"JSON request body field — indicates whether an Incident is recordable"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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..."
      • changedInput schema / properties / status / description
        Previous 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)"
      • changedInput schema / properties / time_unknown / description
        Previous 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"
      • changedInput schema / properties / title / description
        Previous value: -"Incident Title"New value: +"JSON request body field — incident Title"
      • changedInput schema / properties / type_id / description
        Previous 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."
      • changedInput schema / properties / upload_uuids / description
        Previous value: -"Array of uploaded file UUIDs."New value: +"JSON request body field — array of uploaded file UUIDs."
      • changedInput schema / properties / witness_statements_attributes / description
        Previous value: -"Associated Witness Statement to create"New value: +"JSON request body field — associated Witness Statement to create"
    • Changedupdate_incident_action_type4 fields changed
      • changedInput schema / properties / active / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Incident Action Type ID"New value: +"URL path parameter — incident Action Type ID"
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Incident Action Type"New value: +"JSON request body field — the Name of the Incident Action Type"
    • Changedupdate_incident_severity_level6 fields changed
      • changedInput schema / properties / alert_recipient_ids / description
        Previous value: -"IDs of Users that should receive notifications"New value: +"JSON request body field — iDs of Users that should receive notifications"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / email_trigger / description
        Previous value: -"Indicates whether an email should be sent"New value: +"JSON request body field — indicates whether an email should be sent"
      • changedInput schema / properties / id / description
        Previous value: -"Incident Severity Level ID"New value: +"URL path parameter — incident Severity Level ID"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the Incident Severity Level"New value: +"JSON request body field — name of the Incident Severity Level"
      • changedInput schema / properties / push_notification_trigger / description
        Previous value: -"Indicates whether a push notification should be sent"New value: +"JSON request body field — indicates whether a push notification should be sent"
    • Changedupdate_information_of_a_budget_change9 fields changed
      • changedInput schema / properties / adjustment_line_items / description
        Previous value: -"List of budget change adjustments"New value: +"JSON request body field — list of budget change adjustments"
      • changedInput schema / properties / description / description
        Previous value: -"Description of budget change in HTML format"New value: +"JSON request body field — description of budget change in HTML format"
      • changedInput schema / properties / id / description
        Previous value: -"Unique identifier of this budget change"New value: +"JSON request body field — unique identifier of this budget change"
      • changedInput schema / properties / number / description
        Previous value: -"Number field of budget change"New value: +"JSON request body field — number field of budget change"
      • changedInput schema / properties / production_quantities / description
        Previous value: -"List of budget change production quantities"New value: +"JSON request body field — list of budget change production quantities"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / prostore_file_ids / description
        Previous 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"
      • changedInput schema / properties / status / description
        Previous value: -"Status of budget change"New value: +"JSON request body field — status of budget change"
      • changedInput schema / properties / title / description
        Previous value: -"Title of budget change"New value: +"JSON request body field — title of budget change"
    • Changedupdate_injury27 fields changed
      • changedInput schema / properties / affected_body_parts / description
        Previous 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."
      • changedInput schema / properties / affected_company_id / description
        Previous value: -"The ID of the Affected Company"New value: +"JSON request body field — the ID of the Affected Company"
      • changedInput schema / properties / affected_party_id / description
        Previous 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."
      • changedInput schema / properties / affected_person_id / description
        Previous 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."
      • changedInput schema / properties / affliction_type_id / description
        Previous 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."
      • changedInput schema / properties / body_diagram_type / description
        Previous value: -"body_diagram_type"New value: +"JSON request body field — the body diagram type for this Incidents operation"
      • changedInput schema / properties / body_part_ids / description
        Previous 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."
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / date_of_death / description
        Previous value: -"Date of death"New value: +"JSON request body field — the date of death for this Incidents operation"
      • changedInput schema / properties / description / description
        Previous value: -"Description of event in Rich Text format"New value: +"JSON request body field — description of event in Rich Text format"
      • changedInput schema / properties / filing_type / description
        Previous 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'."
      • changedInput schema / properties / harm_source_id / description
        Previous value: -"The ID of the Harm Source"New value: +"JSON request body field — the ID of the Harm Source"
      • changedInput schema / properties / hospitalized_overnight / description
        Previous value: -"Represents whether the injured person was hospitalized overnight"New value: +"JSON request body field — represents whether the injured person was hospitalized overnight"
      • changedInput schema / properties / id / description
        Previous value: -"Injury ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / managed_equipment_id / description
        Previous value: -"The ID of the Managed Equipment"New value: +"JSON request body field — the ID of the Managed Equipment"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / recordable / description
        Previous value: -"Represents whether the Injury record is recordable"New value: +"JSON request body field — represents whether the Injury record is recordable"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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..."
      • changedInput schema / properties / treated_in_er / description
        Previous 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"
      • changedInput schema / properties / treatment_facility / description
        Previous value: -"The name of the treatment facility"New value: +"JSON request body field — the name of the treatment facility"
      • changedInput schema / properties / treatment_facility_address / description
        Previous value: -"The street address of the treatment facility"New value: +"JSON request body field — the street address of the treatment facility"
      • changedInput schema / properties / treatment_provider / description
        Previous value: -"The name of the treatment provider"New value: +"JSON request body field — the name of the treatment provider"
      • changedInput schema / properties / work_activity_id / description
        Previous value: -"The ID of the Work Activity"New value: +"JSON request body field — the ID of the Work Activity"
      • changedInput schema / properties / work_days_absent / description
        Previous value: -"The number of days absent from work"New value: +"JSON request body field — the number of days absent from work"
      • changedInput schema / properties / work_days_restricted / description
        Previous value: -"The number of days on restricted work"New value: +"JSON request body field — the number of days on restricted work"
      • changedInput schema / properties / work_days_transferred / description
        Previous value: -"The number of days transferred"New value: +"JSON request body field — the number of days transferred"
    • Changedupdate_inspection_log4 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / id / description
        Previous value: -"Inspection Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / inspection_log / description
        Previous value: -"inspection_log"New value: +"JSON request body field — the inspection log for this Daily Log operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedupdate_inspection_type3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Inspection Type ID"New value: +"URL path parameter — unique identifier of the Inspections resource"
      • changedInput schema / properties / name / description
        Previous value: -"Name"New value: +"JSON request body field — the name for this Inspections operation"
    • Changedupdate_instruction18 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / attention_ids / description
        Previous 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"
      • changedInput schema / properties / cost_impact / description
        Previous value: -"The Cost Impact of the Instruction"New value: +"JSON request body field — the Cost Impact of the Instruction"
      • changedInput schema / properties / date_received / description
        Previous value: -"date_received"New value: +"JSON request body field — the date received for this Daily Log operation"
      • changedInput schema / properties / description / description
        Previous value: -"The Description of the Instruction"New value: +"JSON request body field — the Description of the Instruction"
      • changedInput schema / properties / distribution_member_ids / description
        Previous 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"
      • changedInput schema / properties / id / description
        Previous value: -"Instruction ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / instruction_from_id / description
        Previous 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"
      • changedInput schema / properties / instruction_type_id / description
        Previous value: -"ID of the Instruction Type"New value: +"JSON request body field — iD of the Instruction Type"
      • changedInput schema / properties / number / description
        Previous value: -"The Number of the Instruction"New value: +"JSON request body field — the Number of the Instruction"
      • changedInput schema / properties / private / description
        Previous value: -"The Private status of the Instruction"New value: +"JSON request body field — the Private status of the Instruction"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / schedule_impact / description
        Previous value: -"The Schedule Impact of the Instruction"New value: +"JSON request body field — the Schedule Impact of the Instruction"
      • changedInput schema / properties / send_emails / description
        Previous 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)"
      • changedInput schema / properties / status / description
        Previous value: -"The Status of the Instruction"New value: +"JSON request body field — the Status of the Instruction"
      • changedInput schema / properties / title / description
        Previous value: -"The Title of the Instruction"New value: +"JSON request body field — the Title of the Instruction"
      • changedInput schema / properties / trade_ids / description
        Previous 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"
      • changedInput schema / properties / upload_ids / description
        Previous 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."
    • Changedupdate_instruction_type3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Instruction ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / name / description
        Previous value: -"Name of Instruction Type"New value: +"JSON request body field — name of Instruction Type"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedupdate_item_response_set4 fields changed
      • changedInput schema / properties / active / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Item Response Set ID"New value: +"URL path parameter — item Response Set ID"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the Response Set"New value: +"JSON request body field — name of the Response Set"
    • Changedupdate_layer7 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / layer_id / description
        Previous value: -"layer_id"New value: +"URL path parameter — unique identifier of the layer"
      • changedInput schema / properties / name / description
        Previous value: -"name"New value: +"JSON request body field — the name for this Document Markup operation"
      • changedInput schema / properties / order_index / description
        Previous value: -"order_index"New value: +"JSON request body field — the order index for this Document Markup operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
      • changedInput schema / properties / settings / description
        Previous value: -"settings"New value: +"JSON request body field — the settings for this Document Markup operation"
      • changedInput schema / properties / visibility / description
        Previous value: -"visibility"New value: +"JSON request body field — the visibility for this Document Markup operation"
    • Changedupdate_layer_order_rank4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"company_id"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / layer_id / description
        Previous value: -"layer_id"New value: +"URL path parameter — unique identifier of the layer"
      • changedInput schema / properties / order_index / description
        Previous value: -"order_index"New value: +"JSON request body field — the order index for this Document Markup operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"project_id"New value: +"URL path parameter — unique identifier for the Procore project"
    • Changedupdate_line_item_type3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company"
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / line_item_type / description
        Previous value: -"Line Item Type object"New value: +"JSON request body field — line Item Type object"
    • Changedupdate_link4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Link ID"New value: +"URL path parameter — unique identifier of the Project-Level Configuration resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / title / description
        Previous value: -"The user-facing title of the link"New value: +"JSON request body field — the user-facing title of the link"
      • changedInput schema / properties / url / description
        Previous value: -"The full URL for the link"New value: +"JSON request body field — the full URL for the link"
    • Changedupdate_location3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the location"New value: +"URL path parameter — unique identifier of the Project resource"
      • changedInput schema / properties / location / description
        Previous value: -"location"New value: +"JSON request body field — the location for this Project operation"
      • changedInput schema / properties / project_id / description
        Previous 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"
    • Changedupdate_lookahead_task12 fields changed
      • changedInput schema / properties / assignee_ids / description
        Previous 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"
      • changedInput schema / properties / comment / description
        Previous value: -"Additional comments"New value: +"JSON request body field — additional comments"
      • changedInput schema / properties / end_date / description
        Previous value: -"Task end date, in project time zone"New value: +"JSON request body field — task end date, in project time zone"
      • changedInput schema / properties / id / description
        Previous value: -"Lookahead Task ID"New value: +"URL path parameter — unique identifier of the Schedule (Legacy) resource"
      • changedInput schema / properties / lookahead_id / description
        Previous value: -"ID of the associated Lookahead"New value: +"JSON request body field — iD of the associated Lookahead"
      • changedInput schema / properties / name / description
        Previous value: -"The name of the Task"New value: +"JSON request body field — the name of the Task"
      • changedInput schema / properties / parent_id / description
        Previous value: -"ID of the parent Lookahead Task"New value: +"JSON request body field — iD of the parent Lookahead Task"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / resource_ids / description
        Previous 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"
      • changedInput schema / properties / segments / description
        Previous value: -"segments"New value: +"JSON request body field — the segments for this Schedule (Legacy) operation"
      • changedInput schema / properties / start_date / description
        Previous value: -"Task start date, in project time zone"New value: +"JSON request body field — task start date, in project time zone"
      • changedInput schema / properties / vendor_ids / description
        Previous 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"
    • Changedupdate_manpower_log5 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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."
      • changedInput schema / properties / id / description
        Previous value: -"Manpower Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / manpower_log / description
        Previous value: -"manpower_log"New value: +"JSON request body field — the manpower log for this Daily Log operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
    • Changedupdate_material7 fields changed
      • changedInput schema / properties / description / description
        Previous value: -"Description of the material"New value: +"JSON request body field — description of the material"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the project"New value: +"URL path parameter — unique identifier of the Field Productivity resource"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the material"New value: +"JSON request body field — name of the material"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / quantity / description
        Previous value: -"Quantity of the material"New value: +"JSON request body field — quantity of the material"
      • changedInput schema / properties / time_and_material_entry_id / description
        Previous 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"
      • changedInput schema / properties / uom / description
        Previous value: -"Unit of measure for the material"New value: +"JSON request body field — unit of measure for the material"
    • Removedupdate_meeting
    • Changedupdate_meeting_attendee_record5 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Meeting Attendee record"New value: +"URL path parameter — iD of the Meeting Attendee record"
      • changedInput schema / properties / login_information_id / description
        Previous 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"
      • changedInput schema / properties / meeting_id / description
        Previous value: -"ID of the Meeting"New value: +"Query string parameter — unique identifier of the meeting"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / status / description
        Previous value: -"Attendance status"New value: +"JSON request body field — attendance status"
    • Changedupdate_meeting_category4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the meeting category"New value: +"URL path parameter — iD of the meeting category"
      • changedInput schema / properties / meeting_category / description
        Previous value: -"Meeting Category object"New value: +"JSON request body field — meeting Category object"
      • changedInput schema / properties / meeting_id / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous 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"
    • Addedupdate_meeting_project
    • Removedupdate_meeting_topic
    • Addedupdate_meeting_topic_project
    • Addedupdate_meeting_topic_v1_0
    • Removedupdate_meeting_topic_v1_1
    • Addedupdate_meeting_v1_0
    • Removedupdate_meeting_v1_1
    • Changedupdate_monitoring_resource8 fields changed
      • changedInput schema / properties / description / description
        Previous value: -"Description"New value: +"JSON request body field — the description for this Budget operation"
      • changedInput schema / properties / end_date / description
        Previous 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)"
      • changedInput schema / properties / id / description
        Previous value: -"Monitoring Resource ID"New value: +"URL path parameter — monitoring Resource ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / start_date / description
        Previous 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)"
      • changedInput schema / properties / unit_cost / description
        Previous value: -"Unit Cost"New value: +"JSON request body field — the unit cost for this Budget operation"
      • changedInput schema / properties / unit_of_measure / description
        Previous value: -"Unit of Measure"New value: +"JSON request body field — the unit of measure for this Budget operation"
      • changedInput schema / properties / utilization / description
        Previous 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%"
    • Changedupdate_multiple_time_and_material_entries5 fields changed
      • changedInput schema / properties / change_event_id / description
        Previous value: -"Associated Change Event ID"New value: +"JSON request body field — associated Change Event ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / time_and_material_entry_ids / description
        Previous 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"
      • changedInput schema / properties / update_change_event_attachment / description
        Previous value: -"Will the attachments need to be updated"New value: +"JSON request body field — will the attachments need to be updated"
    • Changedupdate_near_miss11 fields changed
      • changedInput schema / properties / affected_company_id / description
        Previous value: -"The ID of the Affected Company"New value: +"JSON request body field — the ID of the Affected Company"
      • changedInput schema / properties / affected_party_id / description
        Previous 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."
      • changedInput schema / properties / affected_person_id / description
        Previous 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."
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / description / description
        Previous value: -"Description of event in Rich Text format"New value: +"JSON request body field — description of event in Rich Text format"
      • changedInput schema / properties / harm_source_id / description
        Previous value: -"The ID of the Harm Source"New value: +"JSON request body field — the ID of the Harm Source"
      • changedInput schema / properties / id / description
        Previous value: -"Near Miss ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / managed_equipment_id / description
        Previous value: -"The ID of the Managed Equipment"New value: +"JSON request body field — the ID of the Managed Equipment"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / work_activity_id / description
        Previous value: -"The ID of the Work Activity"New value: +"JSON request body field — the ID of the Work Activity"
    • Changedupdate_notes_log5 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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."
      • changedInput schema / properties / id / description
        Previous value: -"Notes Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / notes_log / description
        Previous value: -"notes_log"New value: +"JSON request body field — the notes log for this Daily Log operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
    • Changedupdate_observation_item4 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / id / description
        Previous value: -"Observation Item ID"New value: +"URL path parameter — unique identifier of the Observations resource"
      • changedInput schema / properties / observation / description
        Previous value: -"Item object"New value: +"JSON request body field — item object"
      • changedInput schema / properties / project_id / description
        Previous 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"
    • Changedupdate_payment_application_owner_invoice_for_prime_contract5 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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[]`..."
      • changedInput schema / properties / id / description
        Previous value: -"Payment Application (Owner Invoice) ID"New value: +"URL path parameter — payment Application (Owner Invoice) ID"
      • changedInput schema / properties / payment_application / description
        Previous value: -"Payment Application (Owner Invoice)"New value: +"JSON request body field — payment Application (Owner Invoice)"
      • changedInput schema / properties / prime_contract_id / description
        Previous value: -"Prime Contract ID"New value: +"URL path parameter — unique identifier of the prime contract"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedupdate_payment_application_owner_invoice_line_item_for_prime4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Payment Application (Owner Invoice) Line item ID"New value: +"URL path parameter — payment Application (Owner Invoice) Line item ID"
      • changedInput schema / properties / payment_application_line_item / description
        Previous value: -"Payment Application (Owner Invoice) Line Item"New value: +"JSON request body field — payment Application (Owner Invoice) Line Item"
      • changedInput schema / properties / prime_contract_id / description
        Previous value: -"Prime Contract ID"New value: +"URL path parameter — unique identifier of the prime contract"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedupdate_payment_application_owner_invoice_markup_line_item_for4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Payment Application (Owner Invoice) Markup Line item ID"New value: +"URL path parameter — payment Application (Owner Invoice) Markup Line item ID"
      • changedInput schema / properties / payment_application_markup_line_item / description
        Previous value: -"Payment Application (Owner Invoice) Markup Line Item"New value: +"JSON request body field — payment Application (Owner Invoice) Markup Line Item"
      • changedInput schema / properties / prime_contract_id / description
        Previous value: -"Prime Contract ID"New value: +"URL path parameter — unique identifier of the prime contract"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedupdate_payments_beneficiary_classification3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / earlyPayClassification / description
        Previous value: -"Early pay classification for the beneficiary"New value: +"JSON request body field — early pay classification for the beneficiary"
      • changedInput schema / properties / payments_beneficiary_id / description
        Previous value: -"Unique identifier of the payments beneficiary"New value: +"URL path parameter — unique identifier of the payments beneficiary"
    • Changedupdate_plan_revision_log4 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / id / description
        Previous value: -"Plan Revision Log ID"New value: +"URL path parameter — plan Revision Log ID"
      • changedInput schema / properties / plan_revision_log / description
        Previous value: -"plan_revision_log"New value: +"JSON request body field — the plan revision log for this Daily Log operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedupdate_potential_change_order4 fields changed
      • changedInput schema / properties / change_order / description
        Previous value: -"change_order"New value: +"JSON request body field — the change order for this Change Orders operation"
      • changedInput schema / properties / contract_id / description
        Previous value: -"Contract ID"New value: +"JSON request body field — unique identifier of the contract"
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Change Orders resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedupdate_potential_change_order_line_item4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Change Orders resource"
      • changedInput schema / properties / line_item / description
        Previous value: -"The Line Item object"New value: +"JSON request body field — the Line Item object"
      • changedInput schema / properties / potential_change_order_id / description
        Previous value: -"Potential Change Order ID"New value: +"URL path parameter — potential Change Order ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
    • Changedupdate_prime_change_order32 fields changed
      • changedInput schema / properties / attachment_ids / description
        Previous value: -"Existing attachments to preserve on the response"New value: +"JSON request body field — existing attachments to preserve on the response"
      • changedInput schema / properties / batch_id / description
        Previous value: -"Unique identifier for a change order batch."New value: +"JSON request body field — unique identifier for a change order batch."
      • changedInput schema / properties / change_event_attachment_ids / description
        Previous 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."
      • changedInput schema / properties / change_order_change_reason_id / description
        Previous value: -"Unique identifier for the change reason."New value: +"JSON request body field — unique identifier for the change reason."
      • changedInput schema / properties / contract_id / description
        Previous value: -"Unique identifier for the contract."New value: +"JSON request body field — unique identifier for the contract."
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / description / description
        Previous value: -"Description"New value: +"JSON request body field — the description for this Prime Contracts operation"
      • changedInput schema / properties / designated_reviewer_id / description
        Previous 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."
      • changedInput schema / properties / drawing_revision_ids / description
        Previous value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response"
      • changedInput schema / properties / due_date / description
        Previous value: -"Due Date"New value: +"JSON request body field — due date in YYYY-MM-DD format"
      • changedInput schema / properties / enable_ssov / description
        Previous 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."
      • changedInput schema / properties / executed / description
        Previous value: -"Whether or not the Change Order is executed"New value: +"JSON request body field — whether or not the Change Order is executed"
      • changedInput schema / properties / field_change / description
        Previous value: -"Field Change"New value: +"JSON request body field — the field change for this Prime Contracts operation"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Prime Change Order"New value: +"URL path parameter — iD of the Prime Change Order"
      • changedInput schema / properties / invoiced_date / description
        Previous value: -"Invoiced Date"New value: +"JSON request body field — the invoiced date in YYYY-MM-DD format"
      • changedInput schema / properties / location_id / description
        Previous value: -"Unique identifier for the location."New value: +"JSON request body field — unique identifier for the location."
      • changedInput schema / properties / number / description
        Previous value: -"Number of the Change Order"New value: +"JSON request body field — number of the Change Order"
      • changedInput schema / properties / paid / description
        Previous 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"
      • changedInput schema / properties / paid_date / description
        Previous value: -"Paid Date"New value: +"JSON request body field — the paid date in YYYY-MM-DD format"
      • changedInput schema / properties / private / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / reason / description
        Previous value: -"Reason for the change order"New value: +"JSON request body field — reason for the change order"
      • changedInput schema / properties / received_from_id / description
        Previous value: -"Unique identifier for the received from entity."New value: +"JSON request body field — unique identifier for the received from entity."
      • changedInput schema / properties / reference / description
        Previous value: -"Reference"New value: +"JSON request body field — the reference for this Prime Contracts operation"
      • changedInput schema / properties / revision / description
        Previous value: -"Revision Number"New value: +"JSON request body field — revision Number"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / schedule_impact_amount / description
        Previous value: -"Schedule impact in days"New value: +"JSON request body field — schedule impact in days"
      • changedInput schema / properties / signature_required / description
        Previous 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"
      • changedInput schema / properties / signed_change_order_received_date / description
        Previous value: -"Signed Change Order Received Date"New value: +"JSON request body field — signed Change Order Received Date"
      • changedInput schema / properties / status / description
        Previous value: -"Status"New value: +"JSON request body field — the status for this Prime Contracts operation"
      • changedInput schema / properties / title / description
        Previous value: -"Title of the Contract"New value: +"JSON request body field — title of the Contract"
      • changedInput schema / properties / view / description
        Previous 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."
    • Changedupdate_prime_change_order_batch29 fields changed
      • changedInput schema / properties / attachment_ids / description
        Previous value: -"Existing attachments to preserve on the response"New value: +"JSON request body field — existing attachments to preserve on the response"
      • changedInput schema / properties / change_event_attachment_ids / description
        Previous 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."
      • changedInput schema / properties / change_order_ids / description
        Previous 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."
      • changedInput schema / properties / contract_id / description
        Previous value: -"Unique identifier for the contract."New value: +"JSON request body field — unique identifier for the contract."
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / description / description
        Previous value: -"Description"New value: +"JSON request body field — the description for this Prime Contracts operation"
      • changedInput schema / properties / designated_reviewer_id / description
        Previous 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."
      • changedInput schema / properties / drawing_revision_ids / description
        Previous value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response"
      • changedInput schema / properties / due_date / description
        Previous value: -"Due Date"New value: +"JSON request body field — due date in YYYY-MM-DD format"
      • changedInput schema / properties / executed / description
        Previous 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"
      • changedInput schema / properties / file_version_ids / description
        Previous value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response"
      • changedInput schema / properties / form_ids / description
        Previous value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Prime Change Order Batch"New value: +"URL path parameter — iD of the Prime Change Order Batch"
      • changedInput schema / properties / image_ids / description
        Previous value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response"
      • changedInput schema / properties / invoiced_date / description
        Previous value: -"Invoiced Date"New value: +"JSON request body field — the invoiced date in YYYY-MM-DD format"
      • changedInput schema / properties / legacy_request_ids / description
        Previous 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."
      • changedInput schema / properties / number / description
        Previous value: -"Number of the Change Order Batch"New value: +"JSON request body field — number of the Change Order Batch"
      • changedInput schema / properties / paid_date / description
        Previous value: -"Paid Date"New value: +"JSON request body field — the paid date in YYYY-MM-DD format"
      • changedInput schema / properties / private / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / revised_substantial_completion_date / description
        Previous value: -"Revised substantial completion date"New value: +"JSON request body field — revised substantial completion date"
      • changedInput schema / properties / revision / description
        Previous value: -"Revision Number"New value: +"JSON request body field — revision Number"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / schedule_impact_amount / description
        Previous value: -"Schedule impact in days"New value: +"JSON request body field — schedule impact in days"
      • changedInput schema / properties / signature_required / description
        Previous 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"
      • changedInput schema / properties / signed_change_order_received_date / description
        Previous value: -"Signed Change Order Batch Received Date"New value: +"JSON request body field — signed Change Order Batch Received Date"
      • changedInput schema / properties / status / description
        Previous value: -"Status"New value: +"JSON request body field — the status for this Prime Contracts operation"
      • changedInput schema / properties / title / description
        Previous value: -"Title of the Change Order Batch"New value: +"JSON request body field — title of the Change Order Batch"
      • changedInput schema / properties / upload_ids / description
        Previous value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
    • Removedupdate_prime_contract
    • Removedupdate_prime_contract_line_item
    • Addedupdate_prime_contract_line_item_project
    • Addedupdate_prime_contract_line_item_project_v2_0
    • Addedupdate_prime_contract_line_item_v1_0
    • Removedupdate_prime_contract_line_item_v2_0_project
    • Removedupdate_prime_contract_line_item_v2_0_project_v2_0
    • Addedupdate_prime_contract_project
    • Addedupdate_prime_contract_v1_0
    • Removedupdate_prime_contract_v2_0
    • Changedupdate_productivity_log3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Productivity Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / productivity_log / description
        Previous value: -"productivity_log"New value: +"JSON request body field — the productivity log for this Daily Log operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedupdate_program6 fields changed
      • changedInput schema / properties / address_freeform / description
        Previous value: -"The Address of the Program"New value: +"JSON request body field — the Address of the Program"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the program"New value: +"URL path parameter — unique identifier of the Company Settings resource"
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Program"New value: +"JSON request body field — the Name of the Program"
      • changedInput schema / properties / website / description
        Previous value: -"The Website of the Program"New value: +"JSON request body field — the Website of the Program"
      • changedInput schema / properties / zip / description
        Previous value: -"The Zip code of the Program"New value: +"JSON request body field — the Zip code of the Program"
    • Changedupdate_project4 fields changed
      • changedInput schema / properties / company_id / description
        Previous 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."
      • changedInput schema / properties / id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / project / description
        Previous value: -"project"New value: +"JSON request body field — the project for this Portfolio operation"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
    • Changedupdate_project_account5 fields changed
      • changedInput schema / properties / bankAccountId / description
        Previous 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"
      • changedInput schema / properties / bankAccountType / description
        Previous value: -"Type of the bank account"New value: +"JSON request body field — type of the bank account"
      • changedInput schema / properties / businessId / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / project_id / description
        Previous value: -"Project ID"New value: +"URL path parameter — unique identifier for the Procore project"
    • Changedupdate_project_bid_type3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Project Bid Type"New value: +"URL path parameter — iD of the Project Bid Type"
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Project Bid Type"New value: +"JSON request body field — the Name of the Project Bid Type"
    • Changedupdate_project_checklist_template4 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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[]..."
      • changedInput schema / properties / id / description
        Previous value: -"Checklist Template ID"New value: +"URL path parameter — checklist Template ID"
      • changedInput schema / properties / list_template / description
        Previous value: -"Checklist Template object"New value: +"JSON request body field — checklist Template object"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedupdate_project_currency_configuration6 fields changed
      • changedInput schema / properties / company_currency_exchange_rate_override / description
        Previous value: -"Override for the Company Currency Exchange Rate"New value: +"JSON request body field — override for the Company Currency Exchange Rate"
      • changedInput schema / properties / company_id / description
        Previous value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / currency_display / description
        Previous value: -"Currency Display Options"New value: +"JSON request body field — currency Display Options"
      • changedInput schema / properties / currency_iso_code / description
        Previous value: -"Currency ISO Code"New value: +"JSON request body field — the currency iso code for this Currency Configurations operation"
      • changedInput schema / properties / multicurrency_enabled / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"ID of the project"New value: +"URL path parameter — unique identifier for the Procore project"
    • Changedupdate_project_distribution_group6 fields changed
      • changedInput schema / properties / Idempotency-Token / description
        Previous value: -"Unique idempotent token"New value: +"JSON request body field — unique idempotent token"
      • changedInput schema / properties / description / description
        Previous value: -"Description"New value: +"JSON request body field — the description for this Directory operation"
      • changedInput schema / properties / distribution_group_id / description
        Previous value: -"Unique identifier for the distribution group."New value: +"URL path parameter — unique identifier for the distribution group."
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Distribution Group"New value: +"JSON request body field — the Name of the Distribution Group"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / user_ids / description
        Previous value: -"User IDs to associate with the Distribution Group"New value: +"JSON request body field — user IDs to associate with the Distribution Group"
    • Changedupdate_project_early_pay_programs3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / programId / description
        Previous 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)"
      • changedInput schema / properties / projectIds / description
        Previous value: -"List of project IDs to update"New value: +"JSON request body field — list of project IDs to update"
    • Changedupdate_project_equipment_maintenance_log6 fields changed
      • changedInput schema / properties / id / description
        Previous 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"
      • changedInput schema / properties / last_service_date / description
        Previous value: -"The Date the equipment was last services"New value: +"JSON request body field — the Date the equipment was last services"
      • changedInput schema / properties / managed_equipment_id / description
        Previous value: -"Equipment Id the maintenance log is associated with"New value: +"JSON request body field — equipment Id the maintenance log is associated with"
      • changedInput schema / properties / next_service_date / description
        Previous value: -"Next service date for the equipment"New value: +"JSON request body field — next service date for the equipment"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / upload_ids / description
        Previous 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."
    • Changedupdate_project_exchange_rates3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"ID of the company"New value: +"URL path parameter — unique identifier for the Procore company"
      • changedInput schema / properties / exchange_rates / description
        Previous value: -"Project exchange rates"New value: +"JSON request body field — project exchange rates"
      • changedInput schema / properties / project_id / description
        Previous value: -"ID of the project"New value: +"URL path parameter — unique identifier for the Procore project"
    • Changedupdate_project_file11 fields changed
      • changedInput schema / properties / checked_out_until / description
        Previous 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\""
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / data / description
        Previous 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..."
      • changedInput schema / properties / description / description
        Previous value: -"A description of the file"New value: +"JSON request body field — a description of the file"
      • changedInput schema / properties / explicit_permissions / description
        Previous value: -"Set file to private (true/false)"New value: +"JSON request body field — set file to private (true/false)"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the File"New value: +"URL path parameter — unique identifier of the Documents resource"
      • changedInput schema / properties / is_tracked / description
        Previous 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)"
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the file"New value: +"JSON request body field — the Name of the file"
      • changedInput schema / properties / parent_id / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / upload_uuid / description
        Previous 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..."
    • Changedupdate_project_folder7 fields changed
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / explicit_permissions / description
        Previous value: -"Set folder to private (true/false)"New value: +"JSON request body field — set folder to private (true/false)"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the folder"New value: +"URL path parameter — unique identifier of the Documents resource"
      • changedInput schema / properties / is_tracked / description
        Previous 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)"
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the folder"New value: +"JSON request body field — the Name of the folder"
      • changedInput schema / properties / parent_id / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedupdate_project_incident_configuration3 fields changed
      • changedInput schema / properties / default_distribution_ids / description
        Previous value: -"User IDs in the default distribution list"New value: +"JSON request body field — user IDs in the default distribution list"
      • changedInput schema / properties / private_by_default / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedupdate_project_insurance20 fields changed
      • changedInput schema / properties / additional_insured / description
        Previous value: -"Additional Individuals and/or Companies Insured"New value: +"JSON request body field — additional Individuals and/or Companies Insured"
      • changedInput schema / properties / division_template / description
        Previous value: -"Division Template"New value: +"JSON request body field — the division template for this Directory operation"
      • changedInput schema / properties / effective_date / description
        Previous value: -"Effective date"New value: +"JSON request body field — the effective date in YYYY-MM-DD format"
      • changedInput schema / properties / enable_expired_insurance_notifications / description
        Previous value: -"Enable/Disable expired insurance notifications"New value: +"JSON request body field — enable/Disable expired insurance notifications"
      • changedInput schema / properties / exempt / description
        Previous value: -"Exempt status"New value: +"JSON request body field — exempt status"
      • changedInput schema / properties / expiration_date / description
        Previous value: -"Expiration date"New value: +"JSON request body field — the expiration date in YYYY-MM-DD format"
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / info_received / description
        Previous value: -"Information received (or not)"New value: +"JSON request body field — information received (or not)"
      • changedInput schema / properties / insurance_sets / description
        Previous value: -"Insurance Sets"New value: +"JSON request body field — the insurance sets for this Directory operation"
      • changedInput schema / properties / insurance_type / description
        Previous value: -"Insurance type"New value: +"JSON request body field — the insurance type for this Directory operation"
      • changedInput schema / properties / limit / description
        Previous value: -"Limit"New value: +"JSON request body field — the limit for this Directory operation"
      • changedInput schema / properties / name / description
        Previous value: -"Provider name"New value: +"JSON request body field — provider name"
      • changedInput schema / properties / notes / description
        Previous value: -"Notes"New value: +"JSON request body field — the notes for this Directory operation"
      • changedInput schema / properties / origin_data / description
        Previous value: -"Origin data"New value: +"JSON request body field — the origin data for this Directory operation"
      • changedInput schema / properties / origin_id / description
        Previous value: -"Origin ID"New value: +"JSON request body field — unique identifier of the origin"
      • changedInput schema / properties / policy_number / description
        Previous value: -"Policy number"New value: +"JSON request body field — the policy number for this Directory operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / status / description
        Previous value: -"Status"New value: +"JSON request body field — the status for this Directory operation"
      • changedInput schema / properties / vendor_id / description
        Previous value: -"Vendor ID"New value: +"JSON request body field — unique identifier of the vendor"
      • changedInput schema / properties / view / description
        Previous value: -"Extended view of data"New value: +"Query string parameter — extended view of data"
    • Changedupdate_project_location4 fields changed
      • changedInput schema / properties / location_id / description
        Previous value: -"ID of the location"New value: +"URL path parameter — unique identifier of the location"
      • changedInput schema / properties / node_name / description
        Previous value: -"The Node Name of the Location"New value: +"JSON request body field — the Node Name of the Location"
      • changedInput schema / properties / parent_id / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedupdate_project_observation_type6 fields changed
      • changedInput schema / properties / active / description
        Previous 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."
      • changedInput schema / properties / category / description
        Previous 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."
      • changedInput schema / properties / id / description
        Previous value: -"Project Observation Type ID"New value: +"URL path parameter — project Observation Type ID"
      • changedInput schema / properties / name / description
        Previous 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."
      • changedInput schema / properties / observations_category_id / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedupdate_project_owner_type3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Project Owner Type"New value: +"URL path parameter — iD of the Project Owner Type"
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Project Owner Type"New value: +"JSON request body field — the Name of the Project Owner Type"
    • Changedupdate_project_patterns_segment_order2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / updated_order / description
        Previous value: -"New position for each segment in the pattern"New value: +"JSON request body field — new position for each segment in the pattern"
    • Changedupdate_project_payor_pays_setting3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / payorPaysFees / description
        Previous value: -"Whether the payor pays fees for these projects"New value: +"JSON request body field — whether the payor pays fees for these projects"
      • changedInput schema / properties / projectIds / description
        Previous value: -"List of project IDs to update"New value: +"JSON request body field — list of project IDs to update"
    • Changedupdate_project_person10 fields changed
      • changedInput schema / properties / employee_id / description
        Previous value: -"The Employee ID of the Project Person"New value: +"JSON request body field — the Employee ID of the Project Person"
      • changedInput schema / properties / first_name / description
        Previous value: -"The First Name of the Project Person"New value: +"JSON request body field — the First Name of the Project Person"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the person"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / is_employee / description
        Previous value: -"The Employee status of the Project Person"New value: +"JSON request body field — the Employee status of the Project Person"
      • changedInput schema / properties / job_title / description
        Previous value: -"The Job Title of the Project Person"New value: +"JSON request body field — the Job Title of the Project Person"
      • changedInput schema / properties / last_name / description
        Previous value: -"The Last Name of the Project Person"New value: +"JSON request body field — the Last Name of the Project Person"
      • changedInput schema / properties / origin_id / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"ID of the project"New value: +"URL path parameter — unique identifier for the Procore project"
      • changedInput schema / properties / view / description
        Previous 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..."
      • changedInput schema / properties / work_classification_id / description
        Previous 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."
    • Changedupdate_project_region3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Project Region"New value: +"URL path parameter — iD of the Project Region"
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Project Region"New value: +"JSON request body field — the Name of the Project Region"
    • Changedupdate_project_segment_item7 fields changed
      • changedInput schema / properties / code / description
        Previous value: -"Segment Item Code"New value: +"JSON request body field — segment Item Code"
      • changedInput schema / properties / id / description
        Previous value: -"Segment Item ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource"
      • changedInput schema / properties / name / description
        Previous value: -"Segment Item Name"New value: +"JSON request body field — segment Item Name"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / segment_id / description
        Previous value: -"Segment ID"New value: +"URL path parameter — unique identifier of the segment"
      • changedInput schema / properties / status / description
        Previous value: -"Segment Item Status"New value: +"JSON request body field — segment Item Status"
      • changedInput schema / properties / sub_job_id / description
        Previous 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"
    • Changedupdate_project_stage5 fields changed
      • changedInput schema / properties / category / description
        Previous value: -"The Category Type of the Project Stage"New value: +"JSON request body field — the Category Type of the Project Stage"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the project stage"New value: +"URL path parameter — iD of the project stage"
      • changedInput schema / properties / is_bidding_stage / description
        Previous value: -"The Bidding Stage status of the Project Stage"New value: +"JSON request body field — the Bidding Stage status of the Project Stage"
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Project Stage"New value: +"JSON request body field — the Name of the Project Stage"
    • Addedupdate_project_task_company
    • Addedupdate_project_task_company_v2_0
    • Removedupdate_project_task_v2_0_company
    • Removedupdate_project_task_v2_0_company_v2_0
    • Changedupdate_project_tools2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / tools / description
        Previous value: -"tools"New value: +"JSON request body field — the tools for this Project operation"
    • Changedupdate_project_type3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the project type"New value: +"URL path parameter — iD of the project type"
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Project Type"New value: +"JSON request body field — the Name of the Project Type"
    • Changedupdate_project_upload3 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / segments / description
        Previous value: -"Upload segments"New value: +"JSON request body field — upload segments"
      • changedInput schema / properties / uuid / description
        Previous value: -"Upload UUID"New value: +"URL path parameter — upload UUID"
    • Removedupdate_project_upload_v1_1
    • Changedupdate_project_user24 fields changed
      • changedInput schema / properties / abbreviated_name / description
        Previous value: -"The Initials of the Project User"New value: +"JSON request body field — the Initials of the Project User"
      • changedInput schema / properties / address / description
        Previous value: -"The street Address of the Project User"New value: +"JSON request body field — the street Address of the Project User"
      • changedInput schema / properties / avatar / description
        Previous 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."
      • changedInput schema / properties / business_phone / description
        Previous value: -"The Business Phone number of the Project User"New value: +"JSON request body field — the Business Phone number of the Project User"
      • changedInput schema / properties / business_phone_extension / description
        Previous value: -"The Business Phone Extension of the Project User"New value: +"JSON request body field — the Business Phone Extension of the Project User"
      • changedInput schema / properties / city / description
        Previous value: -"The City in which the Project User resides"New value: +"JSON request body field — the City in which the Project User resides"
      • changedInput schema / properties / country_code / description
        Previous 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)"
      • changedInput schema / properties / email_address / description
        Previous value: -"The Email Address of the Project User"New value: +"JSON request body field — the Email Address of the Project User"
      • changedInput schema / properties / email_signature / description
        Previous value: -"The Email Signature of the Project User"New value: +"JSON request body field — the Email Signature of the Project User"
      • changedInput schema / properties / employee_id / description
        Previous value: -"The Employee ID of the Project User"New value: +"JSON request body field — the Employee ID of the Project User"
      • changedInput schema / properties / fax_number / description
        Previous value: -"The Fax Number of the Project User"New value: +"JSON request body field — the Fax Number of the Project User"
      • changedInput schema / properties / first_name / description
        Previous value: -"The First Name of the Project User"New value: +"JSON request body field — the First Name of the Project User"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the user"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / is_active / description
        Previous value: -"The Active status of the Project User"New value: +"JSON request body field — the Active status of the Project User"
      • changedInput schema / properties / is_employee / description
        Previous value: -"The Employee status of the Project User"New value: +"JSON request body field — the Employee status of the Project User"
      • changedInput schema / properties / job_title / description
        Previous value: -"The Job Title of the Project User"New value: +"JSON request body field — the Job Title of the Project User"
      • changedInput schema / properties / last_name / description
        Previous value: -"The Last Name of the Project User"New value: +"JSON request body field — the Last Name of the Project User"
      • changedInput schema / properties / mobile_phone / description
        Previous value: -"The Mobile Phone number of the Project User"New value: +"JSON request body field — the Mobile Phone number of the Project User"
      • changedInput schema / properties / notes / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / state_code / description
        Previous 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)"
      • changedInput schema / properties / vendor_id / description
        Previous value: -"The Vendor ID of the Project User"New value: +"JSON request body field — the Vendor ID of the Project User"
      • changedInput schema / properties / zip / description
        Previous value: -"The Zip Code of the Project User"New value: +"JSON request body field — the Zip Code of the Project User"
    • Changedupdate_project_vendor31 fields changed
      • changedInput schema / properties / abbreviated_name / description
        Previous value: -"Abbreviated name"New value: +"JSON request body field — the abbreviated name for this Directory operation"
      • changedInput schema / properties / address / description
        Previous value: -"Address"New value: +"JSON request body field — the address for this Directory operation"
      • changedInput schema / properties / authorized_bidder / description
        Previous value: -"Authorized bidder status"New value: +"JSON request body field — authorized bidder status"
      • changedInput schema / properties / bidding / description
        Previous value: -"Bidding statuses"New value: +"JSON request body field — bidding statuses"
      • changedInput schema / properties / business_phone / description
        Previous value: -"Business phone"New value: +"JSON request body field — the business phone for this Directory operation"
      • changedInput schema / properties / city / description
        Previous value: -"City"New value: +"JSON request body field — the city for this Directory operation"
      • changedInput schema / properties / country_code / description
        Previous value: -"Country code (ISO-3166 Alpha-2 format)"New value: +"JSON request body field — country code (ISO-3166 Alpha-2 format)"
      • changedInput schema / properties / email_address / description
        Previous value: -"Email address"New value: +"JSON request body field — the email address for this Directory operation"
      • changedInput schema / properties / fax_number / description
        Previous value: -"Fax number"New value: +"JSON request body field — the fax number for this Directory operation"
      • changedInput schema / properties / id / description
        Previous value: -"ID of the vendor"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / is_active / description
        Previous value: -"Active status"New value: +"JSON request body field — active status"
      • changedInput schema / properties / labor_union / description
        Previous value: -"Labor union"New value: +"JSON request body field — the labor union for this Directory operation"
      • changedInput schema / properties / license_number / description
        Previous value: -"License number"New value: +"JSON request body field — the license number for this Directory operation"
      • changedInput schema / properties / mobile_phone / description
        Previous value: -"Mobile phone"New value: +"JSON request body field — the mobile phone for this Directory operation"
      • changedInput schema / properties / name / description
        Previous value: -"Name"New value: +"JSON request body field — the name for this Directory operation"
      • changedInput schema / properties / non_union_prevailing_wage / description
        Previous value: -"Non union prevailing wage status"New value: +"JSON request body field — non union prevailing wage status"
      • changedInput schema / properties / notes / description
        Previous value: -"Notes (notes/keywords/tags)"New value: +"JSON request body field — notes (notes/keywords/tags)"
      • changedInput schema / properties / origin_code / description
        Previous value: -"Origin Code"New value: +"JSON request body field — the origin code for this Directory operation"
      • changedInput schema / properties / origin_data / description
        Previous value: -"Origin Data"New value: +"JSON request body field — the origin data for this Directory operation"
      • changedInput schema / properties / origin_id / description
        Previous value: -"Origin ID"New value: +"JSON request body field — unique identifier of the origin"
      • changedInput schema / properties / parent_id / description
        Previous 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)."
      • changedInput schema / properties / prequalified / description
        Previous value: -"Prequalified status"New value: +"JSON request body field — prequalified status"
      • changedInput schema / properties / primary_contact_id / description
        Previous value: -"Primary Contact ID"New value: +"JSON request body field — unique identifier of the primary contact"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / state_code / description
        Previous value: -"State code (ISO-3166 Alpha-2 format)"New value: +"JSON request body field — state code (ISO-3166 Alpha-2 format)"
      • changedInput schema / properties / trade_name / description
        Previous 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)."
      • changedInput schema / properties / union_member / description
        Previous value: -"Union member status"New value: +"JSON request body field — union member status"
      • changedInput schema / properties / view / description
        Previous 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."
      • changedInput schema / properties / website / description
        Previous value: -"Website url"New value: +"JSON request body field — website url"
      • changedInput schema / properties / zip / description
        Previous value: -"Zip code"New value: +"JSON request body field — postal/ZIP code"
    • Changedupdate_project_vendor_insurance20 fields changed
      • changedInput schema / properties / additional_insured / description
        Previous value: -"Additional Individuals and/or Companies Insured"New value: +"JSON request body field — additional Individuals and/or Companies Insured"
      • changedInput schema / properties / division_template / description
        Previous value: -"Division Template"New value: +"JSON request body field — the division template for this Directory operation"
      • changedInput schema / properties / effective_date / description
        Previous value: -"Effective date"New value: +"JSON request body field — the effective date in YYYY-MM-DD format"
      • changedInput schema / properties / enable_expired_insurance_notifications / description
        Previous value: -"Enable/Disable expired insurance notifications"New value: +"JSON request body field — enable/Disable expired insurance notifications"
      • changedInput schema / properties / exempt / description
        Previous value: -"Exempt status"New value: +"JSON request body field — exempt status"
      • changedInput schema / properties / expiration_date / description
        Previous value: -"Expiration date"New value: +"JSON request body field — the expiration date in YYYY-MM-DD format"
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Directory resource"
      • changedInput schema / properties / info_received / description
        Previous value: -"Information received (or not)"New value: +"JSON request body field — information received (or not)"
      • changedInput schema / properties / insurance_sets / description
        Previous value: -"Insurance Sets"New value: +"JSON request body field — the insurance sets for this Directory operation"
      • changedInput schema / properties / insurance_type / description
        Previous value: -"Insurance type"New value: +"JSON request body field — the insurance type for this Directory operation"
      • changedInput schema / properties / limit / description
        Previous value: -"Limit"New value: +"JSON request body field — the limit for this Directory operation"
      • changedInput schema / properties / name / description
        Previous value: -"Provider name"New value: +"JSON request body field — provider name"
      • changedInput schema / properties / notes / description
        Previous value: -"Notes"New value: +"JSON request body field — the notes for this Directory operation"
      • changedInput schema / properties / origin_data / description
        Previous value: -"Origin data"New value: +"JSON request body field — the origin data for this Directory operation"
      • changedInput schema / properties / origin_id / description
        Previous value: -"Origin ID"New value: +"JSON request body field — unique identifier of the origin"
      • changedInput schema / properties / policy_number / description
        Previous value: -"Policy number"New value: +"JSON request body field — the policy number for this Directory operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / status / description
        Previous value: -"Status"New value: +"JSON request body field — the status for this Directory operation"
      • changedInput schema / properties / vendor_id / description
        Previous value: -"Vendor ID"New value: +"URL path parameter — unique identifier of the vendor"
      • changedInput schema / properties / view / description
        Previous value: -"Extended view of data"New value: +"Query string parameter — extended view of data"
    • Removedupdate_project_vendor_v1_1
    • Addedupdate_project_webhooks_hook
    • Removedupdate_project_webhooks_hook_v2_0
    • Changedupdate_property_damage10 fields changed
      • changedInput schema / properties / affected_company_id / description
        Previous value: -"The ID of the Affected Company"New value: +"JSON request body field — the ID of the Affected Company"
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / description / description
        Previous value: -"Description of event in Rich Text format"New value: +"JSON request body field — description of event in Rich Text format"
      • changedInput schema / properties / estimated_cost_impact / description
        Previous value: -"Estimated cost impact of the record"New value: +"JSON request body field — estimated cost impact of the record"
      • changedInput schema / properties / id / description
        Previous value: -"Property Damage ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / managed_equipment_id / description
        Previous value: -"The ID of the Managed Equipment"New value: +"JSON request body field — the ID of the Managed Equipment"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / responsible_company_id / description
        Previous value: -"The ID of the Responsible Company"New value: +"JSON request body field — the ID of the Responsible Company"
      • changedInput schema / properties / work_activity_id / description
        Previous value: -"The ID of the Work Activity"New value: +"JSON request body field — the ID of the Work Activity"
    • Changedupdate_punch_item5 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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 ..."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Punch Item"New value: +"URL path parameter — iD of the Punch Item"
      • changedInput schema / properties / project_id / description
        Previous 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"
      • changedInput schema / properties / punch_item / description
        Previous value: -"punch_item"New value: +"JSON request body field — the punch item for this Punch List operation"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
    • Changedupdate_punch_item_assignment5 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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[..."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Punch Item Assignment"New value: +"URL path parameter — iD of the Punch Item Assignment"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / punch_item_assignment / description
        Previous value: -"Punch Item Assignment object"New value: +"JSON request body field — punch Item Assignment object"
      • changedInput schema / properties / send_emails / description
        Previous 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."
    • Changedupdate_punch_item_type3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Punch Item Type"New value: +"URL path parameter — iD of the Punch Item Type"
      • changedInput schema / properties / project_id / description
        Previous 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"
      • changedInput schema / properties / punch_item_type / description
        Previous value: -"punch_item_type"New value: +"JSON request body field — the punch item type for this Punch List operation"
    • Removedupdate_punch_item_v1_1
    • Changedupdate_purchase_order_contract5 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / purchase_order_contract / description
        Previous value: -"Purchase Order Contract object"New value: +"JSON request body field — purchase Order Contract object"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
    • Changedupdate_purchase_order_contract_detail_line_item4 fields changed
      • changedInput schema / properties / contract_detail_line_item / description
        Previous value: -"The Detail Line Item object"New value: +"JSON request body field — the Detail Line Item object"
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / purchase_order_contract_id / description
        Previous value: -"Purchase Order Contract ID"New value: +"URL path parameter — purchase Order Contract ID"
    • Changedupdate_purchase_order_contract_line_item4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / line_item / description
        Previous value: -"The Line Item object"New value: +"JSON request body field — the Line Item object"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / purchase_order_contract_id / description
        Previous value: -"Purchase Order Contract ID"New value: +"URL path parameter — purchase Order Contract ID"
    • Changedupdate_purchase_order_contract_subcontractor_sov_status3 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / purchase_order_contract_id / description
        Previous value: -"Purchase Order Contract ID"New value: +"URL path parameter — purchase Order Contract ID"
      • changedInput schema / properties / status / description
        Previous 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..."
    • Changedupdate_quantity_log4 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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."
      • changedInput schema / properties / id / description
        Previous value: -"Quantity Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / quantity_log / description
        Previous value: -"quantity_log"New value: +"JSON request body field — the quantity log for this Daily Log operation"
    • Addedupdate_requisition_compliance_document
    • Removedupdate_requisition_compliance_document_v2_0
    • Changedupdate_requisition_subcontractor_invoice6 fields changed
      • removedInput schema / properties / attachments
        Removed 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"
        -}
      • changedInput schema / properties / commitment_id / description
        Previous value: -"Commitment ID"New value: +"JSON request body field — unique identifier of the commitment"
      • changedInput schema / properties / id / description
        Previous value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the Procore project"
      • changedInput schema / properties / requisition / description
        Previous value: -"Requisition (Subcontractor Invoice)"New value: +"JSON request body field — requisition (Subcontractor Invoice)"
      • addedInput schema / properties / view
        Added 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"
        +}
    • Changedupdate_requisition_subcontractor_invoice_change_order_item9 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Change Order Item ID"New value: +"URL path parameter — change Order Item ID"
      • changedInput schema / properties / materials_presently_stored / description
        Previous 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)"
      • changedInput schema / properties / materials_stored_retainage_currently_retained / description
        Previous 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)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / requisition_id / description
        Previous value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
      • changedInput schema / properties / work_completed_retainage_released_this_period / description
        Previous 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"
      • changedInput schema / properties / work_completed_retainage_retained_this_period / description
        Previous 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)"
      • changedInput schema / properties / work_completed_this_period / description
        Previous value: -"The amount of work completed this period"New value: +"JSON request body field — the amount of work completed this period"
      • changedInput schema / properties / work_completed_this_period_quantity / description
        Previous value: -"Work completed this period quantity (unit accounting only)"New value: +"JSON request body field — work completed this period quantity (unit accounting only)"
    • Changedupdate_requisition_subcontractor_invoice_contract_detail_item9 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Contract Detail Item ID"New value: +"URL path parameter — contract Detail Item ID"
      • changedInput schema / properties / materials_presently_stored / description
        Previous value: -"The amount of materials presently stored"New value: +"JSON request body field — the amount of materials presently stored"
      • changedInput schema / properties / materials_stored_retainage_currently_retained / description
        Previous 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)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / requisition_id / description
        Previous value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
      • changedInput schema / properties / work_completed_retainage_released_this_period / description
        Previous 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"
      • changedInput schema / properties / work_completed_retainage_retained_this_period / description
        Previous 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)"
      • changedInput schema / properties / work_completed_this_period / description
        Previous value: -"The amount of work completed this period"New value: +"JSON request body field — the amount of work completed this period"
      • changedInput schema / properties / work_completed_this_period_quantity / description
        Previous 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)"
    • Changedupdate_requisition_subcontractor_invoice_contract_item9 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Contract Item ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / materials_presently_stored / description
        Previous value: -"The amount of materials presently stored"New value: +"JSON request body field — the amount of materials presently stored"
      • changedInput schema / properties / materials_stored_retainage_currently_retained / description
        Previous 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)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / requisition_id / description
        Previous value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
      • changedInput schema / properties / work_completed_retainage_released_this_period / description
        Previous 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"
      • changedInput schema / properties / work_completed_retainage_retained_this_period / description
        Previous 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)"
      • changedInput schema / properties / work_completed_this_period / description
        Previous value: -"The amount of work completed this period"New value: +"JSON request body field — the amount of work completed this period"
      • changedInput schema / properties / work_completed_this_period_quantity / description
        Previous 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)"
    • Removedupdate_requisition_subcontractor_invoice_v1_1
    • Changedupdate_requisition_subcontractor_invoice_whole_change_order_item11 fields changed
      • changedInput schema / properties / comment / description
        Previous value: -"Comment for the Whole Change Order Item"New value: +"JSON request body field — comment for the Whole Change Order Item"
      • changedInput schema / properties / id / description
        Previous value: -"Whole Change Order Item ID"New value: +"URL path parameter — whole Change Order Item ID"
      • changedInput schema / properties / materials_presently_stored / description
        Previous value: -"The amount of materials presently stored"New value: +"JSON request body field — the amount of materials presently stored"
      • changedInput schema / properties / materials_stored_retainage_currently_retained / description
        Previous value: -"Materials stored retainage amount currently retained"New value: +"JSON request body field — materials stored retainage amount currently retained"
      • changedInput schema / properties / requisition_id / description
        Previous value: -"Requisition (Subcontractor Invoice) ID"New value: +"URL path parameter — requisition (Subcontractor Invoice) ID"
      • changedInput schema / properties / ssr_manual_override / description
        Previous value: -"SSR manual override"New value: +"JSON request body field — the ssr manual override for this Commitments operation"
      • changedInput schema / properties / status / description
        Previous value: -"Status of the Whole Change Order Item"New value: +"JSON request body field — status of the Whole Change Order Item"
      • changedInput schema / properties / work_completed_retainage_released_this_period / description
        Previous 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"
      • changedInput schema / properties / work_completed_retainage_retained_this_period / description
        Previous value: -"Work completed retainage amount retained this period"New value: +"JSON request body field — work completed retainage amount retained this period"
      • changedInput schema / properties / work_completed_this_period / description
        Previous value: -"The amount of work completed this period"New value: +"JSON request body field — the amount of work completed this period"
      • changedInput schema / properties / work_completed_this_period_quantity / description
        Previous value: -"Work completed this period quantity"New value: +"JSON request body field — work completed this period quantity"
    • Removedupdate_resource
    • Addedupdate_resource_project
    • Addedupdate_resource_v1_0
    • Removedupdate_resource_v1_1
    • Changedupdate_rfi29 fields changed
      • changedInput schema / properties / accepted / description
        Previous 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"
      • changedInput schema / properties / assignee_id / description
        Previous 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"
      • changedInput schema / properties / assignee_ids / description
        Previous 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"
      • changedInput schema / properties / ball_in_court_id / description
        Previous 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."
      • changedInput schema / properties / cost_code_id / description
        Previous 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"
      • changedInput schema / properties / cost_impact / description
        Previous value: -"The Cost Impact of the RFI"New value: +"JSON request body field — the Cost Impact of the RFI"
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / custom_textfield_1 / description
        Previous value: -"The Custom Textfield 1 of the RFI"New value: +"JSON request body field — the Custom Textfield 1 of the RFI"
      • changedInput schema / properties / custom_textfield_2 / description
        Previous value: -"The Custom Textfield 2 of the RFI"New value: +"JSON request body field — the Custom Textfield 2 of the RFI"
      • changedInput schema / properties / distribution_ids / description
        Previous 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"
      • changedInput schema / properties / draft / description
        Previous 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)"
      • changedInput schema / properties / drawing_number / description
        Previous value: -"The Drawing Number of the RFI"New value: +"JSON request body field — the Drawing Number of the RFI"
      • changedInput schema / properties / due_date / description
        Previous 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"
      • changedInput schema / properties / id / description
        Previous value: -"RFI ID"New value: +"URL path parameter — unique identifier of the RFI resource"
      • changedInput schema / properties / location_id / description
        Previous value: -"The ID of the Location of the RFI"New value: +"JSON request body field — the ID of the Location of the RFI"
      • changedInput schema / properties / number / description
        Previous 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"
      • changedInput schema / properties / private / description
        Previous value: -"The Private status of the RFI"New value: +"JSON request body field — the Private status of the RFI"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / project_stage_id / description
        Previous 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."
      • changedInput schema / properties / question / description
        Previous value: -"The Question of the RFI"New value: +"JSON request body field — the Question of the RFI"
      • changedInput schema / properties / received_from_login_information_id / description
        Previous 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"
      • changedInput schema / properties / reference / description
        Previous value: -"The Reference of the RFI"New value: +"JSON request body field — the Reference of the RFI"
      • changedInput schema / properties / required_assignee_ids / description
        Previous 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"
      • changedInput schema / properties / responsible_contractor_id / description
        Previous 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"
      • changedInput schema / properties / rfi_manager_id / description
        Previous 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"
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / schedule_impact / description
        Previous value: -"The Schedule Impact of the RFI"New value: +"JSON request body field — the Schedule Impact of the RFI"
      • changedInput schema / properties / specification_section_id / description
        Previous 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"
      • changedInput schema / properties / subject / description
        Previous value: -"The Subject of the RFI"New value: +"JSON request body field — the Subject of the RFI"
    • Changedupdate_rfi_reply4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Reply ID"New value: +"URL path parameter — unique identifier of the RFI resource"
      • changedInput schema / properties / official / description
        Previous value: -"Official Status"New value: +"JSON request body field — official Status"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / rfi_id / description
        Previous value: -"RFI ID"New value: +"URL path parameter — unique identifier of the rfi"
    • Changedupdate_rfq4 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"Contract ID"New value: +"JSON request body field — unique identifier of the contract"
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / rfq / description
        Previous value: -"rfq"New value: +"JSON request body field — the rfq for this Commitments operation"
    • Changedupdate_rfq_quote5 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"Contract ID"New value: +"JSON request body field — unique identifier of the contract"
      • changedInput schema / properties / id / description
        Previous value: -"RFQ Quote ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / rfq_id / description
        Previous value: -"RFQ ID"New value: +"URL path parameter — unique identifier of the rfq"
      • changedInput schema / properties / rfq_quote / description
        Previous value: -"rfq_quote"New value: +"JSON request body field — the rfq quote for this Commitments operation"
    • Changedupdate_rfq_response5 fields changed
      • changedInput schema / properties / contract_id / description
        Previous value: -"Contract ID"New value: +"JSON request body field — unique identifier of the contract"
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / rfq_id / description
        Previous value: -"RFQ ID"New value: +"URL path parameter — unique identifier of the rfq"
      • changedInput schema / properties / rfq_response / description
        Previous value: -"rfq_response"New value: +"JSON request body field — the rfq response for this Commitments operation"
    • Changedupdate_rounding_configuration3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / rule / description
        Previous 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'"
      • changedInput schema / properties / time_increment / description
        Previous 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"
    • Changedupdate_safety_violation_log4 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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[]..."
      • changedInput schema / properties / id / description
        Previous value: -"Safety Violation Log ID"New value: +"URL path parameter — safety Violation Log ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / safety_violation_log / description
        Previous value: -"safety_violation_log"New value: +"JSON request body field — safety_violation_log"
    • Changedupdate_schedule_integration_type2 fields changed
      • changedInput schema / properties / project_id / description
        Previous 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"
      • changedInput schema / properties / schedule_type / description
        Previous value: -"Schedule Type object"New value: +"JSON request body field — schedule Type object"
    • Changedupdate_schedule_metadata2 fields changed
      • changedInput schema / properties / project_id / description
        Previous 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"
      • changedInput schema / properties / type / description
        Previous value: -"Schedule Type object"New value: +"JSON request body field — schedule Type object"
    • Addedupdate_specification_area
    • Removedupdate_specification_area_v2_1
    • Addedupdate_specification_configurations
    • Removedupdate_specification_configurations_v2_1
    • Addedupdate_stamp
    • Removedupdate_stamp_v2_0
    • Changedupdate_standard_cost_code5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company"
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource"
      • changedInput schema / properties / standard_cost_code / description
        Previous value: -"standard_cost_code"New value: +"JSON request body field — the standard cost code for this Work Breakdown Structure operation"
      • changedInput schema / properties / standard_cost_code_list_id / description
        Previous value: -"Standard Cost Code List ID"New value: +"JSON request body field — standard Cost Code List ID"
      • changedInput schema / properties / view / description
        Previous 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..."
    • Changedupdate_standard_cost_code_list3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Company ID"New value: +"JSON request body field — unique identifier for the Procore company"
      • changedInput schema / properties / id / description
        Previous value: -"Unique identifier for the Standard Cost Code"New value: +"URL path parameter — unique identifier for the Standard Cost Code"
      • changedInput schema / properties / standard_cost_code_list / description
        Previous value: -"Standard Cost Code List Updates"New value: +"JSON request body field — standard Cost Code List Updates"
    • Addedupdate_status_of_equipment_company
    • Removedupdate_status_of_equipment_company_v2_1
    • Addedupdate_status_of_equipment_project
    • Removedupdate_status_of_equipment_project_v2_1
    • Changedupdate_sub_job3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Work Breakdown Structure resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / sub_job / description
        Previous value: -"sub_job"New value: +"JSON request body field — the sub job for this Work Breakdown Structure operation"
    • Changedupdate_subcategory_name5 fields changed
      • changedInput schema / properties / category_id / description
        Previous value: -"Unique identifier for the Category."New value: +"URL path parameter — unique identifier for the Category."
      • changedInput schema / properties / company_id / description
        Previous 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..."
      • changedInput schema / properties / name / description
        Previous value: -"The new name for the Subcategory."New value: +"JSON request body field — the new name for the Subcategory."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project"New value: +"URL path parameter — unique identifier for the project"
      • changedInput schema / properties / subcategory_id / description
        Previous value: -"Unique identifier for the Subcategory."New value: +"URL path parameter — unique identifier for the Subcategory."
    • Changedupdate_submittal32 fields changed
      • changedInput schema / properties / actual_delivery_date / description
        Previous 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"
      • changedInput schema / properties / attachments / description
        Previous 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."
      • changedInput schema / properties / confirmed_delivery_date / description
        Previous 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"
      • changedInput schema / properties / cost_code_id / description
        Previous 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"
      • changedInput schema / properties / custom_textarea_1 / description
        Previous 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"
      • changedInput schema / properties / custom_textfield_1 / description
        Previous 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"
      • changedInput schema / properties / description / description
        Previous value: -"The Description of the Submittal"New value: +"JSON request body field — the Description of the Submittal"
      • changedInput schema / properties / design_team_review_time / description
        Previous 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"
      • changedInput schema / properties / distribution_member_ids / description
        Previous 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"
      • changedInput schema / properties / due_date / description
        Previous 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"
      • changedInput schema / properties / id / description
        Previous value: -"Submittal ID"New value: +"URL path parameter — unique identifier of the Submittals resource"
      • changedInput schema / properties / internal_review_time / description
        Previous 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"
      • changedInput schema / properties / issue_date / description
        Previous 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"
      • changedInput schema / properties / lead_time / description
        Previous 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"
      • changedInput schema / properties / location_id / description
        Previous value: -"The Location of the Submittal"New value: +"JSON request body field — the Location of the Submittal"
      • changedInput schema / properties / number / description
        Previous value: -"The Number of the Submittal"New value: +"JSON request body field — the Number of the Submittal"
      • changedInput schema / properties / private / description
        Previous value: -"Whether the Submittal is Private or not"New value: +"JSON request body field — whether the Submittal is Private or not"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / prostore_file_ids / description
        Previous 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."
      • changedInput schema / properties / received_date / description
        Previous 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"
      • changedInput schema / properties / received_from_id / description
        Previous value: -"The Received From of the Submittal"New value: +"JSON request body field — the Received From of the Submittal"
      • changedInput schema / properties / required_on_site_date / description
        Previous 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"
      • changedInput schema / properties / responsible_contractor_id / description
        Previous value: -"The Responsible Contractor of the Submittal"New value: +"JSON request body field — the Responsible Contractor of the Submittal"
      • changedInput schema / properties / revision / description
        Previous value: -"The Revision of the Submittal"New value: +"JSON request body field — the Revision of the Submittal"
      • changedInput schema / properties / scheduled_task_id / description
        Previous 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"
      • changedInput schema / properties / scheduled_task_key / description
        Previous 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..."
      • changedInput schema / properties / send_emails / description
        Previous 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)"
      • changedInput schema / properties / source_submittal_log_id / description
        Previous 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."
      • changedInput schema / properties / specification_section_id / description
        Previous 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"
      • changedInput schema / properties / status_id / description
        Previous 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"
      • changedInput schema / properties / sub_job_id / description
        Previous 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"
      • changedInput schema / properties / submit_by / description
        Previous 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"
    • Changedupdate_submittal_approver13 fields changed
      • changedInput schema / properties / associated_attachments / description
        Previous 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."
      • changedInput schema / properties / attachment_ids / description
        Previous 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."
      • changedInput schema / properties / attachments_to_upload / description
        Previous 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..."
      • changedInput schema / properties / comment / description
        Previous value: -"comment"New value: +"JSON request body field — the comment for this Submittals operation"
      • changedInput schema / properties / forward_to / description
        Previous 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"
      • changedInput schema / properties / id / description
        Previous value: -"Submittal Approver ID"New value: +"URL path parameter — submittal Approver ID"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / returned_date / description
        Previous value: -"Parameter is only available to admins."New value: +"JSON request body field — parameter is only available to admins."
      • changedInput schema / properties / send_emails / description
        Previous 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)"
      • changedInput schema / properties / sent_date / description
        Previous value: -"Parameter is only available to admins."New value: +"JSON request body field — parameter is only available to admins."
      • changedInput schema / properties / submittal_id / description
        Previous value: -"Submittal ID"New value: +"Query string parameter — unique identifier of the submittal"
      • changedInput schema / properties / submittal_response_id / description
        Previous value: -"submittal_response_id"New value: +"JSON request body field — submittal_response_id"
      • changedInput schema / properties / upload_ids / description
        Previous value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
    • Removedupdate_submittal_v1_1
    • Changedupdate_task3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the task"New value: +"URL path parameter — unique identifier of the Schedule (Legacy) resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"ID of the project this task belongs to."New value: +"JSON request body field — iD of the project this task belongs to."
      • changedInput schema / properties / task / description
        Previous value: -"Task object."New value: +"JSON request body field — task object."
    • Changedupdate_task_item20 fields changed
      • changedInput schema / properties / assigned_id / description
        Previous value: -"Assignee ID"New value: +"JSON request body field — unique identifier of the assigned"
      • changedInput schema / properties / assignee_ids / description
        Previous value: -"Assignee IDs"New value: +"JSON request body field — array of assignee identifiers"
      • changedInput schema / properties / attachments / description
        Previous 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."
      • changedInput schema / properties / description / description
        Previous value: -"Description"New value: +"JSON request body field — the description for this Tasks operation"
      • changedInput schema / properties / distribution_member_ids / description
        Previous value: -"Distribution Member IDs"New value: +"JSON request body field — distribution Member IDs"
      • changedInput schema / properties / document_management_document_revision_ids / description
        Previous value: -"PDM document to attach to the response"New value: +"JSON request body field — pDM document to attach to the response"
      • changedInput schema / properties / drawing_revision_ids / description
        Previous value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response"
      • changedInput schema / properties / due_date / description
        Previous value: -"Date and time due"New value: +"JSON request body field — due date in YYYY-MM-DD format"
      • changedInput schema / properties / file_version_ids / description
        Previous value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response"
      • changedInput schema / properties / form_ids / description
        Previous value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response"
      • changedInput schema / properties / id / description
        Previous value: -"Task Item ID"New value: +"URL path parameter — unique identifier of the Tasks resource"
      • changedInput schema / properties / image_ids / description
        Previous value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response"
      • changedInput schema / properties / number / description
        Previous value: -"Number"New value: +"JSON request body field — the number for this Tasks operation"
      • changedInput schema / properties / private / description
        Previous value: -"Privacy flag"New value: +"JSON request body field — privacy flag"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
      • changedInput schema / properties / prostore_file_ids / description
        Previous value: -"Prostore File IDs"New value: +"JSON request body field — array of prostore file identifiers"
      • changedInput schema / properties / status / description
        Previous value: -"Status"New value: +"JSON request body field — the status for this Tasks operation"
      • changedInput schema / properties / task_item_category_id / description
        Previous 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."
      • changedInput schema / properties / title / description
        Previous value: -"Title"New value: +"JSON request body field — the title for this Tasks operation"
      • changedInput schema / properties / upload_ids / description
        Previous value: -"Uploads to attach to the response"New value: +"JSON request body field — uploads to attach to the response"
    • Changedupdate_tax_code9 fields changed
      • changedInput schema / properties / archived / description
        Previous 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"
      • changedInput schema / properties / code / description
        Previous value: -"The Tax Code"New value: +"JSON request body field — the Tax Code"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / default_tax_code / description
        Previous 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"
      • changedInput schema / properties / description / description
        Previous value: -"The Description of the Tax Code"New value: +"JSON request body field — the Description of the Tax Code"
      • changedInput schema / properties / id / description
        Previous value: -"The Tax Code ID"New value: +"URL path parameter — unique identifier of the Tax resource"
      • changedInput schema / properties / origin_data / description
        Previous 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."
      • changedInput schema / properties / origin_id / description
        Previous value: -"The Third-party ID of the Tax Code"New value: +"JSON request body field — the Third-party ID of the Tax Code"
      • changedInput schema / properties / rate1 / description
        Previous value: -"Rate to apply for first Tax Type"New value: +"JSON request body field — rate to apply for first Tax Type"
    • Changedupdate_tax_type6 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"Query string parameter — unique identifier for the company."
      • changedInput schema / properties / description / description
        Previous value: -"The Description of the Tax Type"New value: +"JSON request body field — the Description of the Tax Type"
      • changedInput schema / properties / id / description
        Previous value: -"The Tax Type ID"New value: +"URL path parameter — unique identifier of the Tax resource"
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Tax Type"New value: +"JSON request body field — the Name of the Tax Type"
      • changedInput schema / properties / origin_data / description
        Previous 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."
      • changedInput schema / properties / origin_id / description
        Previous value: -"The Third-party ID of the Tax Type"New value: +"JSON request body field — the Third-party ID of the Tax Type"
    • Addedupdate_the_change_event_settings_for_the_project
    • Removedupdate_the_change_event_settings_for_the_project_v2_0
    • Changedupdate_the_compliance_information_for_a_purchase_order_contract6 fields changed
      • changedInput schema / properties / compliance_notes / description
        Previous value: -"compliance_notes"New value: +"JSON request body field — the compliance notes for this Commitments operation"
      • changedInput schema / properties / compliance_status / description
        Previous value: -"compliance_status"New value: +"JSON request body field — the compliance status for this Commitments operation"
      • changedInput schema / properties / contract_id / description
        Previous value: -"identifier for the work order contract"New value: +"URL path parameter — identifier for the work order contract"
      • changedInput schema / properties / insurance_notes / description
        Previous value: -"insurance_notes"New value: +"JSON request body field — the insurance notes for this Commitments operation"
      • changedInput schema / properties / insurance_status / description
        Previous value: -"insurance_status"New value: +"JSON request body field — the insurance status for this Commitments operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedupdate_the_compliance_information_for_a_work_order_contract6 fields changed
      • changedInput schema / properties / compliance_notes / description
        Previous value: -"compliance_notes"New value: +"JSON request body field — the compliance notes for this Commitments operation"
      • changedInput schema / properties / compliance_status / description
        Previous value: -"compliance_status"New value: +"JSON request body field — the compliance status for this Commitments operation"
      • changedInput schema / properties / contract_id / description
        Previous value: -"identifier for the work order contract"New value: +"URL path parameter — identifier for the work order contract"
      • changedInput schema / properties / insurance_notes / description
        Previous value: -"insurance_notes"New value: +"JSON request body field — the insurance notes for this Commitments operation"
      • changedInput schema / properties / insurance_status / description
        Previous value: -"insurance_status"New value: +"JSON request body field — the insurance status for this Commitments operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Addedupdate_the_due_date_for_a_requisition_subcontractor_invoice
    • Removedupdate_the_due_date_for_a_requisition_subcontractor_invoice_v2_0
    • Changedupdate_the_state_of_a_daily_log_header6 fields changed
      • changedInput schema / properties / app_name / description
        Previous 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."
      • changedInput schema / properties / completed / description
        Previous value: -"Set the completion status for the day"New value: +"JSON request body field — set the completion status for the day"
      • changedInput schema / properties / distributed / description
        Previous value: -"Distribute the Daily Log for the day"New value: +"JSON request body field — distribute the Daily Log for the day"
      • changedInput schema / properties / id / description
        Previous value: -"The id of the requested Daily Log Header"New value: +"Query string parameter — the id of the requested Daily Log Header"
      • changedInput schema / properties / log_date / description
        Previous value: -"The log date for the requested Daily Log Header"New value: +"Query string parameter — the log date for the requested Daily Log Header"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedupdate_time_and_material_timecard8 fields changed
      • changedInput schema / properties / hours_worked / description
        Previous value: -"Total hours worked"New value: +"JSON request body field — total hours worked"
      • changedInput schema / properties / id / description
        Previous 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"
      • changedInput schema / properties / login_information_id / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / time_and_material_entry_id / description
        Previous 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"
      • changedInput schema / properties / timecard_time_type_id / description
        Previous 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"
      • changedInput schema / properties / work_classification_id / description
        Previous value: -"ID of the worker's work classification"New value: +"JSON request body field — iD of the worker's work classification"
    • Changedupdate_timecard_entries3 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / timecard_entries / description
        Previous value: -"Timesheet object"New value: +"JSON request body field — timesheet object"
      • changedInput schema / properties / timesheet_id / description
        Previous value: -"ID of Timesheet"New value: +"JSON request body field — unique identifier of the timesheet"
    • Changedupdate_timecard_entry3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the timecard entry"New value: +"URL path parameter — iD of the timecard entry"
      • changedInput schema / properties / project_id / description
        Previous 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"
      • changedInput schema / properties / timecard_entry / description
        Previous value: -"Timecard Entry object"New value: +"JSON request body field — timecard Entry object"
    • Changedupdate_timecard_entry_company4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the timecard entry"New value: +"URL path parameter — iD of the timecard entry"
      • changedInput schema / properties / project_id / description
        Previous 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"
      • changedInput schema / properties / timecard_entry / description
        Previous value: -"Timecard Entry object"New value: +"JSON request body field — timecard Entry object"
    • Changedupdate_timecard_entry_project21 fields changed
      • changedInput schema / properties / billable / description
        Previous 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."
      • changedInput schema / properties / clock_in_id / description
        Previous 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."
      • changedInput schema / properties / clock_out_id / description
        Previous 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."
      • changedInput schema / properties / cost_code_id / description
        Previous 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."
      • changedInput schema / properties / daily_log_segment_id / description
        Previous value: -"Daily Log Segment ID"New value: +"JSON request body field — daily Log Segment ID"
      • changedInput schema / properties / date / description
        Previous 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."
      • changedInput schema / properties / datetime / description
        Previous 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."
      • changedInput schema / properties / description / description
        Previous value: -"The description of the timecard entry."New value: +"JSON request body field — the description of the timecard entry."
      • changedInput schema / properties / hours / description
        Previous 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."
      • changedInput schema / properties / id / description
        Previous value: -"ID of the timecard entry"New value: +"URL path parameter — iD of the timecard entry"
      • changedInput schema / properties / line_item_type_id / description
        Previous 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."
      • changedInput schema / properties / login_information_id / description
        Previous 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."
      • changedInput schema / properties / lunch_time / description
        Previous 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."
      • changedInput schema / properties / origin_data / description
        Previous value: -"The value of the related external data."New value: +"JSON request body field — the value of the related external data."
      • changedInput schema / properties / origin_id / description
        Previous value: -"The ID of the related external data."New value: +"JSON request body field — the ID of the related external data."
      • changedInput schema / properties / party_id / description
        Previous 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"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / time_in / description
        Previous 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."
      • changedInput schema / properties / time_out / description
        Previous 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."
      • changedInput schema / properties / timecard_time_type_id / description
        Previous 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."
      • changedInput schema / properties / timesheet_id / description
        Previous 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."
    • Changedupdate_timecard_entry_signature_project3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"The ID of the timecard entry."New value: +"URL path parameter — the ID of the timecard entry."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / signature_id / description
        Previous 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."
    • Changedupdate_timecard_time_type3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Id of the Timecard Time Type"New value: +"URL path parameter — id of the Timecard Time Type"
      • changedInput schema / properties / pay_rate / description
        Previous value: -"The pay_rate of the Timecard Time Type"New value: +"JSON request body field — the pay_rate of the Timecard Time Type"
    • Addedupdate_timeline_event
    • Removedupdate_timeline_event_v2_0
    • Removedupdate_timesheet
    • Addedupdate_timesheet_project
    • Addedupdate_timesheet_project_v1_0
    • Changedupdate_timesheet_status2 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / timesheets / description
        Previous value: -"array of Timesheet objects"New value: +"JSON request body field — array of Timesheet objects"
    • Changedupdate_timesheet_to_budget_configuration4 fields changed
      • changedInput schema / properties / apply_to_existing / description
        Previous 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)"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / erp_default_line_item_type_id / description
        Previous value: -"ERP Line Item Type ID"New value: +"JSON request body field — eRP Line Item Type ID"
      • changedInput schema / properties / line_item_type_id / description
        Previous value: -"Line Item Type ID"New value: +"JSON request body field — unique identifier of the line item type"
    • Removedupdate_timesheet_v1_1
    • Changedupdate_todo3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the todo"New value: +"URL path parameter — unique identifier of the Schedule (Legacy) resource"
      • changedInput schema / properties / project_id / description
        Previous 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"
      • changedInput schema / properties / todo / description
        Previous value: -"ToDo object"New value: +"JSON request body field — toDo object"
    • Changedupdate_unit_of_measure4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Unit of Measure ID"New value: +"URL path parameter — unique identifier of the Units of Measure resource"
      • changedInput schema / properties / name / description
        Previous value: -"Name of the Unit of Measure"New value: +"JSON request body field — name of the Unit of Measure"
      • changedInput schema / properties / uom_category_id / description
        Previous value: -"ID of the Unit of Measure Category"New value: +"JSON request body field — iD of the Unit of Measure Category"
    • Addedupdate_unmanaged_equipment_project
    • Removedupdate_unmanaged_equipment_project_v2_0
    • Changedupdate_user_permission3 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"JSON request body field — unique identifier of the Field Productivity resource"
      • changedInput schema / properties / user_access_level_id / description
        Previous 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"
    • Changedupdate_user_project_roles3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Company Role"New value: +"URL path parameter — iD of the Company Role"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / user_ids / description
        Previous value: -"User IDs to associate with the Project Role"New value: +"JSON request body field — user IDs to associate with the Project Role"
    • Changedupdate_vendor_project_roles3 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID of the Project Role"New value: +"URL path parameter — iD of the Project Role"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / vendor_ids / description
        Previous value: -"Vendor IDs to associate with the Project Role"New value: +"JSON request body field — vendor IDs to associate with the Project Role"
    • Changedupdate_viewpoint_mapping_and_or_model_manager_viewpoint_content18 fields changed
      • changedInput schema / properties / bim_file_id / description
        Previous value: -"Accepted but not applied on this PATCH flow."New value: +"JSON request body field — accepted but not applied on this PATCH flow."
      • changedInput schema / properties / bim_model_uuid / description
        Previous value: -"Accepted but not applied on PATCH."New value: +"JSON request body field — accepted but not applied on PATCH."
      • changedInput schema / properties / bim_view_folder_id / description
        Previous value: -"Accepted but not applied on this PATCH flow."New value: +"JSON request body field — accepted but not applied on this PATCH flow."
      • changedInput schema / properties / camera_data / description
        Previous 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)."
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / coordination_issue_id / description
        Previous value: -"Coordination Issue ID"New value: +"URL path parameter — coordination Issue ID"
      • changedInput schema / properties / name / description
        Previous 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."
      • changedInput schema / properties / payload / description
        Previous value: -"payload"New value: +"JSON request body field — the payload for this Coordination Issues operation"
      • changedInput schema / properties / position / description
        Previous 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."
      • changedInput schema / properties / primary / description
        Previous 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."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / redlines_data / description
        Previous 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`."
      • changedInput schema / properties / render_mode / description
        Previous value: -"render_mode"New value: +"JSON request body field — the render mode for this Coordination Issues operation"
      • changedInput schema / properties / scene_id / description
        Previous 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)."
      • changedInput schema / properties / sections_data / description
        Previous 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`."
      • changedInput schema / properties / snapshot_upload_uuid / description
        Previous value: -"Accepted but not applied on this PATCH flow."New value: +"JSON request body field — accepted but not applied on this PATCH flow."
      • changedInput schema / properties / viewpoint_id / description
        Previous 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"
      • changedInput schema / properties / visibility / description
        Previous value: -"visibility"New value: +"JSON request body field — the visibility for this Coordination Issues operation"
    • Changedupdate_visitor_log4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Visitor Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / visitor_log / description
        Previous value: -"visitor_log"New value: +"JSON request body field — the visitor log for this Daily Log operation"
    • Changedupdate_waste_log4 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / id / description
        Previous value: -"Waste Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / waste_log / description
        Previous value: -"waste_log"New value: +"JSON request body field — the waste log for this Daily Log operation"
    • Addedupdate_wbs_attribute_item
    • Removedupdate_wbs_attribute_item_v2_0
    • Addedupdate_wbs_attributes
    • Removedupdate_wbs_attributes_v2_0
    • Removedupdate_weather_log
    • Addedupdate_weather_log_project
    • Addedupdate_weather_log_project_v1_0
    • Removedupdate_weather_log_v1_1
    • Changedupdate_webhooks_hook1 field changed
      • changedInput schema / properties / id / description
        Previous value: -"Webhooks Hook ID"New value: +"URL path parameter — unique identifier of the Webhooks resource"
    • Changedupdate_witness_statement13 fields changed
      • changedInput schema / properties / custom_field_%{custom_field_definition_id} / description
        Previous 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 ..."
      • changedInput schema / properties / date_received / description
        Previous 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."
      • changedInput schema / properties / drawing_revision_ids / description
        Previous value: -"Drawing Revisions to attach to the response"New value: +"JSON request body field — drawing Revisions to attach to the response"
      • changedInput schema / properties / file_version_ids / description
        Previous value: -"File Versions to attach to the response"New value: +"JSON request body field — file Versions to attach to the response"
      • changedInput schema / properties / form_ids / description
        Previous value: -"Forms to attach to the response"New value: +"JSON request body field — forms to attach to the response"
      • changedInput schema / properties / id / description
        Previous value: -"Witness Statement ID"New value: +"URL path parameter — witness Statement ID"
      • changedInput schema / properties / image_ids / description
        Previous value: -"Images to attach to the response"New value: +"JSON request body field — images to attach to the response"
      • changedInput schema / properties / incident_id / description
        Previous value: -"Incident ID"New value: +"Query string parameter — unique identifier of the incident"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / recording / description
        Previous value: -"recording"New value: +"JSON request body field — the recording for this Incidents operation"
      • changedInput schema / properties / statement / description
        Previous 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."
      • changedInput schema / properties / upload_uuids / description
        Previous value: -"Array of uploaded file UUIDs."New value: +"JSON request body field — array of uploaded file UUIDs."
      • changedInput schema / properties / witness_id / description
        Previous value: -"Witness ID"New value: +"JSON request body field — unique identifier of the witness"
    • Changedupdate_work_activity4 fields changed
      • changedInput schema / properties / active / description
        Previous 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"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / id / description
        Previous value: -"Work Activity ID"New value: +"URL path parameter — unique identifier of the Incidents resource"
      • changedInput schema / properties / name / description
        Previous value: -"The Name of the Work Activity"New value: +"JSON request body field — the Name of the Work Activity"
    • Changedupdate_work_log4 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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..."
      • changedInput schema / properties / id / description
        Previous value: -"Work Log ID"New value: +"URL path parameter — unique identifier of the Daily Log resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / work_log / description
        Previous value: -"work_log"New value: +"JSON request body field — the work log for this Daily Log operation"
    • Changedupdate_work_order_contract5 fields changed
      • changedInput schema / properties / attachments / description
        Previous 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[]`..."
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / run_configurable_validations / description
        Previous 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."
      • changedInput schema / properties / work_order_contract / description
        Previous value: -"Work Order Contract object"New value: +"JSON request body field — work Order Contract object"
    • Changedupdate_work_order_contract_detail_line_item4 fields changed
      • changedInput schema / properties / contract_detail_line_item / description
        Previous value: -"The Detail Line Item object"New value: +"JSON request body field — the Detail Line Item object"
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / work_order_contract_id / description
        Previous value: -"Work Order Contract ID"New value: +"URL path parameter — work Order Contract ID"
    • Changedupdate_work_order_contract_line_item4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"ID"New value: +"URL path parameter — unique identifier of the Commitments resource"
      • changedInput schema / properties / line_item / description
        Previous value: -"The Line Item object"New value: +"JSON request body field — the Line Item object"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / work_order_contract_id / description
        Previous value: -"Work Order Contract ID"New value: +"URL path parameter — work Order Contract ID"
    • Changedupdate_work_order_contract_subcontractor_sov_status3 fields changed
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"JSON request body field — unique identifier for the project."
      • changedInput schema / properties / status / description
        Previous 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..."
      • changedInput schema / properties / work_order_contract_id / description
        Previous value: -"Work Order Contract ID"New value: +"URL path parameter — work Order Contract ID"
    • Addedupdate_workflow_preset_company
    • Removedupdate_workflow_preset_company_v2_0
    • Addedupdate_workflow_preset_project
    • Removedupdate_workflow_preset_project_v2_0
    • Changedupdates_a_company_inspection_template_item_evidence4 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / observation / description
        Previous value: -"observation"New value: +"JSON request body field — the observation for this Inspections operation"
      • changedInput schema / properties / photo / description
        Previous value: -"photo"New value: +"JSON request body field — the photo for this Inspections operation"
      • changedInput schema / properties / template_item_id / description
        Previous value: -"Unique identifier for the inspection template item."New value: +"URL path parameter — unique identifier for the inspection template item."
    • Changedupdates_a_project_inspection_template_item_evidence5 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / observation / description
        Previous value: -"observation"New value: +"JSON request body field — the observation for this Inspections operation"
      • changedInput schema / properties / photo / description
        Previous value: -"photo"New value: +"JSON request body field — the photo for this Inspections operation"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
      • changedInput schema / properties / template_item_id / description
        Previous value: -"Unique identifier for the inspection template item."New value: +"URL path parameter — unique identifier for the inspection template item."
    • Changedupload_schedule_file_v1_02 fields changed
      • changedInput schema / properties / file / description
        Previous 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 ..."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedupload_schedule_file_v1_0_22 fields changed
      • changedInput schema / properties / file / description
        Previous 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 ..."
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"Query string parameter — unique identifier for the project."
    • Changedvalidate_custom_fields_values_with_configurable_field_set7 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / custom_field_47393 / description
        Previous 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"
      • changedInput schema / properties / custom_field_58238 / description
        Previous 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"
      • changedInput schema / properties / id / description
        Previous value: -"Configurable Field Set ID"New value: +"URL path parameter — configurable Field Set ID"
      • changedInput schema / properties / number / description
        Previous 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\""
      • changedInput schema / properties / project_id / description
        Previous value: -"Project ID"New value: +"Query string parameter — unique identifier for the Procore project"
      • changedInput schema / properties / title / description
        Previous 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\""
    • Changedvalidate_disbursement8 fields changed
      • changedInput schema / properties / amount / description
        Previous 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"
      • changedInput schema / properties / bankAccountId / description
        Previous value: -"UUID of the bank account"New value: +"JSON request body field — uUID of the bank account"
      • changedInput schema / properties / bankAccountType / description
        Previous value: -"Type of the bank account"New value: +"JSON request body field — type of the bank account"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / name / description
        Previous value: -"Name of the disbursement"New value: +"JSON request body field — name of the disbursement"
      • changedInput schema / properties / payouts / description
        Previous 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."
      • changedInput schema / properties / status / description
        Previous value: -"Status of the disbursement"New value: +"JSON request body field — status of the disbursement"
      • changedInput schema / properties / workflowsConfigured / description
        Previous value: -"Whether workflows template is configured or not"New value: +"JSON request body field — whether workflows template is configured or not"
    • Changedvalidate_existing_disbursement2 fields changed
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / disbursement_id / description
        Previous value: -"Unique identifier for the disbursement."New value: +"URL path parameter — unique identifier for the disbursement."
    • Changedview_an_action_plan_test_record4 fields changed
      • changedInput schema / properties / id / description
        Previous value: -"Action Plan Test Record ID"New value: +"URL path parameter — action Plan Test Record ID"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
    • Changedview_bid_form_company5 fields changed
      • changedInput schema / properties / bid_form_id / description
        Previous value: -"Bid Form ID"New value: +"URL path parameter — unique identifier of the bid form"
      • changedInput schema / properties / bid_id / description
        Previous value: -"Bid ID"New value: +"URL path parameter — unique identifier of the bid"
      • changedInput schema / properties / company_id / description
        Previous value: -"Unique identifier for the company."New value: +"URL path parameter — unique identifier for the company."
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
    • Changedview_bid_form_project5 fields changed
      • changedInput schema / properties / bid_form_id / description
        Previous value: -"Bid Form ID"New value: +"URL path parameter — unique identifier of the bid form"
      • changedInput schema / properties / bid_package_id / description
        Previous value: -"Bid Package ID"New value: +"URL path parameter — unique identifier of the bid package"
      • changedInput schema / properties / page / description
        Previous value: -"Page number for pagination"New value: +"Page number for paginated results (default: 1)"
      • changedInput schema / properties / per_page / description
        Previous value: -"Items per page (max 100)"New value: +"Number of items per page (default: 100, max: 100)"
      • changedInput schema / properties / project_id / description
        Previous value: -"Unique identifier for the project."New value: +"URL path parameter — unique identifier for the project."
  5. 2643 tool updatesv0.1.0
    • First observedadd_a_new_markup
    • First observedadd_additional_assignees_to_a_workflow_instance_company_v2_0
    • First observedadd_additional_assignees_to_a_workflow_instance_project_v2_0
    • First observedadd_alternative_response_set_to_project_checklist_template
    • First observedadd_an_existing_response_to_an_item_response_set
    • First observedadd_attachments_to_punch_item
    • First observedadd_attachments_to_punch_item_v1_1
    • First observedadd_category_to_project
    • First observedadd_change_order_package_to_a_requisition_subcontractor_invoice
    • First observedadd_checklist_template_alternative_response_set
    • First observedadd_company_checklist_template_alternative_response_set
    • First observedadd_company_user_to_project
    • First observedadd_person_to_a_group
    • First observedadd_role_to_project
    • First observedadd_segment_to_the_project_pattern
    • First observedadd_subcategory_to_category
    • First observedadd_tag_instance_to_person
    • First observedadd_tag_instance_to_project
    • First observedadd_to_project
    • First observedadd_to_project_v1_1
    • First observedadd_values_to_custom_field
    • First observedadd_wage_override
    • First observedapprove_payments_beneficiary
    • First observedassign_the_attribute_items_to_the_wbs_codes_v2_0
    • First observedassociate_equipment_with_project_company_v2_0
    • First observedassociate_equipment_with_project_project_v2_0
    • First observedbatch_get_model_manager_viewpoints_by_uuid_rest_v2_0_issue
    • First observedbatch_update_correspondence_type_items
    • First observedbatch_update_generic_tool_items
    • First observedbatch_update_rfis
    • First observedbid_level_across_a_bid_form
    • First observedbid_level_across_a_bid_form_v1_1
    • First observedbulk_activation_v2_0
    • First observedbulk_add_company_users_to_projects_v1_1
    • First observedbulk_add_company_users_to_projects_v1_2
    • First observedbulk_add_company_users_to_projects_v1_3
    • First observedbulk_add_company_users_to_projects_v2_0
    • First observedbulk_create
    • First observedbulk_create_action_plan_item_assignees
    • First observedbulk_create_action_plan_references
    • First observedbulk_create_action_plan_template_approvers
    • First observedbulk_create_action_plan_template_item_assignees_company
    • First observedbulk_create_action_plan_template_item_assignees_project
    • First observedbulk_create_action_plan_template_receivers
    • First observedbulk_create_action_plan_template_references
    • First observedbulk_create_action_plan_template_test_record_requests_company
    • First observedbulk_create_action_plan_template_test_record_requests_project
    • First observedbulk_create_action_plan_test_record_requests
    • First observedbulk_create_action_plans_for_locations_v2_0
    • First observedbulk_create_actual_production_quantities
    • First observedbulk_create_checklist_inspections_item_attachments
    • First observedbulk_create_company_webhooks_triggers_v2_0
    • First observedbulk_create_custom_field_lov_entries
    • First observedbulk_create_materials
    • First observedbulk_create_plan_template_references
    • First observedbulk_create_project_memberships
    • First observedbulk_create_project_webhooks_triggers_v2_0
    • First observedbulk_create_time_and_material_equipment_logs
    • First observedbulk_create_time_and_material_timecards
    • First observedbulk_create_timecard_entries
    • First observedbulk_create_triggers
    • First observedbulk_create_update_ui_flags
    • First observedbulk_create_v1_1
    • First observedbulk_create_wbs_codes
    • First observedbulk_create_workflow_instances_company_public_v2_0
    • First observedbulk_create_workflow_instances_project_public_v2_0
    • First observedbulk_deactivation_v2_0
    • First observedbulk_delete_bim_model_revision_viewpoints
    • First observedbulk_delete_company_segment_items
    • First observedbulk_delete_company_webhooks_triggers_v2_0
    • First observedbulk_delete_managed_equipment
    • First observedbulk_delete_managed_equipment_attachment
    • First observedbulk_delete_managed_equipment_maintenance_log_attachments
    • First observedbulk_delete_materials
    • First observedbulk_delete_payouts_by_invoice
    • First observedbulk_delete_procore_item_associations
    • First observedbulk_delete_project_segment_items
    • First observedbulk_delete_project_tasks_v2_0_company
    • First observedbulk_delete_project_tasks_v2_0_company_v2_0
    • First observedbulk_delete_project_webhooks_triggers_v2_0
    • First observedbulk_delete_time_and_material_attachments
    • First observedbulk_delete_time_and_material_equipment_logs
    • First observedbulk_delete_time_and_material_timecards
    • First observedbulk_delete_triggers
    • First observedbulk_destroy_action_plan_template_approvers
    • First observedbulk_destroy_action_plan_template_receivers
    • First observedbulk_destroy_actual_production_quantities
    • First observedbulk_remove_company_users_from_projects_v1_1
    • First observedbulk_remove_company_users_from_projects_v1_2
    • First observedbulk_remove_company_users_from_projects_v1_3
    • First observedbulk_remove_company_users_from_projects_v2_0
    • First observedbulk_remove_current_project_project_v2_0
    • First observedbulk_remove_current_project_project_v2_1
    • First observedbulk_remove_project_details_for_company_users_on_projects_v2_0
    • First observedbulk_remove_project_memberships_v2_0
    • First observedbulk_retrieve_managed_equipment
    • First observedbulk_update_action_plan_item
    • First observedbulk_update_action_plan_item_assignees
    • First observedbulk_update_action_plan_template_item_assignees
    • First observedbulk_update_action_plan_template_item_company
    • First observedbulk_update_action_plan_template_item_project
    • First observedbulk_update_actual_production_quantities
    • First observedbulk_update_affliction_types
    • First observedbulk_update_company_action_plan_template_item_assignees
    • First observedbulk_update_company_observation_templates
    • First observedbulk_update_contributing_behaviors
    • First observedbulk_update_contributing_conditions
    • First observedbulk_update_current_project_company_v2_0
    • First observedbulk_update_current_project_company_v2_1
    • First observedbulk_update_current_project_project_v2_0
    • First observedbulk_update_current_project_project_v2_1
    • First observedbulk_update_equipment_company_v2_1
    • First observedbulk_update_harm_sources
    • First observedbulk_update_hazards
    • First observedbulk_update_incident_action_types
    • First observedbulk_update_links_v2_0
    • First observedbulk_update_managed_equipment_models
    • First observedbulk_update_managed_equipment_types
    • First observedbulk_update_materials
    • First observedbulk_update_project_details_for_company_users_on_projects_v2_0
    • First observedbulk_update_project_observation_templates
    • First observedbulk_update_status_of_equipment_company_v2_1
    • First observedbulk_update_status_of_equipment_project_v2_1
    • First observedbulk_update_subcontractor_invoice_requisitions_items
    • First observedbulk_update_time_and_material_equipment_logs
    • First observedbulk_update_time_and_material_timecards
    • First observedbulk_update_timecard_entries
    • First observedbulk_update_wbs_codes
    • First observedbulk_update_work_activities
    • First observedbulk_updates_for_daily_logs
    • First observedcalculate_number_of_inspections_to_create_based_on_schedule
    • First observedcalculate_when_the_first_inspection_of_an_inspection_schedule
    • First observedchange_history
    • First observedcheck_company_zone
    • First observedcheck_csv_export_status_for_commitment_change_order_rows_v2_0
    • First observedcheck_csv_export_status_for_prime_change_order_rows_v2_0
    • First observedcheck_if_number_and_revision_entered_are_available_or
    • First observedcheck_pdf_generation_status_v2_0_project
    • First observedcheck_pdf_generation_status_v2_0_project_v2_0
    • First observedcheck_pdf_generation_status_v2_0_project_v2_0_2
    • First observedcheck_pdf_generation_status_v2_0_project_v2_0_4
    • First observedcheck_pdf_generation_status_v2_0_project_v2_0_5
    • First observedcheck_pdf_generation_status_v2_0_project_v2_0_6
    • First observedchecklist_schedule_assignee_filter_options
    • First observedchecklist_schedule_equipment_filter_options
    • First observedchecklist_schedule_inspection_template_filter_options
    • First observedchecklist_schedule_inspection_type_filter_options
    • First observedchecklist_schedule_location_filter_options
    • First observedclone_bid_board_project_v2_0
    • First observedclone_change_event_v1_1
    • First observedclones_daily_logs_from_one_date_to_another_date
    • First observedclose_and_distribute_a_submittal_log
    • First observedcompany_folder_and_file_index
    • First observedcompany_folder_and_file_index_v2_0
    • First observedconfiguration_of_specifications_tool_v2_0
    • First observedconvert_private_layer_to_public
    • First observedcopy_from_standard_cost_code_list
    • First observedcopy_subset_from_standard_cost_code_list
    • First observedcreate_a_batch_of_bim_levels
    • First observedcreate_a_batch_of_bim_model_revision_plans
    • First observedcreate_a_batch_of_bim_model_revision_viewpoints
    • First observedcreate_a_batch_of_bim_plans
    • First observedcreate_a_batch_of_bim_view_folder_by_path
    • First observedcreate_a_batch_of_bim_viewpoints
    • First observedcreate_a_bid_form
    • First observedcreate_a_bid_form_v1_1
    • First observedcreate_a_bim_viewpoint
    • First observedcreate_a_budget_change
    • First observedcreate_a_budget_lock
    • First observedcreate_a_budget_view_snapshot
    • First observedcreate_a_change_order_change_reason_v2_0
    • First observedcreate_a_checklist_inspection_schedule
    • First observedcreate_a_company_action_plan_type
    • First observedcreate_a_company_wbs_segment
    • First observedcreate_a_compliance_document_project
    • First observedcreate_a_compliance_document_project_v1_0
    • First observedcreate_a_coordination_issue_rest_v2_0_v2_0
    • First observedcreate_a_copy_of_the_action_plan_item_in_the_items_section
    • First observedcreate_a_copy_of_the_action_plan_section_in_the_action_plan_of
    • First observedcreate_a_copy_of_the_action_plan_template_item_in_the_items
    • First observedcreate_a_copy_of_the_action_plan_template_item_in_the_items_2
    • First observedcreate_a_copy_of_the_action_plan_template_section_in_the_company
    • First observedcreate_a_copy_of_the_action_plan_template_section_in_the_project
    • First observedcreate_a_job_title
    • First observedcreate_a_line_item_group_in_the_proposal_v2_0_company
    • First observedcreate_a_line_item_group_in_the_proposal_v2_0_project
    • First observedcreate_a_manual_forecast_line_item
    • First observedcreate_a_manual_hold_for_a_given_invoice
    • First observedcreate_a_model_manager_viewpoint_and_link_it_to_the_issue_rest
    • First observedcreate_a_new_budgeted_production_quantity
    • First observedcreate_a_new_classification
    • First observedcreate_a_new_context
    • First observedcreate_a_new_crew
    • First observedcreate_a_new_equipment
    • First observedcreate_a_new_group
    • First observedcreate_a_new_layer
    • First observedcreate_a_new_maintenance_record_company_v2_0
    • First observedcreate_a_new_maintenance_record_project_v2_0
    • First observedcreate_a_new_time_and_material_entry
    • First observedcreate_a_new_time_and_material_equipment_log
    • First observedcreate_a_new_time_and_material_notification
    • First observedcreate_a_note_in_the_project_v2_0_company
    • First observedcreate_a_note_in_the_project_v2_0_company_v2_0
    • First observedcreate_a_person
    • First observedcreate_a_piece_of_equipment
    • First observedcreate_a_project
    • First observedcreate_a_project_checklist_template_from_a_company_checklist
    • First observedcreate_a_project_logo
    • First observedcreate_a_proposal_in_the_project_v2_0_company
    • First observedcreate_a_proposal_in_the_project_v2_0_company_v2_0
    • First observedcreate_a_resource_request_on_a_project
    • First observedcreate_a_response
    • First observedcreate_a_response_in_the_specified_item_response_set
    • First observedcreate_a_single_group
    • First observedcreate_a_task_item_comment
    • First observedcreate_a_wbs_code
    • First observedcreate_a_workflow_instance_company_v2_0
    • First observedcreate_a_workflow_instance_project_v2_0
    • First observedcreate_accident_log
    • First observedcreate_action
    • First observedcreate_action_plan
    • First observedcreate_action_plan_approver_signature
    • First observedcreate_action_plan_item
    • First observedcreate_action_plan_item_assignee
    • First observedcreate_action_plan_item_assignee_signature
    • First observedcreate_action_plan_receiver_signature
    • First observedcreate_action_plan_reference
    • First observedcreate_action_plan_section
    • First observedcreate_action_plan_template_approver
    • First observedcreate_action_plan_template_receiver
    • First observedcreate_action_plan_test_record
    • First observedcreate_action_plan_test_record_request
    • First observedcreate_action_plan_verification_methods
    • First observedcreate_actual_production_quantity
    • First observedcreate_advanced_export_for_existing_rfi
    • First observedcreate_affliction_type
    • First observedcreate_an_action_plan_from_a_plan_template
    • First observedcreate_an_equipment_make
    • First observedcreate_an_equipment_model
    • First observedcreate_an_equipment_type
    • First observedcreate_an_estimate_line_item_in_the_proposal_v2_0_company
    • First observedcreate_an_estimate_line_item_in_the_proposal_v2_0_project
    • First observedcreate_an_project_equipment_log
    • First observedcreate_and_update_bulk_coordination_issues
    • First observedcreate_app_configuration
    • First observedcreate_app_installation
    • First observedcreate_attachment_project
    • First observedcreate_attachment_project_v1_0
    • First observedcreate_attachment_project_v1_0_2
    • First observedcreate_attachment_project_v1_0_4
    • First observedcreate_attachment_project_v1_0_5
    • First observedcreate_bid
    • First observedcreate_bid_board_project_v2_0
    • First observedcreate_bid_package
    • First observedcreate_billing_period
    • First observedcreate_bim_file
    • First observedcreate_bim_geometry_file_bundle
    • First observedcreate_bim_level
    • First observedcreate_bim_mint_tokens
    • First observedcreate_bim_model
    • First observedcreate_bim_model_revision
    • First observedcreate_bim_model_revision_plan
    • First observedcreate_bim_plan
    • First observedcreate_bim_view_folder
    • First observedcreate_budget_line_item
    • First observedcreate_budget_line_item_v1_1
    • First observedcreate_budget_modification
    • First observedcreate_calendar_item
    • First observedcreate_call_log
    • First observedcreate_catalog_v2_0
    • First observedcreate_change_event
    • First observedcreate_change_event_production_quantity
    • First observedcreate_change_event_v1_1
    • First observedcreate_change_order_package
    • First observedcreate_change_order_request
    • First observedcreate_checklist
    • First observedcreate_checklist_comment
    • First observedcreate_checklist_inspection
    • First observedcreate_checklist_inspection_v1_1
    • First observedcreate_checklist_item_attachment
    • First observedcreate_checklist_item_response
    • First observedcreate_checklist_schedule_attachment
    • First observedcreate_checklist_section
    • First observedcreate_checklist_signature
    • First observedcreate_checklist_signature_request
    • First observedcreate_classification
    • First observedcreate_commitment_change_order
    • First observedcreate_commitment_change_order_batch
    • First observedcreate_commitment_change_order_line_item_v2_0
    • First observedcreate_commitment_contract_line_item_v2_0
    • First observedcreate_commitment_contract_v2_0
    • First observedcreate_communication_tag
    • First observedcreate_company_action_plan_template_item
    • First observedcreate_company_action_plan_template_item_assignee
    • First observedcreate_company_action_plan_template_reference
    • First observedcreate_company_action_plan_template_section
    • First observedcreate_company_action_plan_template_test_record_request
    • First observedcreate_company_action_plan_templates
    • First observedcreate_company_action_plan_templates_v1_1
    • First observedcreate_company_checklist_template
    • First observedcreate_company_checklist_template_section
    • First observedcreate_company_classifications_for_project
    • First observedcreate_company_currency_configuration_v2_0
    • First observedcreate_company_exchange_rates
    • First observedcreate_company_file
    • First observedcreate_company_file_version
    • First observedcreate_company_folder
    • First observedcreate_company_form_template
    • First observedcreate_company_inspection_template_item
    • First observedcreate_company_inspection_template_item_reference
    • First observedcreate_company_insurance
    • First observedcreate_company_level_email
    • First observedcreate_company_level_email_communication
    • First observedcreate_company_office
    • First observedcreate_company_person
    • First observedcreate_company_segment_item
    • First observedcreate_company_tag
    • First observedcreate_company_upload
    • First observedcreate_company_upload_v1_1
    • First observedcreate_company_user_v1_0
    • First observedcreate_company_user_v1_0_2
    • First observedcreate_company_user_v1_1
    • First observedcreate_company_user_v1_2
    • First observedcreate_company_user_v1_3
    • First observedcreate_company_vendor
    • First observedcreate_company_vendor_business_register
    • First observedcreate_company_vendor_insurance
    • First observedcreate_company_webhooks_hook_v2_0
    • First observedcreate_company_webhooks_triggers_v2_0
    • First observedcreate_compliance_document_v2_0
    • First observedcreate_configurable_field_sets
    • First observedcreate_contract_payment
    • First observedcreate_contributing_behavior
    • First observedcreate_contributing_condition
    • First observedcreate_coordination_issue
    • First observedcreate_coordination_issue_assignment
    • First observedcreate_cost_code
    • First observedcreate_cost_item_v2_0
    • First observedcreate_csv_export_for_commitment_change_order_rows_v2_0
    • First observedcreate_csv_export_for_prime_change_order_rows_v2_0
    • First observedcreate_custom_field
    • First observedcreate_daily_construction_report_log
    • First observedcreate_delay_log
    • First observedcreate_delivery_log
    • First observedcreate_department
    • First observedcreate_direct_cost_item
    • First observedcreate_direct_cost_item_v1_1
    • First observedcreate_direct_cost_line_item
    • First observedcreate_document_custom_tag
    • First observedcreate_drawing_area
    • First observedcreate_drawing_area_v1_1
    • First observedcreate_drawing_set
    • First observedcreate_drawing_upload
    • First observedcreate_drawing_upload_v1_1
    • First observedcreate_drawing_v1_1
    • First observedcreate_dumpster_log
    • First observedcreate_early_pay_program
    • First observedcreate_email
    • First observedcreate_email_communication
    • First observedcreate_environmental
    • First observedcreate_equipment
    • First observedcreate_equipment_attachment_company_v2_0
    • First observedcreate_equipment_attachment_project_v2_0
    • First observedcreate_equipment_category
    • First observedcreate_equipment_category_company_v2_0
    • First observedcreate_equipment_category_project_v2_0
    • First observedcreate_equipment_company_v2_0
    • First observedcreate_equipment_company_v2_1
    • First observedcreate_equipment_log_company
    • First observedcreate_equipment_log_project
    • First observedcreate_equipment_maintenance_log
    • First observedcreate_equipment_make_company_v2_0
    • First observedcreate_equipment_make_project_v2_0
    • First observedcreate_equipment_model_company_v2_0
    • First observedcreate_equipment_model_project_v2_0
    • First observedcreate_equipment_project_v2_0
    • First observedcreate_equipment_project_v2_1
    • First observedcreate_equipment_status_company_v2_0
    • First observedcreate_equipment_type_company_v2_0
    • First observedcreate_equipment_type_project_v2_0
    • First observedcreate_form
    • First observedcreate_generic_tool
    • First observedcreate_generic_tool_item
    • First observedcreate_generic_tool_item_response
    • First observedcreate_generic_tool_status
    • First observedcreate_gps_position
    • First observedcreate_group_and_move_markups
    • First observedcreate_harm_source
    • First observedcreate_hazard
    • First observedcreate_image
    • First observedcreate_image_category
    • First observedcreate_incident
    • First observedcreate_incident_action_type
    • First observedcreate_injury
    • First observedcreate_inspection_log
    • First observedcreate_inspection_type
    • First observedcreate_installation_request
    • First observedcreate_instruction_types
    • First observedcreate_instructions
    • First observedcreate_item_response_set
    • First observedcreate_line_item_type
    • First observedcreate_line_items_and_line_item_groups_in_bulk_to_the_project
    • First observedcreate_line_items_and_line_item_groups_in_bulk_to_the_project_2
    • First observedcreate_link
    • First observedcreate_location
    • First observedcreate_location_admin
    • First observedcreate_lookahead
    • First observedcreate_lookahead_task
    • First observedcreate_lookahead_v1_1
    • First observedcreate_maintenance_log_attachment
    • First observedcreate_manpower_log
    • First observedcreate_material
    • First observedcreate_meeting
    • First observedcreate_meeting_attendee_record
    • First observedcreate_meeting_category
    • First observedcreate_meeting_topic
    • First observedcreate_meeting_topic_v1_1
    • First observedcreate_meeting_v1_1
    • First observedcreate_monitoring_resource
    • First observedcreate_near_miss
    • First observedcreate_new_delay_log_type
    • First observedcreate_new_sub_cost_catalog_v2_0
    • First observedcreate_notes_log
    • First observedcreate_observation_item
    • First observedcreate_observation_item_response_log
    • First observedcreate_or_find_bim_view_folder_by_path
    • First observedcreate_payment_application_owner_invoice_for_prime_contract
    • First observedcreate_pdf_export_for_a_commitment_change_order_batch_v2_0
    • First observedcreate_pdf_export_for_a_commitment_change_order_v2_0
    • First observedcreate_pdf_export_for_a_prime_change_order_batch_v2_0
    • First observedcreate_pdf_export_for_a_prime_change_order_v2_0
    • First observedcreate_pdf_export_for_a_prime_contract_v2_0
    • First observedcreate_pdf_export_for_commitment_contracts_v2_0
    • First observedcreate_pdf_template_config
    • First observedcreate_permission_template
    • First observedcreate_plan_revision_log
    • First observedcreate_potential_change_order
    • First observedcreate_potential_change_order_line_item
    • First observedcreate_prime_change_order
    • First observedcreate_prime_change_order_batch
    • First observedcreate_prime_change_order_line_item_v2_0
    • First observedcreate_prime_contract
    • First observedcreate_prime_contract_line_item
    • First observedcreate_prime_contract_line_item_v2_0
    • First observedcreate_prime_contract_v2_0
    • First observedcreate_procore_item_association
    • First observedcreate_productivity_log
    • First observedcreate_program
    • First observedcreate_project
    • First observedcreate_project_action_plan_template_reference
    • First observedcreate_project_bid_type
    • First observedcreate_project_checklist_template
    • First observedcreate_project_currency_configuration
    • First observedcreate_project_distribution_group
    • First observedcreate_project_equipment_maintenance_log
    • First observedcreate_project_exchange_rates
    • First observedcreate_project_file
    • First observedcreate_project_file_version
    • First observedcreate_project_folder
    • First observedcreate_project_inspection_template_item_reference
    • First observedcreate_project_insurance
    • First observedcreate_project_membership
    • First observedcreate_project_observation_type
    • First observedcreate_project_owner_type
    • First observedcreate_project_person
    • First observedcreate_project_region
    • First observedcreate_project_role
    • First observedcreate_project_segment_item
    • First observedcreate_project_stage
    • First observedcreate_project_task_v2_0_company
    • First observedcreate_project_task_v2_0_company_v2_0
    • First observedcreate_project_type
    • First observedcreate_project_upload
    • First observedcreate_project_upload_v1_1
    • First observedcreate_project_user
    • First observedcreate_project_vendor
    • First observedcreate_project_vendor_insurance
    • First observedcreate_project_vendor_v1_1
    • First observedcreate_project_webhooks_hook_v2_0
    • First observedcreate_project_webhooks_triggers_v2_0
    • First observedcreate_property_damage
    • First observedcreate_punch_item
    • First observedcreate_punch_item_comment
    • First observedcreate_punch_item_type
    • First observedcreate_punch_item_v1_1
    • First observedcreate_purchase_order_contract
    • First observedcreate_purchase_order_contract_detail_line_item
    • First observedcreate_purchase_order_contract_line_item
    • First observedcreate_quantity_log
    • First observedcreate_reinspections_v2_0
    • First observedcreate_requested_change_v1_1
    • First observedcreate_requisition_subcontractor_invoices_for_commitment
    • First observedcreate_requisition_subcontractor_invoices_for_commitment_v1_1
    • First observedcreate_resource
    • First observedcreate_resource_v1_1
    • First observedcreate_rfi
    • First observedcreate_rfi_reply
    • First observedcreate_rfq
    • First observedcreate_rfq_quote
    • First observedcreate_rfq_response
    • First observedcreate_rounding_configuration
    • First observedcreate_safety_violation_log
    • First observedcreate_signature_for_time_and_material_entry
    • First observedcreate_signature_for_timesheet_company
    • First observedcreate_signature_for_timesheet_project
    • First observedcreate_specification_area_v2_1
    • First observedcreate_specification_section_division_for_a_project
    • First observedcreate_specification_section_for_a_project
    • First observedcreate_specification_set
    • First observedcreate_specification_upload
    • First observedcreate_standard_cost_code
    • First observedcreate_standard_cost_code_list
    • First observedcreate_sub_job
    • First observedcreate_submittal
    • First observedcreate_submittal_response
    • First observedcreate_submittal_v1_1
    • First observedcreate_support_pin_v2_0
    • First observedcreate_task
    • First observedcreate_task_item
    • First observedcreate_tax_code
    • First observedcreate_tax_type
    • First observedcreate_time_and_material_timecard
    • First observedcreate_time_off_for_a_person
    • First observedcreate_timecard_entry
    • First observedcreate_timecard_entry_company
    • First observedcreate_timecard_entry_project
    • First observedcreate_timecard_entry_v1_1
    • First observedcreate_timeline_event_v2_0
    • First observedcreate_timesheet
    • First observedcreate_timesheet_to_budget_configuration
    • First observedcreate_todo
    • First observedcreate_trade
    • First observedcreate_unit_of_measure
    • First observedcreate_unmanaged_equipment_project_v2_0
    • First observedcreate_viewpoint_and_procore_item_association
    • First observedcreate_visitor_log
    • First observedcreate_waste_log
    • First observedcreate_wbs_attribute_item_v2_0
    • First observedcreate_wbs_attribute_items_in_bulk_v2_0
    • First observedcreate_wbs_attributes_v2_0
    • First observedcreate_weather_log
    • First observedcreate_weather_log_v1_1
    • First observedcreate_webhooks_hook
    • First observedcreate_webhooks_trigger
    • First observedcreate_witness_statement
    • First observedcreate_work_activity
    • First observedcreate_work_log
    • First observedcreate_work_order_contract
    • First observedcreate_work_order_contract_detail_line_item
    • First observedcreate_work_order_contract_line_item
    • First observedcreate_workflow_activity_history
    • First observedcreates_a_inspection_item_signature_request_v2_0_project
    • First observedcreates_a_inspection_item_signature_request_v2_0_project_v2_0
    • First observedcreates_an_inspection_item_comment
    • First observedcreates_or_updates_a_budget_note_for_a_budget_or_a_forecasting
    • First observedcreates_or_updates_project_date
    • First observedcreates_requested_change
    • First observeddeactivate_early_pay_program
    • First observeddelete_a_budget_change
    • First observeddelete_a_budgeted_production_quantity
    • First observeddelete_a_change_order_change_reason_v2_0
    • First observeddelete_a_classification
    • First observeddelete_a_company_action_plan_templates
    • First observeddelete_a_company_action_plan_templates_v1_1
    • First observeddelete_a_company_office
    • First observeddelete_a_compliance_document_project
    • First observeddelete_a_compliance_document_project_v1_0
    • First observeddelete_a_coordination_issue_rest_v2_0_v2_0
    • First observeddelete_a_crew
    • First observeddelete_a_direct_cost_line_item
    • First observeddelete_a_drawing_area
    • First observeddelete_a_drawing_area_v1_1
    • First observeddelete_a_equipment_type
    • First observeddelete_a_job_title
    • First observeddelete_a_line_item_group_from_the_proposal_v2_0_company
    • First observeddelete_a_line_item_group_from_the_proposal_v2_0_project
    • First observeddelete_a_link_v2_0
    • First observeddelete_a_maintenance_record_by_id_project_v2_0
    • First observeddelete_a_maintenance_record_by_id_v2_0
    • First observeddelete_a_manual_forecast_line_item
    • First observeddelete_a_note_from_the_project_v2_0_company
    • First observeddelete_a_note_from_the_project_v2_0_company_v2_0
    • First observeddelete_a_payment_application_owner_invoice
    • First observeddelete_a_person
    • First observeddelete_a_prime_contract_line_item
    • First observeddelete_a_proposal_from_the_project_v2_0_company
    • First observeddelete_a_proposal_from_the_project_v2_0_company_v2_0
    • First observeddelete_a_resource_planning_tag
    • First observeddelete_a_resource_request
    • First observeddelete_a_response
    • First observeddelete_a_signature
    • First observeddelete_a_single_group
    • First observeddelete_a_single_project
    • First observeddelete_a_task_item_comment
    • First observeddelete_a_time_and_material_attachment
    • First observeddelete_a_time_and_material_entry
    • First observeddelete_a_time_and_material_equipment_log
    • First observeddelete_a_time_and_material_notification
    • First observeddelete_a_time_off_record
    • First observeddelete_accident_log
    • First observeddelete_action_plan
    • First observeddelete_action_plan_approver_signature
    • First observeddelete_action_plan_item
    • First observeddelete_action_plan_item_assignee
    • First observeddelete_action_plan_item_assignee_signature
    • First observeddelete_action_plan_receiver_signature
    • First observeddelete_action_plan_reference
    • First observeddelete_action_plan_section
    • First observeddelete_action_plan_template_approver
    • First observeddelete_action_plan_template_receiver
    • First observeddelete_action_plan_test_record
    • First observeddelete_action_plan_test_record_request
    • First observeddelete_action_plan_verification_method
    • First observeddelete_actual_production_quantity
    • First observeddelete_affliction_type
    • First observeddelete_an_equipment
    • First observeddelete_an_equipment_make
    • First observeddelete_an_equipment_model
    • First observeddelete_an_estimate_line_item_from_the_proposal_v2_0_company
    • First observeddelete_an_estimate_line_item_from_the_proposal_v2_0_project
    • First observeddelete_an_inspection_item_attachment
    • First observeddelete_an_project_equipment_log
    • First observeddelete_an_rfi_response
    • First observeddelete_app_configuration
    • First observeddelete_attachment
    • First observeddelete_bid_board_project_v2_0
    • First observeddelete_bid_form
    • First observeddelete_bid_form_item
    • First observeddelete_bid_form_section
    • First observeddelete_billing_period
    • First observeddelete_bim_file
    • First observeddelete_bim_level
    • First observeddelete_bim_model
    • First observeddelete_bim_model_revision
    • First observeddelete_bim_model_revision_plan
    • First observeddelete_bim_model_revision_viewpoint
    • First observeddelete_bim_plan
    • First observeddelete_budget_line_item_v2_0
    • First observeddelete_budget_lock
    • First observeddelete_budget_modification
    • First observeddelete_bulk_coordination_issues
    • First observeddelete_calendar_item
    • First observeddelete_call_log
    • First observeddelete_catalog_v2_0
    • First observeddelete_category
    • First observeddelete_change_event_production_quantity
    • First observeddelete_change_event_v1_1
    • First observeddelete_checklist
    • First observeddelete_checklist_inspection
    • First observeddelete_checklist_inspection_v1_1
    • First observeddelete_checklist_inspections_item_attachment
    • First observeddelete_checklist_item_response
    • First observeddelete_checklist_schedule
    • First observeddelete_checklist_schedule_attachment
    • First observeddelete_checklist_section
    • First observeddelete_checklist_signature
    • First observeddelete_checklist_signature_request
    • First observeddelete_classification
    • First observeddelete_commitment_change_order
    • First observeddelete_commitment_change_order_batch
    • First observeddelete_commitment_change_order_line_item_v2_0
    • First observeddelete_commitment_contract_line_item_v2_0
    • First observeddelete_commitment_contract_v2_0
    • First observeddelete_company_action_plan_template_item_assignee
    • First observeddelete_company_action_plan_template_reference
    • First observeddelete_company_action_plan_template_test_record_request
    • First observeddelete_company_action_plan_type
    • First observeddelete_company_checklist_section
    • First observeddelete_company_checklist_template
    • First observeddelete_company_currency_configuration
    • First observeddelete_company_file
    • First observeddelete_company_folder
    • First observeddelete_company_form_template
    • First observeddelete_company_inspection_template_item
    • First observeddelete_company_inspection_template_item_reference
    • First observeddelete_company_insurance
    • First observeddelete_company_logo
    • First observeddelete_company_role_v2_0
    • First observeddelete_company_segment_item
    • First observeddelete_company_vendor_insurance
    • First observeddelete_company_webhooks_hook_v2_0
    • First observeddelete_company_webhooks_trigger_v2_0
    • First observeddelete_configurable_field_set
    • First observeddelete_context_by_id
    • First observeddelete_context_by_query_parameters
    • First observeddelete_contract_payment
    • First observeddelete_contributing_behavior
    • First observeddelete_contributing_condition
    • First observeddelete_coordination_issue
    • First observeddelete_coordination_issue_attachment
    • First observeddelete_coordination_issue_workflow_issue_v2_0
    • First observeddelete_cost_item_v2_0
    • First observeddelete_cost_items_v2_0
    • First observeddelete_custom_field
    • First observeddelete_daily_construction_report_log
    • First observeddelete_delay_log
    • First observeddelete_delivery_log
    • First observeddelete_department
    • First observeddelete_direct_cost_item
    • First observeddelete_direct_cost_item_v1_1
    • First observeddelete_document_custom_tag
    • First observeddelete_drawing_set
    • First observeddelete_drawing_upload
    • First observeddelete_drawing_upload_v1_1
    • First observeddelete_dumpster_log
    • First observeddelete_equipment
    • First observeddelete_equipment_attachment_company_v2_0
    • First observeddelete_equipment_attachment_project_v2_0
    • First observeddelete_equipment_category
    • First observeddelete_equipment_category_company_v2_0
    • First observeddelete_equipment_company_v2_0
    • First observeddelete_equipment_log
    • First observeddelete_equipment_maintenance_log
    • First observeddelete_equipment_make_company_v2_0
    • First observeddelete_equipment_model_company_v2_0
    • First observeddelete_equipment_status_company_v2_0
    • First observeddelete_equipment_timecard_entry_project
    • First observeddelete_equipment_type_company_v2_0
    • First observeddelete_form
    • First observeddelete_from_project
    • First observeddelete_from_project_v1_1
    • First observeddelete_generic_tool_item
    • First observeddelete_generic_tool_status
    • First observeddelete_group
    • First observeddelete_harm_source
    • First observeddelete_hazard
    • First observeddelete_image
    • First observeddelete_image_category
    • First observeddelete_incident
    • First observeddelete_incident_action_type
    • First observeddelete_incident_alert_recipient
    • First observeddelete_inspection_log
    • First observeddelete_inspection_type
    • First observeddelete_instruction
    • First observeddelete_instruction_type
    • First observeddelete_item_response_set
    • First observeddelete_layer
    • First observeddelete_link
    • First observeddelete_location
    • First observeddelete_lookahead
    • First observeddelete_lookahead_task
    • First observeddelete_lookahead_v1_1
    • First observeddelete_managed_equipment_attachment
    • First observeddelete_managed_equipment_maintenance_log_attachment
    • First observeddelete_manpower_log
    • First observeddelete_markups
    • First observeddelete_material
    • First observeddelete_meeting
    • First observeddelete_meeting_attendee_record
    • First observeddelete_meeting_category_v2_0
    • First observeddelete_meeting_v1_1
    • First observeddelete_monitoring_resource
    • First observeddelete_multiple_signatures
    • First observeddelete_notes_log
    • First observeddelete_observation_item
    • First observeddelete_payout
    • First observeddelete_pdf_template_config
    • First observeddelete_plan_revision_log
    • First observeddelete_potential_change_order_line_item
    • First observeddelete_prime_change_order
    • First observeddelete_prime_change_order_batch
    • First observeddelete_prime_change_order_line_item_v2_0
    • First observeddelete_prime_contract
    • First observeddelete_prime_contract_line_item_v2_0
    • First observeddelete_prime_contract_v2_0
    • First observeddelete_procore_item_association
    • First observeddelete_productivity_log
    • First observeddelete_program
    • First observeddelete_project_action_plan_template_reference
    • First observeddelete_project_bid_type
    • First observeddelete_project_checklist_template
    • First observeddelete_project_currency_configuration
    • First observeddelete_project_distribution_group
    • First observeddelete_project_equipment_maintenance_log
    • First observeddelete_project_file
    • First observeddelete_project_folder
    • First observeddelete_project_inspection_template_item_reference
    • First observeddelete_project_insurance
    • First observeddelete_project_location
    • First observeddelete_project_location_v1_1
    • First observeddelete_project_membership
    • First observeddelete_project_observation_type
    • First observeddelete_project_owner_type
    • First observeddelete_project_region
    • First observeddelete_project_role
    • First observeddelete_project_segment_item
    • First observeddelete_project_stage
    • First observeddelete_project_task_v2_0_company
    • First observeddelete_project_task_v2_0_company_v2_0
    • First observeddelete_project_type
    • First observeddelete_project_vendor_insurance
    • First observeddelete_project_webhooks_hook_v2_0
    • First observeddelete_project_webhooks_trigger_v2_0
    • First observeddelete_punch_item
    • First observeddelete_punch_item_type
    • First observeddelete_punch_item_v1_1
    • First observeddelete_purchase_order_contract
    • First observeddelete_purchase_order_contract_detail_line_item
    • First observeddelete_purchase_order_contract_line_item
    • First observeddelete_quantity_log
    • First observeddelete_requisition_compliance_document_v2_0
    • First observeddelete_requisition_subcontractor_invoice
    • First observeddelete_requisition_subcontractor_invoice_v1_1
    • First observeddelete_resource
    • First observeddelete_resource_v1_1
    • First observeddelete_rfq
    • First observeddelete_rounding_configuration
    • First observeddelete_safety_violation_log
    • First observeddelete_signature_project
    • First observeddelete_signature_project_v1_0
    • First observeddelete_specification_area_v2_1
    • First observeddelete_stamp
    • First observeddelete_stamp_v2_0
    • First observeddelete_standard_cost_code
    • First observeddelete_sub_job
    • First observeddelete_subcategory
    • First observeddelete_submittal_v1_1
    • First observeddelete_task
    • First observeddelete_tax_type
    • First observeddelete_the_project_logo
    • First observeddelete_time_and_material_timecard
    • First observeddelete_timecard_entries
    • First observeddelete_timecard_entry
    • First observeddelete_timecard_entry_company
    • First observeddelete_timecard_entry_project
    • First observeddelete_timeline_event_v2_0
    • First observeddelete_timesheet
    • First observeddelete_timesheet_to_budget_configuration
    • First observeddelete_todo
    • First observeddelete_unit_of_measure
    • First observeddelete_viewpoint_and_procore_item_association
    • First observeddelete_visitor_log
    • First observeddelete_wage_override
    • First observeddelete_waste_log
    • First observeddelete_wbs_attribute_item_v2_0
    • First observeddelete_wbs_attributes_v2_0
    • First observeddelete_wbs_segment
    • First observeddelete_weather_log
    • First observeddelete_weather_log_v1_1
    • First observeddelete_webhooks_hook
    • First observeddelete_webhooks_trigger
    • First observeddelete_work_activity
    • First observeddelete_work_log
    • First observeddelete_work_order_contract
    • First observeddelete_work_order_contract_detail_line_item
    • First observeddelete_work_order_contract_line_item
    • First observeddeletes_an_inspection_item_signature_request_v2_0
    • First observeddeletes_an_inspection_item_signature_v2_0
    • First observeddestroy_action
    • First observeddestroy_environmental
    • First observeddestroy_injury
    • First observeddestroy_near_miss
    • First observeddestroy_property_damage
    • First observeddestroy_task_item
    • First observeddestroy_witness_statement
    • First observeddisable_payments
    • First observeddisassociate_equipment_with_project_company_v2_0
    • First observeddisassociate_equipment_with_project_project_v2_0
    • First observeddocument_markup_permissions
    • First observeddownload_all_company_level_email_attachments
    • First observeddownload_all_email_attachments
    • First observeddownload_coordination_issues
    • First observeddownload_rfis_list
    • First observeddownload_rfis_list_v1_1
    • First observeddownload_schedule_file
    • First observeddraft_create_v1_1
    • First observedduplicate_a_configurable_field_set_and_its_custom_fields
    • First observededit_a_timecard_entry_v1_1
    • First observedemail_a_time_and_material_entry
    • First observedenable_a_person_to_log_in
    • First observedenable_payments
    • First observedexport_company_level_email_communication
    • First observedexport_company_time_index_to_csv
    • First observedexport_email_communication_to_pdf
    • First observedfetch_active_support_pin_v2_0
    • First observedfetch_attachment_by_id_company_v2_0
    • First observedfetch_attachment_by_id_project_v2_0
    • First observedfind_configurable_field_set_by_index
    • First observedfind_or_create_an_annotated_document
    • First observedfind_or_create_an_annotated_document_with_markup_context
    • First observedfind_or_create_location_s_by_path
    • First observedfinds_or_creates_a_inspection_item_signature_request_v2_0
    • First observedgenerates_pdf_document
    • First observedget_a_groups_projects
    • First observedget_a_list_of_inspection_item_evidence_configurations_v2_0
    • First observedget_a_list_of_inspection_item_signature_requests_v2_0
    • First observedget_a_list_of_possible_assignees_for_an_rfi
    • First observedget_a_list_of_possible_rfi_managers_for_an_rfi
    • First observedget_a_list_of_possible_timesheet_creator_ids
    • First observedget_a_list_of_possible_timesheet_creators
    • First observedget_a_single_group
    • First observedget_a_single_job_title
    • First observedget_a_single_person
    • First observedget_a_single_project
    • First observedget_a_single_resource_planning_tag
    • First observedget_a_workflow_instance_company_v2_0
    • First observedget_a_workflow_instance_project_v2_0
    • First observedget_a_workflow_template_version_v2_0
    • First observedget_accessible_groups_for_authenticated_user_by_context
    • First observedget_accessible_layers_for_authenticated_user_by_context
    • First observedget_active_reinspection_v2_0
    • First observedget_activity_by_id_v2_0
    • First observedget_activity_link_by_id_v2_0
    • First observedget_adjustment_and_adjustment_line_items_of_a_project_v2_0
    • First observedget_advanced_forecasting_rows_of_a_project_v2_0
    • First observedget_affected_body_part_filter_options
    • First observedget_affected_body_parts
    • First observedget_affected_company_filter_options_project
    • First observedget_affected_company_filter_options_project_v1_0
    • First observedget_affected_company_filter_options_project_v1_0_2
    • First observedget_affected_company_filter_options_project_v1_0_4
    • First observedget_affected_parties_filter_options_project
    • First observedget_affected_parties_filter_options_project_v1_0
    • First observedget_affected_persons_filter_options_project
    • First observedget_affected_persons_filter_options_project_v1_0
    • First observedget_affliction_type_filter_options
    • First observedget_all_attachments_for_equipment_company_v2_0
    • First observedget_all_attachments_for_equipment_project_v2_0
    • First observedget_all_bid_board_projects_v2_0
    • First observedget_all_company_groups
    • First observedget_all_custom_fields
    • First observedget_all_equipment_categories_company_v2_0
    • First observedget_all_equipment_categories_project_v2_0
    • First observedget_all_equipment_company_v2_0
    • First observedget_all_equipment_company_v2_1
    • First observedget_all_equipment_ids_company_v2_0
    • First observedget_all_equipment_ids_company_v2_1
    • First observedget_all_equipment_maintenance_records_company_v2_0
    • First observedget_all_equipment_maintenance_records_project_v2_0
    • First observedget_all_equipment_makes_company_v2_0
    • First observedget_all_equipment_makes_project_v2_0
    • First observedget_all_equipment_models_company_v2_0
    • First observedget_all_equipment_models_project_v2_0
    • First observedget_all_equipment_statuses_company_v2_0
    • First observedget_all_equipment_statuses_project_v2_0
    • First observedget_all_equipment_types_company_v2_0
    • First observedget_all_equipment_types_project_v2_0
    • First observedget_all_job_titles_belonging_to_a_group
    • First observedget_all_job_titles_in_the_company
    • First observedget_all_people_belonging_to_a_company
    • First observedget_all_people_belonging_to_a_group
    • First observedget_all_resource_planning_tag_for_a_company
    • First observedget_all_resource_planning_tag_for_a_group
    • First observedget_all_resource_requests_for_a_single_project
    • First observedget_all_resource_requests_for_projects_in_a_single_group
    • First observedget_all_resource_requests_in_a_company
    • First observedget_all_time_off_for_a_single_person
    • First observedget_assignee_filter_options
    • First observedget_bid_board_project_by_id_v2_0
    • First observedget_bid_board_project_custom_fields_v2_0
    • First observedget_budget_view_options_v2_0
    • First observedget_calendar_by_id_v2_0
    • First observedget_catalogs_v2_0
    • First observedget_change_event_settings_v2_0
    • First observedget_company_assignments
    • First observedget_company_currency_configuration
    • First observedget_company_exchange_rates
    • First observedget_company_snapshots_summary_v2_0
    • First observedget_complete_layer_structure_by_context_type_and_type_id
    • First observedget_configurable_field_sets_company_v2_0
    • First observedget_configuration_for_uom_master_list_v2_0
    • First observedget_context_by_id
    • First observedget_contexts
    • First observedget_contracts_invoice_configuration
    • First observedget_contributing_behavior_filter_options
    • First observedget_contributing_condition_filter_options
    • First observedget_cost_item_v2_0
    • First observedget_cost_items_v2_0
    • First observedget_current_company_assignments
    • First observedget_custom_field_data_types_v2_0
    • First observedget_daily_log_headers_for_the_project
    • First observedget_environmental_type_filter_options
    • First observedget_equipment_by_id_company_v2_0
    • First observedget_equipment_by_id_company_v2_1
    • First observedget_equipment_by_id_project_v2_1
    • First observedget_equipment_by_project_project_v2_0
    • First observedget_equipment_by_project_project_v2_1
    • First observedget_equipment_change_history_company_v2_0
    • First observedget_equipment_ids_by_project_project_v2_0
    • First observedget_equipment_ids_by_project_project_v2_1
    • First observedget_equipment_maintenance_record_by_its_id_company_v2_0
    • First observedget_equipment_maintenance_record_by_its_id_project_v2_0
    • First observedget_equipment_projects_company_v2_0
    • First observedget_export_options_for_existing_rfi
    • First observedget_file_by_its_uuid
    • First observedget_filing_type_filter_options
    • First observedget_filing_types
    • First observedget_group_assignments
    • First observedget_group_by_id
    • First observedget_groups
    • First observedget_groups_for_layer
    • First observedget_harm_source_filter_options_project
    • First observedget_harm_source_filter_options_project_v1_0
    • First observedget_hazard_filter_options
    • First observedget_import_logs_v2_0
    • First observedget_import_status_v2_0
    • First observedget_incident_statuses
    • First observedget_information_of_a_budget_change
    • First observedget_layer_by_id
    • First observedget_layers
    • First observedget_layers_for_context
    • First observedget_location_filter_options
    • First observedget_look_ahead_data
    • First observedget_managed_equipment_filter_options_project
    • First observedget_managed_equipment_filter_options_project_v1_0
    • First observedget_managed_equipment_filter_options_project_v1_0_2
    • First observedget_managed_equipment_filter_options_project_v1_0_4
    • First observedget_markup_stamp
    • First observedget_my_open_items_statistics
    • First observedget_next_available_number
    • First observedget_next_available_number_by_spec_section
    • First observedget_next_available_number_by_spec_section_v1_1
    • First observedget_next_available_number_v1_1
    • First observedget_observation_item_pdf_url
    • First observedget_one_coordination_issue_viewpoint_model_manager_or_legacy
    • First observedget_open_items_statistics
    • First observedget_operation_details_v2_0
    • First observedget_or_create_context_with_hierarchy
    • First observedget_or_create_document_info_v1_1
    • First observedget_or_refresh_an_access_token
    • First observedget_permission_level_options
    • First observedget_person_assignments
    • First observedget_persons_assignment_history_data
    • First observedget_project_assignments
    • First observedget_project_budget_view_options_v2_0
    • First observedget_project_currency_configuration
    • First observedget_project_exchange_rates
    • First observedget_project_incident_configuration
    • First observedget_project_task_by_id_v2_0_company
    • First observedget_project_task_by_id_v2_0_company_v2_0
    • First observedget_project_tasks_v2_0_company
    • First observedget_project_tasks_v2_0_company_v2_0
    • First observedget_projects_assignment_history_data
    • First observedget_requisition_compliance_document_v2_0
    • First observedget_resource_planning_notification_profiles
    • First observedget_responsible_company_filter_options
    • First observedget_revisions
    • First observedget_revisions_v1_1
    • First observedget_schedule_by_id_v2_0
    • First observedget_schedule_import_processing_state
    • First observedget_schedule_metadata
    • First observedget_single_custom_field
    • First observedget_single_time_off_record
    • First observedget_stamps
    • First observedget_stamps_v2_0
    • First observedget_status_filter_options
    • First observedget_tags_requiring_action_report
    • First observedget_the_daily_log_header_via_date_or_id
    • First observedget_the_minutes_and_date_created_for_all_parent_topics
    • First observedget_the_minutes_and_date_created_for_all_parent_topics_v1_1
    • First observedget_timeline_event_by_id_v2_0
    • First observedget_token_info
    • First observedget_total_workers_and_man_hours
    • First observedget_units_of_measure
    • First observedget_unmanaged_equipment_project_v2_0
    • First observedget_work_activity_filter_options_project
    • First observedget_work_activity_filter_options_project_v1_0
    • First observedget_work_activity_filter_options_project_v1_0_2
    • First observedget_work_activity_filter_options_project_v1_0_4
    • First observedget_workflow_data
    • First observedget_workflow_data_v1_1
    • First observedget_workflow_instance_history_company_v2_0
    • First observedget_workflow_instance_history_project_v2_0
    • First observedget_workflow_preset_company_v2_0
    • First observedget_workflow_preset_project_v2_0
    • First observedgets_documents_attached_to_bid_package
    • First observedgrant_app_authorization
    • First observedindex_bid_forms
    • First observedinitiate_schedule_import_v2_0
    • First observedit_fetches_a_budget_note_v2_0
    • First observedlist_accepted_weather_conditions_project
    • First observedlist_accepted_weather_conditions_project_v1_0
    • First observedlist_accident_logs
    • First observedlist_action_plan_approvers
    • First observedlist_action_plan_item_assignees
    • First observedlist_action_plan_items
    • First observedlist_action_plan_parties
    • First observedlist_action_plan_receivers
    • First observedlist_action_plan_references
    • First observedlist_action_plan_sections
    • First observedlist_action_plan_template_approvers
    • First observedlist_action_plan_template_item_assignees
    • First observedlist_action_plan_template_receivers
    • First observedlist_action_plan_test_record_requests
    • First observedlist_action_plan_test_records
    • First observedlist_action_plan_verification_methods
    • First observedlist_action_plans
    • First observedlist_actions
    • First observedlist_activities_v2_0
    • First observedlist_activity_links_v2_0
    • First observedlist_affliction_types
    • First observedlist_all_actual_production_quantities
    • First observedlist_all_attachments
    • First observedlist_all_available_permission_templates_for_a_project
    • First observedlist_all_classification
    • First observedlist_all_classifications
    • First observedlist_all_company_managed_equipment_user_permissions
    • First observedlist_all_direct_cost_line_items
    • First observedlist_all_equipment_categories
    • First observedlist_all_equipment_company
    • First observedlist_all_equipment_logs
    • First observedlist_all_equipment_makes
    • First observedlist_all_equipment_models
    • First observedlist_all_equipment_project
    • First observedlist_all_equipment_types
    • First observedlist_all_maintenance_logs_attachment
    • First observedlist_all_prime_contracts
    • First observedlist_all_project_budgeted_production_quantities
    • First observedlist_all_project_budgeted_production_quantity_ids
    • First observedlist_all_project_crew_ids
    • First observedlist_all_project_crews
    • First observedlist_all_project_equipment_ids
    • First observedlist_all_submittal_attachments_with_download_urls_v1_1
    • First observedlist_all_time_and_material_entry
    • First observedlist_all_time_and_material_entry_configurable_field_sets
    • First observedlist_all_time_and_material_entry_matching_the_search_keyword
    • First observedlist_all_timesheets
    • First observedlist_alternative_response_sets
    • First observedlist_app_configurations
    • First observedlist_app_installations_v1_0
    • First observedlist_app_installations_v1_0_2
    • First observedlist_assignable_users
    • First observedlist_assignee_company_filter_options
    • First observedlist_assignee_filter_options
    • First observedlist_assignees_for_accessible_tasks
    • First observedlist_available_checklist_item_types
    • First observedlist_available_filters_for_coordination_issues
    • First observedlist_available_observation_item_statuses_with_localized_labels
    • First observedlist_available_rfi_assigned_id_filter_options
    • First observedlist_available_rfi_ball_in_court_filter_options
    • First observedlist_available_rfi_cost_code_options
    • First observedlist_available_rfi_filters
    • First observedlist_available_rfi_prefix_stage_filter_options
    • First observedlist_available_rfi_priority_filter_options
    • First observedlist_available_rfi_received_from_filter_options
    • First observedlist_available_rfi_responsible_contractor_filter_options
    • First observedlist_available_rfi_rfi_manager_filter_options
    • First observedlist_available_rfi_status_filter_options
    • First observedlist_available_rfi_sub_job_filter_options
    • First observedlist_available_rfis_locations
    • First observedlist_available_status_transitions_v2_0
    • First observedlist_available_submittal_filters
    • First observedlist_bid_contacts
    • First observedlist_bid_packages
    • First observedlist_bid_packages_v1_1
    • First observedlist_bid_uploads
    • First observedlist_bids_within_a_bid_package
    • First observedlist_bids_within_a_company
    • First observedlist_bids_within_a_project
    • First observedlist_billing_periods
    • First observedlist_bim_file_extractions
    • First observedlist_bim_files
    • First observedlist_bim_levels
    • First observedlist_bim_model_change_history
    • First observedlist_bim_model_revision_objects
    • First observedlist_bim_model_revision_plans
    • First observedlist_bim_model_revision_properties
    • First observedlist_bim_model_revision_viewpoints
    • First observedlist_bim_model_revisions
    • First observedlist_bim_models
    • First observedlist_bim_plans
    • First observedlist_bim_property_file_objects
    • First observedlist_bim_property_file_properties
    • First observedlist_bim_view_folders
    • First observedlist_body_parts
    • First observedlist_budget_change_summaries
    • First observedlist_budget_detail_columns
    • First observedlist_budget_detail_filter_options
    • First observedlist_budget_details
    • First observedlist_budget_modifications
    • First observedlist_budget_view_detail_rows
    • First observedlist_budget_view_snapshot_detail_rows
    • First observedlist_budget_view_snapshot_summary_rows
    • First observedlist_budget_view_snapshots
    • First observedlist_budget_view_summary_rows
    • First observedlist_budget_views
    • First observedlist_calendar_events
    • First observedlist_calendar_items
    • First observedlist_calendars_v2_0
    • First observedlist_call_logs
    • First observedlist_change_event_production_quantities
    • First observedlist_change_event_statuses
    • First observedlist_change_event_statuses_v2_0
    • First observedlist_change_event_types_v2_0
    • First observedlist_change_events
    • First observedlist_change_events_v1_1
    • First observedlist_change_history_for_a_generic_tool_item
    • First observedlist_change_history_for_timesheet
    • First observedlist_change_order_change_reasons
    • First observedlist_change_order_change_reasons_v2_0
    • First observedlist_change_order_packages
    • First observedlist_change_order_requests
    • First observedlist_change_order_statuses
    • First observedlist_change_types
    • First observedlist_checklist_inspection_comments
    • First observedlist_checklist_inspection_schedules
    • First observedlist_checklist_inspection_sections
    • First observedlist_checklist_inspections_item_attachments
    • First observedlist_checklist_inspections_items
    • First observedlist_checklist_inspections_items_v1_1
    • First observedlist_checklist_item_observations
    • First observedlist_checklist_list_assigned_company_filter_options
    • First observedlist_checklist_list_closed_by_contact_filter_options
    • First observedlist_checklist_list_closed_by_contact_filter_options_v2_0
    • First observedlist_checklist_list_created_by_contact_filter_options
    • First observedlist_checklist_list_equipment_filter_options
    • First observedlist_checklist_list_inspection_type_filter_options
    • First observedlist_checklist_list_inspector_filter_options
    • First observedlist_checklist_list_inspector_filter_options_v2_0
    • First observedlist_checklist_list_location_filter_options
    • First observedlist_checklist_list_location_filter_options_v2_0
    • First observedlist_checklist_list_point_of_contact_filter_options
    • First observedlist_checklist_list_point_of_contact_filter_options_v2_0
    • First observedlist_checklist_list_responsible_contractor_filter_options
    • First observedlist_checklist_list_responsible_contractor_filter_options_v2_0
    • First observedlist_checklist_list_specification_section_filter_options
    • First observedlist_checklist_list_specification_section_filter_options_v2_0
    • First observedlist_checklist_list_status_filter_options
    • First observedlist_checklist_list_template_filter_options
    • First observedlist_checklist_list_template_filter_options_v2_0
    • First observedlist_checklist_list_trade_filter_options
    • First observedlist_checklist_list_trade_filter_options_v2_0
    • First observedlist_checklist_list_type_filter_options_v2_0
    • First observedlist_checklist_schedule_assignee_filter_options_v2_0
    • First observedlist_checklist_schedule_attachments
    • First observedlist_checklist_schedule_change_histories
    • First observedlist_checklist_schedule_inspection_template_filter_options_v2_0
    • First observedlist_checklist_schedule_inspection_type_filter_options_v2_0
    • First observedlist_checklist_signature_requests
    • First observedlist_checklist_templates
    • First observedlist_checklists
    • First observedlist_checklists_inspections
    • First observedlist_commitment_change_order_line_items_v2_0
    • First observedlist_commitment_contract_line_items_v2_0
    • First observedlist_commitment_contracts_v2_0
    • First observedlist_commitments
    • First observedlist_communication_tags
    • First observedlist_communication_threads
    • First observedlist_companies
    • First observedlist_company_action_plan_template_item_assignees
    • First observedlist_company_action_plan_template_items
    • First observedlist_company_action_plan_template_references
    • First observedlist_company_action_plan_template_requests
    • First observedlist_company_action_plan_types
    • First observedlist_company_checklist_sections
    • First observedlist_company_checklist_template_sections
    • First observedlist_company_checklist_templates
    • First observedlist_company_folders_and_files
    • First observedlist_company_form_templates
    • First observedlist_company_form_templates_from_project
    • First observedlist_company_inactive_users
    • First observedlist_company_inactive_vendors
    • First observedlist_company_inspection_template_item_reference
    • First observedlist_company_inspection_template_items
    • First observedlist_company_insurances
    • First observedlist_company_observation_types
    • First observedlist_company_offices
    • First observedlist_company_people
    • First observedlist_company_project_status_snapshots_v2_0
    • First observedlist_company_projects
    • First observedlist_company_roles
    • First observedlist_company_roles_v2_0
    • First observedlist_company_segment_items
    • First observedlist_company_users_v1_0
    • First observedlist_company_users_v1_0_2
    • First observedlist_company_users_v1_1
    • First observedlist_company_users_v1_1_1
    • First observedlist_company_users_v1_2
    • First observedlist_company_users_v1_2_1
    • First observedlist_company_users_v1_3
    • First observedlist_company_users_v1_3_1
    • First observedlist_company_vendor_comments
    • First observedlist_company_vendor_insurances
    • First observedlist_company_vendors
    • First observedlist_company_wbs_patterns
    • First observedlist_company_wbs_segment_item_lists
    • First observedlist_company_wbs_segments
    • First observedlist_company_webhooks_deliveries_v2_0
    • First observedlist_company_webhooks_hooks_v2_0
    • First observedlist_company_webhooks_resources_v2_0
    • First observedlist_company_webhooks_triggers_v2_0
    • First observedlist_companys_projects
    • First observedlist_configurable_field_set_project_options
    • First observedlist_configurable_field_sets
    • First observedlist_contract_payments
    • First observedlist_contributing_behaviors
    • First observedlist_contributing_conditions
    • First observedlist_coordination_issue_activities
    • First observedlist_coordination_issue_activity_feed_items
    • First observedlist_coordination_issue_assignable_users
    • First observedlist_coordination_issue_change_history
    • First observedlist_coordination_issue_file_filter_options
    • First observedlist_coordination_issue_viewpoints_legacy_model_manager_rest_v2
    • First observedlist_coordination_issues
    • First observedlist_coordination_issues_for_a_project_rest_v2_0_v2_0
    • First observedlist_coordination_issues_in_recycle_bin
    • First observedlist_coordination_issues_in_recycle_bin_post
    • First observedlist_coordination_issues_post
    • First observedlist_coordination_issues_workflow_issues_v2_0
    • First observedlist_correspondence_type_defaults
    • First observedlist_correspondence_type_items
    • First observedlist_correspondence_type_permissions
    • First observedlist_correspondence_type_users
    • First observedlist_correspondences_company
    • First observedlist_correspondences_project
    • First observedlist_cost_codes
    • First observedlist_cost_codes_for_timesheets
    • First observedlist_cost_codes_ids_for_timesheets
    • First observedlist_counts_of_daily_logs
    • First observedlist_counts_of_daily_logs_v1_1
    • First observedlist_creation_source_filter_options
    • First observedlist_creator_filter_options
    • First observedlist_custom_field_definitions
    • First observedlist_custom_field_definitions_configurable_field_sets
    • First observedlist_custom_field_definitions_v1_1
    • First observedlist_custom_field_lov_entries
    • First observedlist_custom_field_metadata
    • First observedlist_custom_field_sections
    • First observedlist_custom_fields_user_options
    • First observedlist_custom_tool_users
    • First observedlist_daily_construction_report_logs
    • First observedlist_daily_construction_report_logs_vendor_options
    • First observedlist_default_correspondence_types_v2_0
    • First observedlist_default_distribution_members
    • First observedlist_default_task_items_project_distribution_members_v2_0
    • First observedlist_delay_log_types
    • First observedlist_delay_logs
    • First observedlist_deleted_payouts
    • First observedlist_deleted_punch_items
    • First observedlist_deleted_punch_items_v1_1
    • First observedlist_delivery_logs
    • First observedlist_departments
    • First observedlist_direct_cost_items
    • First observedlist_direct_cost_items_v1_1
    • First observedlist_direct_cost_line_items
    • First observedlist_distribution_groups
    • First observedlist_distribution_groups_for_specifications_v2_1
    • First observedlist_drawing_areas
    • First observedlist_drawing_areas_v1_1
    • First observedlist_drawing_disciplines
    • First observedlist_drawing_disciplines_v1_1
    • First observedlist_drawing_revision_terms
    • First observedlist_drawing_revision_terms_v1_1
    • First observedlist_drawing_revisions
    • First observedlist_drawing_sets
    • First observedlist_drawing_tiles
    • First observedlist_drawing_uploads
    • First observedlist_drawing_uploads_v1_1
    • First observedlist_drawings
    • First observedlist_drawings_v1_1
    • First observedlist_dumpster_logs
    • First observedlist_early_pay_programs
    • First observedlist_ecrion_xml_and_template_for_meetings
    • First observedlist_ecrion_xml_and_template_for_meetings_v1_1
    • First observedlist_environmental_types
    • First observedlist_environmentals
    • First observedlist_equipment
    • First observedlist_equipment_logs
    • First observedlist_equipment_maintenance_logs
    • First observedlist_equipment_timecard_entries_project
    • First observedlist_field_production_report_summary
    • First observedlist_filter_options_for_approvers
    • First observedlist_filter_options_for_attachments
    • First observedlist_filter_options_for_ball_in_court
    • First observedlist_filter_options_for_ball_in_court_company
    • First observedlist_filter_options_for_buffer_time
    • First observedlist_filter_options_for_cost_code
    • First observedlist_filter_options_for_created_by
    • First observedlist_filter_options_for_created_via
    • First observedlist_filter_options_for_current_revision
    • First observedlist_filter_options_for_design_team_review_time
    • First observedlist_filter_options_for_for_record_only
    • First observedlist_filter_options_for_internal_review_time
    • First observedlist_filter_options_for_is_rejected
    • First observedlist_filter_options_for_lead_time
    • First observedlist_filter_options_for_location
    • First observedlist_filter_options_for_prepare_time
    • First observedlist_filter_options_for_private
    • First observedlist_filter_options_for_received_from
    • First observedlist_filter_options_for_responsible_contractor
    • First observedlist_filter_options_for_specification_area
    • First observedlist_filter_options_for_specification_division
    • First observedlist_filter_options_for_specification_section
    • First observedlist_filter_options_for_submittal_manager
    • First observedlist_filter_options_for_submittal_package
    • First observedlist_filter_options_for_submittal_response
    • First observedlist_filter_options_for_submittal_revision
    • First observedlist_filter_options_for_submittal_scheduled_task
    • First observedlist_filter_options_for_submittal_status
    • First observedlist_filter_options_for_submittal_sub_job
    • First observedlist_filter_options_for_submittal_unpackaged
    • First observedlist_filter_options_for_submittal_workflow_template
    • First observedlist_filter_options_for_type
    • First observedlist_filters_company
    • First observedlist_filters_project
    • First observedlist_forms_on_a_project
    • First observedlist_forms_on_a_project_v1_1
    • First observedlist_generic_tool_items
    • First observedlist_generic_tools
    • First observedlist_gps_positions
    • First observedlist_grouped_checklists_inspections
    • First observedlist_grouped_coordination_issue_status_count
    • First observedlist_grouped_recycled_checklists_inspections
    • First observedlist_harm_sources
    • First observedlist_hazards
    • First observedlist_image_categories
    • First observedlist_image_category_ids_that_contain_images
    • First observedlist_images
    • First observedlist_inactive_company_people
    • First observedlist_inactive_project_people
    • First observedlist_incident_action_types
    • First observedlist_incident_alert_recipients
    • First observedlist_incident_alerts
    • First observedlist_incident_filing_types
    • First observedlist_incident_severity_levels
    • First observedlist_incidents
    • First observedlist_injuries
    • First observedlist_inspection_item_references
    • First observedlist_inspection_logs
    • First observedlist_inspection_types
    • First observedlist_inspection_users_v1_1
    • First observedlist_inspectors
    • First observedlist_instruction_types_on_a_project
    • First observedlist_instructions_on_a_project
    • First observedlist_item_response_sets
    • First observedlist_lien_waivers
    • First observedlist_line_item_types
    • First observedlist_links
    • First observedlist_location_filter_options
    • First observedlist_locations
    • First observedlist_lookaheads
    • First observedlist_lookaheads_v1_1
    • First observedlist_manpower_logs
    • First observedlist_manpower_logs_contact_options
    • First observedlist_manpower_logs_vendor_options
    • First observedlist_manual_forecast_line_items
    • First observedlist_manual_holds_for_a_given_invoice
    • First observedlist_materials
    • First observedlist_meeting_categories
    • First observedlist_meeting_templates
    • First observedlist_meetings
    • First observedlist_meetings_v1_1
    • First observedlist_monitoring_resources
    • First observedlist_near_misses
    • First observedlist_notes_logs
    • First observedlist_observation_assignee_options
    • First observedlist_observation_category_configurable_field_sets
    • First observedlist_observation_default_distribution_members
    • First observedlist_observation_item_response_logs
    • First observedlist_observation_items
    • First observedlist_observation_potential_distribution_members
    • First observedlist_observation_types
    • First observedlist_observations_response_logs
    • First observedlist_of_actual_production_quantity_ids
    • First observedlist_of_all_time_and_material_equipment_logs
    • First observedlist_of_budget_change_histories_v2_0
    • First observedlist_of_change_history_events_for_an_action_plan_v2_0
    • First observedlist_of_company_action_plan_templates
    • First observedlist_of_company_action_plan_templates_v1_1
    • First observedlist_of_company_level_emails
    • First observedlist_of_deleted_submittals
    • First observedlist_of_deleted_submittals_v1_1
    • First observedlist_of_document_revisions_company_v2_0
    • First observedlist_of_document_revisions_project_v2_0
    • First observedlist_of_emails
    • First observedlist_of_number_filter_options
    • First observedlist_of_project_action_plan_templates
    • First observedlist_of_punch_list_assignee_filter_options
    • First observedlist_of_punch_list_vendor_filter_options
    • First observedlist_of_purchase_order_contracts
    • First observedlist_operations_v2_0
    • First observedlist_payee_bank_details
    • First observedlist_payment_applications_owner_invoices_for_a_project
    • First observedlist_payment_applications_owner_invoices_for_prime_contract
    • First observedlist_payment_project_configurations
    • First observedlist_payments_beneficiaries
    • First observedlist_payments_subtier_waivers
    • First observedlist_payments_subtiers_for_the_commitment
    • First observedlist_payments_subtiers_for_the_requisition
    • First observedlist_pdf_template_configs
    • First observedlist_permission_templates
    • First observedlist_permission_templates_for_a_company_user
    • First observedlist_plan_revision_logs
    • First observedlist_possible_assignees_company_v2_0
    • First observedlist_possible_assignees_project_v2_0
    • First observedlist_possible_tool_filter_values
    • First observedlist_potential_change_order_line_items
    • First observedlist_potential_change_orders
    • First observedlist_potential_distribution_members_for_specifications_v2_1
    • First observedlist_potential_points_of_contact
    • First observedlist_prime_change_order_line_items_v2_0
    • First observedlist_prime_contract_line_items
    • First observedlist_prime_contract_line_items_v2_0
    • First observedlist_prime_contracts_v2_0
    • First observedlist_productivity_logs
    • First observedlist_programs
    • First observedlist_programs_for_a_company_user
    • First observedlist_project_action_plan_template_items
    • First observedlist_project_action_plan_template_references
    • First observedlist_project_action_plan_template_sections
    • First observedlist_project_action_plan_template_test_record_requests
    • First observedlist_project_assignments_for_a_company_user
    • First observedlist_project_bid_types
    • First observedlist_project_checklist_templates
    • First observedlist_project_checklist_templates_v1_1
    • First observedlist_project_configurable_field_sets
    • First observedlist_project_cost_codes
    • First observedlist_project_country_codes
    • First observedlist_project_dates_v1_0
    • First observedlist_project_dates_v1_0_2
    • First observedlist_project_dates_v2_0
    • First observedlist_project_distribution_groups_v1_0
    • First observedlist_project_distribution_groups_v1_0_2
    • First observedlist_project_document_custom_tags
    • First observedlist_project_equipment_logs
    • First observedlist_project_equipment_maintenance_logs
    • First observedlist_project_folders_and_files
    • First observedlist_project_inactive_users
    • First observedlist_project_inactive_vendors
    • First observedlist_project_inspection_template_item_reference
    • First observedlist_project_insurances
    • First observedlist_project_job_titles
    • First observedlist_project_links_v2_0
    • First observedlist_project_locations
    • First observedlist_project_memberships
    • First observedlist_project_names_for_a_company_user
    • First observedlist_project_numbers_for_a_company_user
    • First observedlist_project_observation_types
    • First observedlist_project_owner_types
    • First observedlist_project_people
    • First observedlist_project_permission_templates
    • First observedlist_project_punch_item_templates
    • First observedlist_project_regions
    • First observedlist_project_roles
    • First observedlist_project_segment_items
    • First observedlist_project_stages
    • First observedlist_project_stages_for_a_company_user
    • First observedlist_project_state_codes
    • First observedlist_project_status_snapshots_v2_0
    • First observedlist_project_templates
    • First observedlist_project_tools_v1_0
    • First observedlist_project_tools_v1_0_2
    • First observedlist_project_trades
    • First observedlist_project_types
    • First observedlist_project_types_for_a_company_user
    • First observedlist_project_users
    • First observedlist_project_vendor_insurances
    • First observedlist_project_vendors
    • First observedlist_project_vendors_v1_1
    • First observedlist_project_wbs_codes
    • First observedlist_project_wbs_patterns
    • First observedlist_project_wbs_segments
    • First observedlist_project_wbs_task_codes
    • First observedlist_project_webhooks_deliveries_v2_0
    • First observedlist_project_webhooks_hooks_v2_0
    • First observedlist_project_webhooks_resources_v2_0
    • First observedlist_project_webhooks_triggers_v2_0
    • First observedlist_projects
    • First observedlist_projects_v1_1
    • First observedlist_property_damages
    • First observedlist_punch_item_assignee_company_filter_options_v2_0
    • First observedlist_punch_item_assignee_filter_options_v2_0
    • First observedlist_punch_item_ball_in_court_filter_options_v2_0
    • First observedlist_punch_item_closed_by_contact_filter_options_v2_0
    • First observedlist_punch_item_creator_filter_options_v2_0
    • First observedlist_punch_item_default_distribution_list
    • First observedlist_punch_item_final_approver_filter_options_v2_0
    • First observedlist_punch_item_location_filter_options_v2_0
    • First observedlist_punch_item_manager_filter_options_v2_0
    • First observedlist_punch_item_trade_filter_options_v2_0
    • First observedlist_punch_item_type_filter_options_v2_0
    • First observedlist_punch_item_types
    • First observedlist_punch_items
    • First observedlist_punch_items_v1_1
    • First observedlist_punch_list_assignee_options
    • First observedlist_punch_list_manager_options
    • First observedlist_punch_list_read_user_options
    • First observedlist_purchase_order_contract_detail_line_items
    • First observedlist_purchase_order_contract_line_items
    • First observedlist_quantity_logs
    • First observedlist_recent_activity_items
    • First observedlist_recycled_action_plan
    • First observedlist_recycled_action_plan_item_assignees
    • First observedlist_recycled_action_plan_items
    • First observedlist_recycled_action_plan_references
    • First observedlist_recycled_action_plan_sections
    • First observedlist_recycled_action_plan_template_approvers
    • First observedlist_recycled_action_plan_template_items
    • First observedlist_recycled_action_plan_template_receivers
    • First observedlist_recycled_action_plan_template_sections
    • First observedlist_recycled_action_plan_test_record_requests
    • First observedlist_recycled_actions
    • First observedlist_recycled_actions_v1_1
    • First observedlist_recycled_checklist_inspection_comments
    • First observedlist_recycled_checklist_inspection_sections_v1_1
    • First observedlist_recycled_checklist_inspections_item_attachments
    • First observedlist_recycled_checklist_templates
    • First observedlist_recycled_checklists_inspections
    • First observedlist_recycled_company_action_plan_template_items_assignees
    • First observedlist_recycled_company_action_plan_template_references
    • First observedlist_recycled_company_action_plan_template_test_record_requests
    • First observedlist_recycled_company_action_plan_templates
    • First observedlist_recycled_company_action_plan_templates_v1_1
    • First observedlist_recycled_company_checklist_templates
    • First observedlist_recycled_company_form_templates
    • First observedlist_recycled_environmentals
    • First observedlist_recycled_incidents
    • First observedlist_recycled_injuries
    • First observedlist_recycled_links
    • First observedlist_recycled_near_misses
    • First observedlist_recycled_observation_items
    • First observedlist_recycled_project_action_plan_template_references
    • First observedlist_recycled_project_forms
    • First observedlist_recycled_property_damages
    • First observedlist_recycled_rfis
    • First observedlist_recycled_witness_statements
    • First observedlist_recycled_witness_statements_v1_1
    • First observedlist_recyled_action_plan_test_records
    • First observedlist_regions_for_a_company_user
    • First observedlist_requested_changes
    • First observedlist_requested_changes_for_a_schedule_or_a_task_v1_1
    • First observedlist_requisition_compliance_attachments_v2_0
    • First observedlist_requisition_compliance_documents_v2_0
    • First observedlist_requisition_subcontractor_invoice_change_histories
    • First observedlist_requisition_subcontractor_invoice_change_order_items
    • First observedlist_requisition_subcontractor_invoice_contract_detail_items
    • First observedlist_requisition_subcontractor_invoice_contract_items
    • First observedlist_requisitions_subcontractor_invoices_for_project
    • First observedlist_requisitions_subcontractor_invoices_for_project_v1_1
    • First observedlist_resources
    • First observedlist_resources_v1_1
    • First observedlist_responses
    • First observedlist_responses_for_a_generic_tool_item
    • First observedlist_responses_in_the_specified_item_response_set
    • First observedlist_rfi_default_distribution
    • First observedlist_rfi_replies
    • First observedlist_rfis
    • First observedlist_rfq_quotes
    • First observedlist_rfq_responses
    • First observedlist_rfqs
    • First observedlist_roles_for_a_company_user
    • First observedlist_safety_violation_logs
    • First observedlist_schedule_imports
    • First observedlist_schedule_resources
    • First observedlist_schedules_v2_0
    • First observedlist_signatures_project
    • First observedlist_signatures_project_v1_0
    • First observedlist_specification_areas_for_a_project_v2_1
    • First observedlist_specification_configurations_v2_1
    • First observedlist_specification_section_divisions_for_a_project
    • First observedlist_specification_section_revisions_for_a_specification
    • First observedlist_specification_section_terms
    • First observedlist_specification_section_terms_v1_1
    • First observedlist_specification_sections
    • First observedlist_specification_sets
    • First observedlist_specification_uploads
    • First observedlist_standard_cost_code_lists
    • First observedlist_standard_cost_codes
    • First observedlist_status_change_history_for_a_coordination_issue
    • First observedlist_status_filter_options
    • First observedlist_statuses_available_for_a_generic_tool
    • First observedlist_statuses_for_a_generic_tool
    • First observedlist_sub_jobs
    • First observedlist_submittal_associated_attachments
    • First observedlist_submittal_packages_on_a_project
    • First observedlist_submittal_responses_project
    • First observedlist_submittal_responses_v1_0
    • First observedlist_submittal_statuses
    • First observedlist_submittal_types
    • First observedlist_submittals
    • First observedlist_submittals_on_a_project
    • First observedlist_submittals_on_a_project_v1_1
    • First observedlist_task_item_categories
    • First observedlist_task_item_comments
    • First observedlist_task_items
    • First observedlist_task_items_assignee_options
    • First observedlist_task_items_distribution_member_options_v2_0
    • First observedlist_tasks
    • First observedlist_tax_codes
    • First observedlist_tax_types
    • First observedlist_time_and_material_timecards
    • First observedlist_timecard_data
    • First observedlist_timecard_entries
    • First observedlist_timecard_entries_company
    • First observedlist_timecard_entries_project
    • First observedlist_timecard_time_types_company
    • First observedlist_timecard_time_types_v1_0
    • First observedlist_timeline_events_v2_0
    • First observedlist_tools_enabled_for_workflows_v2_0
    • First observedlist_trades
    • First observedlist_unit_of_measure_categories
    • First observedlist_units_of_measure
    • First observedlist_users_with_access_to_a_generic_tool
    • First observedlist_users_with_access_to_a_generic_tool_item
    • First observedlist_visitor_logs
    • First observedlist_waste_logs
    • First observedlist_watcher_filter_options
    • First observedlist_wbs_attribute_items_v2_0
    • First observedlist_wbs_attributes_v2_0
    • First observedlist_wbs_code_ids_v2_0
    • First observedlist_wbs_codes_filter_options_v2_0
    • First observedlist_wbs_codes_filters_v2_0
    • First observedlist_wbs_codes_v2_0
    • First observedlist_weather_logs
    • First observedlist_weather_logs_v1_1
    • First observedlist_webhooks_deliveries
    • First observedlist_webhooks_hooks
    • First observedlist_webhooks_resources
    • First observedlist_webhooks_resources_api_versions
    • First observedlist_webhooks_triggers
    • First observedlist_witness_statements
    • First observedlist_work_activities
    • First observedlist_work_logs
    • First observedlist_work_order_contract_detail_line_items
    • First observedlist_work_order_contract_line_items
    • First observedlist_work_order_contracts
    • First observedlist_workflow_activity_histories
    • First observedlist_workflow_instances
    • First observedlist_workflow_instances_company_v2_0
    • First observedlist_workflow_instances_project_v2_0
    • First observedlist_workflow_managers_company_v2_0
    • First observedlist_workflow_managers_project_v2_0
    • First observedlist_workflow_permanent_logs_company
    • First observedlist_workflow_permanent_logs_project
    • First observedlist_workflow_presets_company_v2_0
    • First observedlist_workflow_presets_project_v2_0
    • First observedlist_workflow_templates_v2_0
    • First observedlists_the_app_and_tool_level_permissions_for_the_user
    • First observedmake_job_title_available_to_group
    • First observedmake_tag_from_being_available_to_group
    • First observedmerges_one_or_more_pdfs_of_a_requisition_into_a_single_pdf
    • First observedmodify_an_existing_markup
    • First observedmodify_markups
    • First observedmove_action_plan_back_into_draft
    • First observedmove_action_plan_into_in_progress
    • First observedmove_action_plan_item_within_or_across_sections
    • First observedmove_action_plan_section
    • First observedmove_catalog_v2_0
    • First observedmove_company_action_plan_template_into_in_revision
    • First observedmove_company_action_plan_template_into_in_revision_v1_1
    • First observedmove_company_action_plan_template_into_published
    • First observedmove_company_action_plan_template_into_published_v1_1
    • First observedpatch_company_role_v2_0
    • First observedpost_company_role_v2_0
    • First observedprocore_api_call
    • First observedprocore_discover_categories
    • First observedprocore_discover_endpoints
    • First observedprocore_get_config
    • First observedprocore_get_endpoint_details
    • First observedprocore_search_endpoints
    • First observedprocore_set_config
    • First observedproject_folder_and_file_index
    • First observedproject_folder_and_file_index_v2_0
    • First observedpunch_list_available_final_approvers
    • First observedreactivate_company_user
    • First observedreactivate_company_vendor
    • First observedreactivate_project_user
    • First observedreactivate_project_vendor
    • First observedrecycle_rfi
    • First observedremove_a_person_from_a_group
    • First observedremove_a_response_from_an_item_response_set
    • First observedremove_a_user_from_the_project
    • First observedremove_alternative_response_set_from_project_checklist_template
    • First observedremove_an_existing_markup
    • First observedremove_change_order_package_from_a_requisition_subcontractor
    • First observedremove_checklist_template_alternative_response_set
    • First observedremove_company_checklist_template_alternative_response_set
    • First observedremove_current_project_company_v2_0
    • First observedremove_current_project_company_v2_1
    • First observedremove_current_project_project_v2_0
    • First observedremove_current_project_project_v2_1
    • First observedremove_job_title_from_being_available_to_group
    • First observedremove_role_from_project
    • First observedremove_segment_from_the_project_pattern
    • First observedremove_signature_from_timecard_entry_project
    • First observedremove_tag_availablility_to_group
    • First observedremove_tag_instance_from_person
    • First observedremove_tag_instance_from_project
    • First observedremove_values_from_custom_field
    • First observedremove_viewpoint_association_from_issue_rest_v2_0_mm_soft
    • First observedreorder_company_role_v2_0
    • First observedrespond_to_a_workflow_instance_company_v2_0
    • First observedrespond_to_a_workflow_instance_project_v2_0
    • First observedrestart_a_workflow_instance_company_v2_0
    • First observedrestart_a_workflow_instance_project_v2_0
    • First observedrestore_a_recycled_company_checklist_template
    • First observedrestore_a_time_and_material_entry
    • First observedrestore_change_event_v1_1
    • First observedrestore_company_form_template
    • First observedrestore_coordination_issue_from_recycle_bin
    • First observedrestore_deleted_checklist_inspection
    • First observedrestore_deleted_checklist_inspection_v1_1
    • First observedrestore_equipment_company_v2_0
    • First observedrestore_project_form
    • First observedrestore_recycled_action_plan
    • First observedrestore_recycled_checklist_template
    • First observedrestore_recycled_checklist_template_v1_1
    • First observedrestore_recycled_company_action_plan_template
    • First observedrestore_recycled_company_action_plan_template_v1_1
    • First observedrestoring_an_equipment
    • First observedretrieve_a_line_item_by_id_v2_0_company
    • First observedretrieve_a_line_item_by_id_v2_0_project
    • First observedretrieve_a_line_item_group_by_id_v2_0_company
    • First observedretrieve_a_line_item_group_by_id_v2_0_project
    • First observedretrieve_a_list_of_markups
    • First observedretrieve_a_note_by_id_in_the_project_v2_0_company
    • First observedretrieve_a_note_by_id_in_the_project_v2_0_company_v2_0
    • First observedretrieve_a_project_proposal_by_id_v2_0_company
    • First observedretrieve_a_project_proposal_by_id_v2_0_company_v2_0
    • First observedretrieve_a_single_webhook_for_company_v2_0
    • First observedretrieve_a_single_webhook_for_project_v2_0
    • First observedretrieve_all_line_item_groups_of_a_proposal_v2_0_company
    • First observedretrieve_all_line_item_groups_of_a_proposal_v2_0_project
    • First observedretrieve_all_line_items_of_a_proposal_v2_0_company
    • First observedretrieve_all_line_items_of_a_proposal_v2_0_project
    • First observedretrieve_all_notes_in_the_project_v2_0_company
    • First observedretrieve_all_notes_in_the_project_v2_0_company_v2_0
    • First observedretrieve_all_project_proposals_v2_0_company
    • First observedretrieve_all_project_proposals_v2_0_company_v2_0
    • First observedretrieve_details_for_the_markup
    • First observedretrieve_environmental
    • First observedretrieve_equipment
    • First observedretrieve_property_damage
    • First observedretrieve_recycled_action
    • First observedretrieve_recycled_action_v1_1
    • First observedretrieve_recycled_incident
    • First observedretrieve_recycled_injury
    • First observedretrieve_recycled_link
    • First observedretrieve_recycled_near_miss
    • First observedretrieve_recycled_observation
    • First observedretrieve_recycled_rfi
    • First observedretrieve_recycled_witness_statement
    • First observedretrieve_recycled_witness_statement_v1_1
    • First observedretrieves_the_status_of_the_asyncronous_job_that_a_bulk_users
    • First observedreturn_a_filter
    • First observedreturn_a_list_of_all_submittals_v2_0
    • First observedreturn_a_pdf_template_config
    • First observedreturn_company_schedule_summary
    • First observedreturns_avatar_of_the_current_user
    • First observedreturns_specific_template
    • First observedreview_requested_changes
    • First observedreview_requested_changes_v1_1
    • First observedrevoke_a_persons_login
    • First observedrevoke_token
    • First observedsave_aemp_2_0_telematics_data_v2_0
    • First observedsave_aemp_2_0_telematics_data_v2_1
    • First observedsave_markups
    • First observedsave_stamp
    • First observedsave_stamp_v2_0
    • First observedsave_telematics_stats_data_v2_0
    • First observedsearch_all_equipment_company
    • First observedsearch_all_equipment_project
    • First observedsend_a_response_from_a_generic_tool_item_and_then_update_the
    • First observedsend_all_unsent_punch_item_emails
    • First observedsend_all_unsent_punch_item_emails_v1_1
    • First observedsend_checklist_inspection_email
    • First observedsend_email_for_file_sharing
    • First observedsend_email_project
    • First observedsend_email_project_v1_0
    • First observedsend_invite
    • First observedsend_invite_v1_1
    • First observedsend_invite_v1_2
    • First observedsend_invite_v1_3
    • First observedsend_observation_item_email
    • First observedsend_punch_item_email
    • First observedsend_punch_item_email_v1_1
    • First observedsend_unsent_observation_items
    • First observedsend_unsent_punch_items
    • First observedsend_unsent_punch_items_v1_1
    • First observedsend_unsent_task_items
    • First observedsend_urgent_error
    • First observedset_current_project_company_v2_0
    • First observedset_current_project_project_v2_0
    • First observedsetup_managed_equipment_taxonomy
    • First observedshow_a_bid_within_a_company
    • First observedshow_a_bid_within_a_project
    • First observedshow_a_budgeted_production_quantity
    • First observedshow_a_commitment_contract
    • First observedshow_a_company_inspection_template_item_evidence_configuration
    • First observedshow_a_compliance_document_project
    • First observedshow_a_compliance_document_project_v1_0
    • First observedshow_a_coordination_issue_rest_v2_0_v2_0
    • First observedshow_a_crew
    • First observedshow_a_inspection_item_signature_request_v2_0
    • First observedshow_a_meeting_template
    • First observedshow_a_project_inspection_template_item_evidence_configuration
    • First observedshow_a_signature_company
    • First observedshow_a_signature_project
    • First observedshow_a_signature_project_v1_0
    • First observedshow_a_timesheet
    • First observedshow_accident_logs
    • First observedshow_action
    • First observedshow_action_plan
    • First observedshow_action_plan_approver_signature
    • First observedshow_action_plan_item
    • First observedshow_action_plan_item_assignee
    • First observedshow_action_plan_item_assignee_signature
    • First observedshow_action_plan_receiver_signature
    • First observedshow_action_plan_reference
    • First observedshow_action_plan_section
    • First observedshow_action_plan_template_approver
    • First observedshow_action_plan_template_receiver
    • First observedshow_action_plan_test_record_request
    • First observedshow_action_plan_verification_method
    • First observedshow_actual_production_quantity
    • First observedshow_affliction_type
    • First observedshow_all_commitment_change_order_batches
    • First observedshow_all_commitment_change_orders
    • First observedshow_all_prime_change_order_batches
    • First observedshow_all_prime_change_orders
    • First observedshow_alternative_response_set
    • First observedshow_an_async_job_for_a_company
    • First observedshow_an_equipment_category
    • First observedshow_an_equipment_log
    • First observedshow_an_equipment_make
    • First observedshow_an_equipment_model
    • First observedshow_an_equipment_type
    • First observedshow_an_individual_managed_equipment_maintenance_log_attachment
    • First observedshow_an_individual_time_and_material_attachment
    • First observedshow_an_project_equipment_log
    • First observedshow_app_configuration
    • First observedshow_app_installation
    • First observedshow_bid_package_company
    • First observedshow_bid_package_project
    • First observedshow_bids_within_a_bid_package
    • First observedshow_billing_period_for_project
    • First observedshow_bim_file
    • First observedshow_bim_file_extraction
    • First observedshow_bim_geometry_file_bundle
    • First observedshow_bim_level
    • First observedshow_bim_model
    • First observedshow_bim_model_revision
    • First observedshow_bim_model_revision_plan
    • First observedshow_bim_plan
    • First observedshow_bim_viewpoint
    • First observedshow_budget_line_item
    • First observedshow_budget_line_item_v1_1
    • First observedshow_budget_meta_data
    • First observedshow_budget_modification
    • First observedshow_calendar_item
    • First observedshow_call_logs
    • First observedshow_change_event
    • First observedshow_change_event_v1_1
    • First observedshow_change_history
    • First observedshow_change_order_package
    • First observedshow_change_order_request
    • First observedshow_checklist
    • First observedshow_checklist_comment
    • First observedshow_checklist_inspection
    • First observedshow_checklist_item
    • First observedshow_checklist_item_response
    • First observedshow_checklist_item_type
    • First observedshow_checklist_schedule
    • First observedshow_checklist_section
    • First observedshow_checklist_signature_request
    • First observedshow_checklist_template
    • First observedshow_classification_company
    • First observedshow_classification_project
    • First observedshow_commitment_change_order
    • First observedshow_commitment_change_order_batch
    • First observedshow_commitment_change_order_line_item_v2_0
    • First observedshow_commitment_contract_line_item_v2_0
    • First observedshow_commitment_contract_summary_v2_0
    • First observedshow_commitment_contract_v2_0
    • First observedshow_communication
    • First observedshow_communication_thread
    • First observedshow_company_action_plan_template
    • First observedshow_company_action_plan_template_item_assignee
    • First observedshow_company_action_plan_template_reference
    • First observedshow_company_action_plan_template_test_record_request
    • First observedshow_company_action_plan_template_v1_1
    • First observedshow_company_action_plan_type
    • First observedshow_company_checklist_section
    • First observedshow_company_checklist_template
    • First observedshow_company_configuration
    • First observedshow_company_file
    • First observedshow_company_file_version
    • First observedshow_company_folder
    • First observedshow_company_form_template
    • First observedshow_company_form_template_from_project
    • First observedshow_company_inspection_template_item
    • First observedshow_company_inspection_template_item_reference
    • First observedshow_company_insurance
    • First observedshow_company_level_email_communication
    • First observedshow_company_office
    • First observedshow_company_security_settings_v2_0
    • First observedshow_company_segment_item
    • First observedshow_company_upload
    • First observedshow_company_upload_v1_1
    • First observedshow_company_user_v1_0
    • First observedshow_company_user_v1_0_2
    • First observedshow_company_user_v1_1
    • First observedshow_company_user_v1_1_1
    • First observedshow_company_user_v1_2
    • First observedshow_company_user_v1_3
    • First observedshow_company_user_v1_3_1
    • First observedshow_company_vendor
    • First observedshow_company_vendor_insurance
    • First observedshow_company_wbs_segment
    • First observedshow_compliance_documents_for_a_contract_project
    • First observedshow_compliance_documents_for_a_contract_project_v1_0
    • First observedshow_compliance_information_for_a_purchase_order_contract
    • First observedshow_compliance_information_for_a_work_order_contract
    • First observedshow_configurable_field_set
    • First observedshow_contract_payment
    • First observedshow_contributing_behavior
    • First observedshow_contributing_condition
    • First observedshow_coordination_issue
    • First observedshow_coordination_issue_count_by_status
    • First observedshow_coordination_issue_in_recycle_bin
    • First observedshow_coordination_issue_workflow_issue_v2_0
    • First observedshow_correspondence_company
    • First observedshow_correspondence_project
    • First observedshow_cost_code
    • First observedshow_current_company_user
    • First observedshow_current_company_user_v1_1
    • First observedshow_current_company_user_v1_2
    • First observedshow_current_company_user_v1_3
    • First observedshow_custom_field_definition
    • First observedshow_custom_field_lov_entry
    • First observedshow_custom_field_metadatum
    • First observedshow_custom_fields_section
    • First observedshow_daily_construction_report_logs
    • First observedshow_delay_logs
    • First observedshow_delivery_log
    • First observedshow_department
    • First observedshow_detail_for_requisition_subcontractor_invoice
    • First observedshow_direct_cost_item
    • First observedshow_direct_cost_item_v1_1
    • First observedshow_direct_cost_line_item
    • First observedshow_drawing_revision
    • First observedshow_drawing_upload_v1_1
    • First observedshow_dumpster_logs
    • First observedshow_early_pay_program
    • First observedshow_email_communication
    • First observedshow_environmental
    • First observedshow_equipment_change_history
    • First observedshow_equipment_company
    • First observedshow_equipment_logs
    • First observedshow_equipment_maintenance_log
    • First observedshow_equipment_project
    • First observedshow_equipment_timecard_entry_project
    • First observedshow_filing_type
    • First observedshow_first_prime_contract
    • First observedshow_form
    • First observedshow_generic_tool_item_project
    • First observedshow_generic_tool_item_v1_0
    • First observedshow_gps_position
    • First observedshow_harm_source
    • First observedshow_hazard
    • First observedshow_image
    • First observedshow_image_category
    • First observedshow_incident
    • First observedshow_incident_action_type
    • First observedshow_incident_alert
    • First observedshow_incident_alert_recipient
    • First observedshow_incident_severity_level
    • First observedshow_injury
    • First observedshow_inspection_logs
    • First observedshow_inspection_type
    • First observedshow_instruction
    • First observedshow_instruction_type
    • First observedshow_item_response_set
    • First observedshow_item_response_set_response
    • First observedshow_line_item_type
    • First observedshow_link
    • First observedshow_location
    • First observedshow_lookahead
    • First observedshow_lookahead_v1_1
    • First observedshow_manpower_logs
    • First observedshow_material
    • First observedshow_meeting
    • First observedshow_meeting_v1_1
    • First observedshow_near_miss
    • First observedshow_new_change_event_v1_1
    • First observedshow_next_available_number_for_observation_items
    • First observedshow_notes_logs
    • First observedshow_observation_item
    • First observedshow_or_create_document_markup_downloadable_pdf
    • First observedshow_payment_application_owner_invoice
    • First observedshow_payments_beneficiary
    • First observedshow_permission_manifest
    • First observedshow_plan_revision_logs
    • First observedshow_potential_change_order_line_item
    • First observedshow_potential_change_orders
    • First observedshow_prime_change_order
    • First observedshow_prime_change_order_batch
    • First observedshow_prime_change_order_line_item_v2_0
    • First observedshow_prime_contract
    • First observedshow_prime_contract_line_item
    • First observedshow_prime_contract_line_item_v2_0
    • First observedshow_prime_contract_summary_v2_0
    • First observedshow_prime_contract_v2_0
    • First observedshow_productivity_logs
    • First observedshow_program
    • First observedshow_project
    • First observedshow_project_action_plan_template_reference
    • First observedshow_project_bid_type
    • First observedshow_project_checklist_template
    • First observedshow_project_checklist_template_v1_1
    • First observedshow_project_date_v1_0
    • First observedshow_project_date_v1_0_2
    • First observedshow_project_distribution_group_v1_0
    • First observedshow_project_distribution_group_v1_0_2
    • First observedshow_project_equipment_maintenance_log
    • First observedshow_project_file
    • First observedshow_project_file_version
    • First observedshow_project_folder
    • First observedshow_project_inspection_template_item_reference
    • First observedshow_project_insurance
    • First observedshow_project_location
    • First observedshow_project_owner_type
    • First observedshow_project_region
    • First observedshow_project_schedule_settings
    • First observedshow_project_stage
    • First observedshow_project_type
    • First observedshow_project_upload
    • First observedshow_project_upload_v1_1
    • First observedshow_project_user
    • First observedshow_project_vendor
    • First observedshow_project_vendor_insurance
    • First observedshow_project_vendor_v1_1
    • First observedshow_project_wbs_segment
    • First observedshow_property_damage
    • First observedshow_punch_assignment
    • First observedshow_punch_item
    • First observedshow_punch_item_type
    • First observedshow_punch_item_v1_1
    • First observedshow_purchase_order_contract
    • First observedshow_purchase_order_contract_detail_line_item
    • First observedshow_purchase_order_contract_line_item
    • First observedshow_quantity_logs
    • First observedshow_recent_timecard_entry_wbs_code_ids_deprecated_v1_1
    • First observedshow_recycled_action
    • First observedshow_recycled_action_plan
    • First observedshow_recycled_action_plan_item
    • First observedshow_recycled_action_plan_item_assignee
    • First observedshow_recycled_action_plan_reference
    • First observedshow_recycled_action_plan_section
    • First observedshow_recycled_action_plan_template_approver
    • First observedshow_recycled_action_plan_template_items
    • First observedshow_recycled_action_plan_template_receiver
    • First observedshow_recycled_action_plan_template_section
    • First observedshow_recycled_action_plan_test_record
    • First observedshow_recycled_action_plan_test_record_request
    • First observedshow_recycled_action_v1_1
    • First observedshow_recycled_checklist_inspection
    • First observedshow_recycled_checklist_template
    • First observedshow_recycled_company_action_plan_template
    • First observedshow_recycled_company_action_plan_template_items_assignee
    • First observedshow_recycled_company_action_plan_template_reference
    • First observedshow_recycled_company_action_plan_template_test_record_request
    • First observedshow_recycled_company_action_plan_template_v1_1
    • First observedshow_recycled_company_checklist_template
    • First observedshow_recycled_company_form_template
    • First observedshow_recycled_environmental
    • First observedshow_recycled_incident
    • First observedshow_recycled_injury
    • First observedshow_recycled_near_miss
    • First observedshow_recycled_observation
    • First observedshow_recycled_project_action_plan_template_reference
    • First observedshow_recycled_project_form
    • First observedshow_recycled_property_damage
    • First observedshow_recycled_witness_statement
    • First observedshow_recycled_witness_statement_v1_1
    • First observedshow_requisition_subcontractor_invoice
    • First observedshow_requisition_subcontractor_invoice_change_order_item
    • First observedshow_requisition_subcontractor_invoice_contract_detail_item
    • First observedshow_requisition_subcontractor_invoice_contract_item
    • First observedshow_requisition_subcontractor_invoice_v1_1
    • First observedshow_resource
    • First observedshow_resource_assignment_v1_1
    • First observedshow_resource_v1_1
    • First observedshow_response
    • First observedshow_rfi
    • First observedshow_rfi_in_pdf_format
    • First observedshow_rfi_reply
    • First observedshow_rfq
    • First observedshow_rfq_quote
    • First observedshow_rfq_response
    • First observedshow_rounding_configuration
    • First observedshow_safety_violation_logs
    • First observedshow_specification_section_revision
    • First observedshow_specification_set
    • First observedshow_standard_cost_code
    • First observedshow_standard_cost_code_list
    • First observedshow_sub_job
    • First observedshow_submittal_in_pdf_format_v1_1
    • First observedshow_submittal_project
    • First observedshow_submittal_v1_0
    • First observedshow_submittal_v1_1
    • First observedshow_task
    • First observedshow_task_item
    • First observedshow_tax_code
    • First observedshow_tax_type
    • First observedshow_the_schedule_integration_type_for_a_project
    • First observedshow_time_and_material_entry
    • First observedshow_time_and_material_equipment_log
    • First observedshow_time_and_material_notification
    • First observedshow_time_and_material_timecard
    • First observedshow_timecard_entry
    • First observedshow_timecard_entry_change_history_company
    • First observedshow_timecard_entry_company
    • First observedshow_timecard_entry_project
    • First observedshow_timesheet_approval_status_filters
    • First observedshow_timesheet_billable_filters
    • First observedshow_timesheet_created_by_filters
    • First observedshow_timesheet_crews_filters
    • First observedshow_timesheet_department_filters
    • First observedshow_timesheet_employee_filters
    • First observedshow_timesheet_employee_id_filters
    • First observedshow_timesheet_location_filters
    • First observedshow_timesheet_office_filters
    • First observedshow_timesheet_project_filters
    • First observedshow_timesheet_region_filters
    • First observedshow_timesheet_sub_job_filters
    • First observedshow_timesheet_time_type_filters
    • First observedshow_timesheet_to_budget_configuration
    • First observedshow_timesheet_wbs_code_filters
    • First observedshow_timesheet_work_classification_filters
    • First observedshow_todo
    • First observedshow_trade
    • First observedshow_unit_of_measure
    • First observedshow_user_info
    • First observedshow_visitor_logs
    • First observedshow_waste_logs
    • First observedshow_weather_log_v1_1
    • First observedshow_weather_logs
    • First observedshow_witness_statement
    • First observedshow_work_activity
    • First observedshow_work_logs
    • First observedshow_work_order_contract
    • First observedshow_work_order_contract_detail_line_item
    • First observedshow_work_order_contract_line_item
    • First observedshow_workflow_activity_history
    • First observedshow_workflow_instance
    • First observedsync_budget_line_items
    • First observedsync_calendar_items
    • First observedsync_change_order_requests
    • First observedsync_company_insurances
    • First observedsync_company_insurances_alternative
    • First observedsync_company_users
    • First observedsync_company_users_v1_1
    • First observedsync_company_users_v1_2
    • First observedsync_company_users_v1_3
    • First observedsync_company_vendor_insurances
    • First observedsync_company_vendors
    • First observedsync_cost_codes
    • First observedsync_direct_cost_items
    • First observedsync_direct_cost_line_items
    • First observedsync_line_item_types
    • First observedsync_potential_change_order_line_items
    • First observedsync_potential_change_orders
    • First observedsync_prime_contract_line_items
    • First observedsync_project_insurances
    • First observedsync_project_vendor_insurances
    • First observedsync_projects
    • First observedsync_purchase_order_contract_line_items
    • First observedsync_purchase_order_contracts
    • First observedsync_standard_cost_codes
    • First observedsync_sub_jobs
    • First observedsync_tasks
    • First observedsync_tax_codes
    • First observedsync_tax_types
    • First observedsync_todos
    • First observedsync_units_of_measure
    • First observedsync_work_order_contract_line_items
    • First observedsync_work_order_contracts
    • First observedterminate_a_workflow_instance_company_public_v2_0
    • First observedterminate_a_workflow_instance_project_public_v2_0
    • First observedtoggle_checklist_section_not_applicable_status_v1_0
    • First observedtoggle_checklist_section_not_applicable_status_v1_0_2
    • First observedunassign_the_attribute_items_from_the_wbs_codes_v2_0
    • First observedupdate_a_bid_from_a_bid_package
    • First observedupdate_a_bid_from_a_bid_package_v1_1
    • First observedupdate_a_bid_within_a_company
    • First observedupdate_a_budgeted_production_quantity
    • First observedupdate_a_change_event_status_v2_0
    • First observedupdate_a_change_event_type_v2_0
    • First observedupdate_a_change_order_change_reason_v2_0
    • First observedupdate_a_checklist_inspection_schedule
    • First observedupdate_a_classification
    • First observedupdate_a_company_action_plan_template
    • First observedupdate_a_company_action_plan_template_v1_1
    • First observedupdate_a_compliance_document_project
    • First observedupdate_a_compliance_document_project_v1_0
    • First observedupdate_a_coordination_issue_rest_v2_0_v2_0
    • First observedupdate_a_crew
    • First observedupdate_a_delay_log_type
    • First observedupdate_a_drawing_area
    • First observedupdate_a_drawing_area_v1_1
    • First observedupdate_a_job_title
    • First observedupdate_a_line_item_group_of_the_proposal_v2_0_company
    • First observedupdate_a_line_item_group_of_the_proposal_v2_0_project
    • First observedupdate_a_maintenance_record_project_v2_0
    • First observedupdate_a_maintenance_record_v2_0
    • First observedupdate_a_manual_forecast_line_item
    • First observedupdate_a_manual_hold
    • First observedupdate_a_note_of_the_project_v2_0_company
    • First observedupdate_a_note_of_the_project_v2_0_company_v2_0
    • First observedupdate_a_pdf_template_config_company
    • First observedupdate_a_pdf_template_config_company_v1_0
    • First observedupdate_a_permission_template_assignment_for_a_user_on_a_project
    • First observedupdate_a_person
    • First observedupdate_a_private_field_in_company_level_email_communication
    • First observedupdate_a_private_field_in_email_communication
    • First observedupdate_a_proposal_of_the_project_v2_0_company
    • First observedupdate_a_proposal_of_the_project_v2_0_company_v2_0
    • First observedupdate_a_response
    • First observedupdate_a_single_group
    • First observedupdate_a_single_project
    • First observedupdate_a_single_resource_request
    • First observedupdate_a_task_item_comment
    • First observedupdate_a_time_and_material_entry
    • First observedupdate_a_time_and_material_equipment_log
    • First observedupdate_a_time_and_material_notification
    • First observedupdate_a_time_off_record
    • First observedupdate_a_wbs_code
    • First observedupdate_accident_log
    • First observedupdate_action
    • First observedupdate_action_plan
    • First observedupdate_action_plan_item
    • First observedupdate_action_plan_item_assignee
    • First observedupdate_action_plan_section
    • First observedupdate_action_plan_verification_method
    • First observedupdate_actual_production_quantity
    • First observedupdate_advance_ball_in_court
    • First observedupdate_advance_ball_in_court_v1_1
    • First observedupdate_advanced_forecasting_rows_v2_0
    • First observedupdate_affliction_type
    • First observedupdate_all_classification
    • First observedupdate_all_company_segment_items
    • First observedupdate_all_project_segment_items
    • First observedupdate_an_equipment
    • First observedupdate_an_equipment_make
    • First observedupdate_an_equipment_model
    • First observedupdate_an_equipment_type
    • First observedupdate_an_estimate_line_item_of_the_proposal_v2_0_company
    • First observedupdate_an_estimate_line_item_of_the_proposal_v2_0_project
    • First observedupdate_an_project_equipment_log
    • First observedupdate_app_configuration
    • First observedupdate_app_installation
    • First observedupdate_assignees_and_workflow_manager_company_v2_0
    • First observedupdate_assignees_and_workflow_manager_project_v2_0
    • First observedupdate_bid_board_project_custom_field_v2_0
    • First observedupdate_bid_board_project_v2_0
    • First observedupdate_bid_form
    • First observedupdate_bid_form_v1_1
    • First observedupdate_bid_package
    • First observedupdate_billing_period
    • First observedupdate_bim_file
    • First observedupdate_bim_level
    • First observedupdate_bim_model
    • First observedupdate_bim_model_revision
    • First observedupdate_bim_plan
    • First observedupdate_budget_line_item
    • First observedupdate_budget_line_item_v1_1
    • First observedupdate_budget_modification
    • First observedupdate_calendar_item
    • First observedupdate_call_log
    • First observedupdate_catalog_v2_0
    • First observedupdate_category_name
    • First observedupdate_change_event
    • First observedupdate_change_event_production_quantity
    • First observedupdate_change_event_v1_1
    • First observedupdate_change_order_package
    • First observedupdate_change_order_request
    • First observedupdate_checklist
    • First observedupdate_checklist_inspection
    • First observedupdate_checklist_inspection_v1_1
    • First observedupdate_checklist_item
    • First observedupdate_checklist_section
    • First observedupdate_classification
    • First observedupdate_commitment_change_order
    • First observedupdate_commitment_change_order_batch
    • First observedupdate_commitment_change_order_line_item_v2_0
    • First observedupdate_commitment_contract_line_item_v2_0
    • First observedupdate_commitment_contract_v2_0
    • First observedupdate_company_action_plan_template_item_assignee
    • First observedupdate_company_action_plan_type
    • First observedupdate_company_checklist_section
    • First observedupdate_company_checklist_template
    • First observedupdate_company_currency_configuration
    • First observedupdate_company_exchange_rates
    • First observedupdate_company_file
    • First observedupdate_company_folder
    • First observedupdate_company_form_template
    • First observedupdate_company_inspection_template_item
    • First observedupdate_company_insurance
    • First observedupdate_company_office
    • First observedupdate_company_patterns_segment_order
    • First observedupdate_company_person
    • First observedupdate_company_segment_item
    • First observedupdate_company_tag
    • First observedupdate_company_upload
    • First observedupdate_company_upload_v1_1
    • First observedupdate_company_user
    • First observedupdate_company_user_v1_1
    • First observedupdate_company_user_v1_2
    • First observedupdate_company_user_v1_3
    • First observedupdate_company_vendor
    • First observedupdate_company_vendor_business_register
    • First observedupdate_company_vendor_insurance
    • First observedupdate_company_wbs_segment
    • First observedupdate_company_webhooks_hook_v2_0
    • First observedupdate_companys_logo
    • First observedupdate_concierge_parameters
    • First observedupdate_configurable_field_set
    • First observedupdate_context
    • First observedupdate_contract_payment
    • First observedupdate_contracts_invoice_configuration
    • First observedupdate_contributing_behavior
    • First observedupdate_contributing_condition
    • First observedupdate_coordination_issue
    • First observedupdate_coordination_issue_workflow_issue_v2_0
    • First observedupdate_cost_code
    • First observedupdate_cost_item_v2_0
    • First observedupdate_current_project_company_v2_0
    • First observedupdate_current_project_company_v2_1
    • First observedupdate_current_project_project_v2_0
    • First observedupdate_current_project_project_v2_1
    • First observedupdate_custom_field
    • First observedupdate_daily_construction_report_log
    • First observedupdate_delay_log
    • First observedupdate_deleted_equipment_serial_number
    • First observedupdate_delivery_log
    • First observedupdate_department
    • First observedupdate_direct_cost_item
    • First observedupdate_direct_cost_item_v1_1
    • First observedupdate_direct_cost_line_item
    • First observedupdate_drawing
    • First observedupdate_drawing_discipline_project
    • First observedupdate_drawing_discipline_project_v1_0
    • First observedupdate_drawing_discipline_v1_1
    • First observedupdate_drawing_revision
    • First observedupdate_drawing_set
    • First observedupdate_drawing_v1_1
    • First observedupdate_dumpster_log
    • First observedupdate_early_pay_program
    • First observedupdate_environmental
    • First observedupdate_equipment
    • First observedupdate_equipment_attachment_company_v2_0
    • First observedupdate_equipment_attachment_project_v2_0
    • First observedupdate_equipment_category
    • First observedupdate_equipment_category_company_v2_0
    • First observedupdate_equipment_company_v2_0
    • First observedupdate_equipment_company_v2_1
    • First observedupdate_equipment_log
    • First observedupdate_equipment_maintenance_log
    • First observedupdate_equipment_make_company_v2_0
    • First observedupdate_equipment_model_company_v2_0
    • First observedupdate_equipment_project_v2_0
    • First observedupdate_equipment_project_v2_1_company
    • First observedupdate_equipment_project_v2_1_company_v2_1
    • First observedupdate_equipment_status_company_v2_0
    • First observedupdate_equipment_timecard_entry_project
    • First observedupdate_equipment_type_company_v2_0
    • First observedupdate_existing_or_create_a_new_incident_alert_recipient
    • First observedupdate_filing_type
    • First observedupdate_form
    • First observedupdate_forward_for_review
    • First observedupdate_forward_for_review_v1_1
    • First observedupdate_generic_tool
    • First observedupdate_generic_tool_item
    • First observedupdate_generic_tool_item_response
    • First observedupdate_group
    • First observedupdate_group_order_rank
    • First observedupdate_harm_source
    • First observedupdate_hazard
    • First observedupdate_image
    • First observedupdate_image_category
    • First observedupdate_incident
    • First observedupdate_incident_action_type
    • First observedupdate_incident_severity_level
    • First observedupdate_information_of_a_budget_change
    • First observedupdate_injury
    • First observedupdate_inspection_log
    • First observedupdate_inspection_type
    • First observedupdate_instruction
    • First observedupdate_instruction_type
    • First observedupdate_item_response_set
    • First observedupdate_layer
    • First observedupdate_layer_order_rank
    • First observedupdate_line_item_type
    • First observedupdate_link
    • First observedupdate_location
    • First observedupdate_lookahead_task
    • First observedupdate_manpower_log
    • First observedupdate_material
    • First observedupdate_meeting
    • First observedupdate_meeting_attendee_record
    • First observedupdate_meeting_category
    • First observedupdate_meeting_topic
    • First observedupdate_meeting_topic_v1_1
    • First observedupdate_meeting_v1_1
    • First observedupdate_monitoring_resource
    • First observedupdate_multiple_time_and_material_entries
    • First observedupdate_near_miss
    • First observedupdate_notes_log
    • First observedupdate_observation_item
    • First observedupdate_payment_application_owner_invoice_for_prime_contract
    • First observedupdate_payment_application_owner_invoice_line_item_for_prime
    • First observedupdate_payment_application_owner_invoice_markup_line_item_for
    • First observedupdate_payments_beneficiary_classification
    • First observedupdate_plan_revision_log
    • First observedupdate_potential_change_order
    • First observedupdate_potential_change_order_line_item
    • First observedupdate_prime_change_order
    • First observedupdate_prime_change_order_batch
    • First observedupdate_prime_contract
    • First observedupdate_prime_contract_line_item
    • First observedupdate_prime_contract_line_item_v2_0_project
    • First observedupdate_prime_contract_line_item_v2_0_project_v2_0
    • First observedupdate_prime_contract_v2_0
    • First observedupdate_productivity_log
    • First observedupdate_program
    • First observedupdate_project
    • First observedupdate_project_account
    • First observedupdate_project_bid_type
    • First observedupdate_project_checklist_template
    • First observedupdate_project_currency_configuration
    • First observedupdate_project_distribution_group
    • First observedupdate_project_early_pay_programs
    • First observedupdate_project_equipment_maintenance_log
    • First observedupdate_project_exchange_rates
    • First observedupdate_project_file
    • First observedupdate_project_folder
    • First observedupdate_project_incident_configuration
    • First observedupdate_project_insurance
    • First observedupdate_project_location
    • First observedupdate_project_observation_type
    • First observedupdate_project_owner_type
    • First observedupdate_project_patterns_segment_order
    • First observedupdate_project_payor_pays_setting
    • First observedupdate_project_person
    • First observedupdate_project_region
    • First observedupdate_project_segment_item
    • First observedupdate_project_stage
    • First observedupdate_project_task_v2_0_company
    • First observedupdate_project_task_v2_0_company_v2_0
    • First observedupdate_project_tools
    • First observedupdate_project_type
    • First observedupdate_project_upload
    • First observedupdate_project_upload_v1_1
    • First observedupdate_project_user
    • First observedupdate_project_vendor
    • First observedupdate_project_vendor_insurance
    • First observedupdate_project_vendor_v1_1
    • First observedupdate_project_webhooks_hook_v2_0
    • First observedupdate_property_damage
    • First observedupdate_punch_item
    • First observedupdate_punch_item_assignment
    • First observedupdate_punch_item_type
    • First observedupdate_punch_item_v1_1
    • First observedupdate_purchase_order_contract
    • First observedupdate_purchase_order_contract_detail_line_item
    • First observedupdate_purchase_order_contract_line_item
    • First observedupdate_purchase_order_contract_subcontractor_sov_status
    • First observedupdate_quantity_log
    • First observedupdate_requisition_compliance_document_v2_0
    • First observedupdate_requisition_subcontractor_invoice
    • First observedupdate_requisition_subcontractor_invoice_change_order_item
    • First observedupdate_requisition_subcontractor_invoice_contract_detail_item
    • First observedupdate_requisition_subcontractor_invoice_contract_item
    • First observedupdate_requisition_subcontractor_invoice_v1_1
    • First observedupdate_requisition_subcontractor_invoice_whole_change_order_item
    • First observedupdate_resource
    • First observedupdate_resource_v1_1
    • First observedupdate_rfi
    • First observedupdate_rfi_reply
    • First observedupdate_rfq
    • First observedupdate_rfq_quote
    • First observedupdate_rfq_response
    • First observedupdate_rounding_configuration
    • First observedupdate_safety_violation_log
    • First observedupdate_schedule_integration_type
    • First observedupdate_schedule_metadata
    • First observedupdate_specification_area_v2_1
    • First observedupdate_specification_configurations_v2_1
    • First observedupdate_stamp_v2_0
    • First observedupdate_standard_cost_code
    • First observedupdate_standard_cost_code_list
    • First observedupdate_status_of_equipment_company_v2_1
    • First observedupdate_status_of_equipment_project_v2_1
    • First observedupdate_sub_job
    • First observedupdate_subcategory_name
    • First observedupdate_submittal
    • First observedupdate_submittal_approver
    • First observedupdate_submittal_v1_1
    • First observedupdate_task
    • First observedupdate_task_item
    • First observedupdate_tax_code
    • First observedupdate_tax_type
    • First observedupdate_the_change_event_settings_for_the_project_v2_0
    • First observedupdate_the_compliance_information_for_a_purchase_order_contract
    • First observedupdate_the_compliance_information_for_a_work_order_contract
    • First observedupdate_the_due_date_for_a_requisition_subcontractor_invoice_v2_0
    • First observedupdate_the_state_of_a_daily_log_header
    • First observedupdate_time_and_material_timecard
    • First observedupdate_timecard_entries
    • First observedupdate_timecard_entry
    • First observedupdate_timecard_entry_company
    • First observedupdate_timecard_entry_project
    • First observedupdate_timecard_entry_signature_project
    • First observedupdate_timecard_time_type
    • First observedupdate_timeline_event_v2_0
    • First observedupdate_timesheet
    • First observedupdate_timesheet_status
    • First observedupdate_timesheet_to_budget_configuration
    • First observedupdate_timesheet_v1_1
    • First observedupdate_todo
    • First observedupdate_unit_of_measure
    • First observedupdate_unmanaged_equipment_project_v2_0
    • First observedupdate_user_permission
    • First observedupdate_user_project_roles
    • First observedupdate_vendor_project_roles
    • First observedupdate_viewpoint_mapping_and_or_model_manager_viewpoint_content
    • First observedupdate_visitor_log
    • First observedupdate_waste_log
    • First observedupdate_wbs_attribute_item_v2_0
    • First observedupdate_wbs_attributes_v2_0
    • First observedupdate_weather_log
    • First observedupdate_weather_log_v1_1
    • First observedupdate_webhooks_hook
    • First observedupdate_witness_statement
    • First observedupdate_work_activity
    • First observedupdate_work_log
    • First observedupdate_work_order_contract
    • First observedupdate_work_order_contract_detail_line_item
    • First observedupdate_work_order_contract_line_item
    • First observedupdate_work_order_contract_subcontractor_sov_status
    • First observedupdate_workflow_preset_company_v2_0
    • First observedupdate_workflow_preset_project_v2_0
    • First observedupdates_a_company_inspection_template_item_evidence
    • First observedupdates_a_project_inspection_template_item_evidence
    • First observedupload_schedule_file_v1_0
    • First observedupload_schedule_file_v1_0_2
    • First observedvalidate_custom_fields_values_with_configurable_field_set
    • First observedvalidate_disbursement
    • First observedvalidate_existing_disbursement
    • First observedview_an_action_plan_test_record
    • First observedview_bid_form_company
    • First observedview_bid_form_project

TDQS

A4.8/5.0
Disambiguation5/5

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.

Naming Consistency4/5

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.

Tool Count5/5

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.

Completeness5/5

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

ActivityMaintained
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

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