{"files":{"SKILL.md":"---\nname: crm-owners\ndescription: \"Crm Owners API skill. Use when working with Crm Owners for crm. Covers 2 endpoints.\"\nversion: 1.0.0\ngenerator: lapsh\n---\n\n# Crm Owners\nAPI version: v3\n\n## Auth\nApiKey hapikey in query | OAuth2 | ApiKey private-app in header | ApiKey private-app-legacy in header\n\n## Base URL\nhttps://api.hubapi.com\n\n## Setup\n1. Set your API key in the appropriate header\n2. GET /crm/v3/owners -- verify access\n\n## Endpoints\n\n2 endpoints across 1 groups. See references/api-spec.lap for full details.\n\n### crm\n| Method | Path | Description |\n|--------|------|-------------|\n| GET | /crm/v3/owners |  |\n| GET | /crm/v3/owners/{ownerId} | Retrieve a specific owner by ID |\n\n## Common Questions\n\nMatch user requests to endpoints in references/api-spec.lap. Key patterns:\n- \"List all owners?\" -> GET /crm/v3/owners\n- \"Get owner details?\" -> GET /crm/v3/owners/{ownerId}\n- \"How to authenticate?\" -> See Auth section\n\n## Response Tips\n- Check response schemas in references/api-spec.lap for field details\n- List endpoints may support pagination; check for limit, offset, or cursor params\n\n## CLI\n\n```bash\n# Update this spec to the latest version\nnpx @lap-platform/lapsh get crm-owners -o references/api-spec.lap\n\n# Search for related APIs\nnpx @lap-platform/lapsh search crm-owners\n```\n\n## References\n- Full spec: See references/api-spec.lap for complete endpoint details, parameter tables, and response schemas\n\n> Generated from the official API spec by [LAP](https://lap.sh)\n","references/api-spec.lap":"@lap v0.3\n# Machine-readable API spec. Each @endpoint block is one API call.\n@api Crm Owners\n@base https://api.hubapi.com\n@version v3\n@auth ApiKey hapikey in query | OAuth2 | ApiKey private-app in header | ApiKey private-app-legacy in header\n@endpoints 2\n@toc crm(2)\n\n@endpoint GET /crm/v3/owners\n@optional {after: str, archived: bool=false, email: str, limit: int(int32)=100}\n@returns(200) {paging: map{next: map{after: str, link: str}}, results: [map]} # successful operation\n\n@endpoint GET /crm/v3/owners/{ownerId}\n@desc Retrieve a specific owner by ID\n@required {ownerId: int(int32)}\n@optional {archived: bool=false # Whether to return only results that have been archived., idProperty: str(id/userId)=id}\n@returns(200) {archived: bool, createdAt: str(date-time), email: str, firstName: str, id: str, lastName: str, teams: [map], type: str, updatedAt: str(date-time), userId: int(int32), userIdIncludingInactive: int(int32)} # successful operation\n\n@end\n"}}