Show Asset
show_asset_companyFetch complete asset details for a given company and asset ID. Get the full field set for a known asset without modifying Procore data.
Instructions
Returns Asset Details by given Company & Asset. Use this when you already know which asset you want and need its full field set. company_id defaults to the value set by procore_set_config when omitted, and asset_id must identify an existing parent record — resolve it with the matching list tool first. Returns a single JSON object describing the asset. 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, asset_id. Procore API (v2.0): Core > Assets. Endpoint: GET /rest/v2.0/companies/{company_id}/assets/{asset_id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| asset_id | Yes | URL path parameter — unique identifier for the asset | |
| company_id | Yes | URL path parameter — unique identifier for the company. | |
| Accept-Language | No | JSON request body field — locale for localized response messages (for example: en, fr-FR, pseudo) | |
| wrap_custom_fields | No | Query string parameter — when true, wraps each custom field value as {"value": ...} and renames "name" to "label" inside LOV objects. |