List App Configurations
list_app_configurationsRetrieve app configurations for a company or project to discover available configurations and find their IDs before using other tools. Read-only, supports pagination and filtering.
Instructions
Returns a list of app configurations on a given company or project. Use this to discover app configurations or to look up the id of one before calling a tool that needs it. company_id defaults to the value set by procore_set_config when omitted. Returns a JSON array of app configurations; page and per_page control pagination and the response reports how many pages remain. Read-only — it changes nothing in Procore. Failures come back as an error payload carrying the HTTP status — commonly 401 when the token has expired, 403 without tool permission, and 404 when an id does not resolve. Required parameters: company_id. Procore API: Platform - Developer Tools > App Marketplace. Endpoint: GET /rest/v1.0/companies/{company_id}/app_configurations
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Query string parameter — page number for paginated results (default: 1) | |
| sort | No | Query string parameter — direction (asc/desc) can be controlled by the presence or absence of '-' before the sort parameter. | |
| per_page | No | Query string parameter — number of items per page (default: 100, max: 100) | |
| company_id | Yes | URL path parameter — unique identifier for the company. | |
| filters__project_id | No | Query string parameter — filter results by project id | |
| filters__app_installation_id | No | Query string parameter — filter results by app installation id |