{ "opencollection": "1.0.0", "info": { "name": "PostHog actions llm_skills API", "version": "1.0.0" }, "items": [ { "info": { "name": "llm_skills", "type": "folder" }, "items": [ { "info": { "name": "llm_skills_list", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/environments/:project_id/llm_skills/", "params": [ { "name": "created_by_id", "value": "", "type": "query", "description": "Filter skills by the ID of the user who created them." }, { "name": "limit", "value": "", "type": "query", "description": "Number of results to return per page." }, { "name": "offset", "value": "", "type": "query", "description": "The initial index from which to return the results." }, { "name": "project_id", "value": "", "type": "path", "description": "Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/." }, { "name": "search", "value": "", "type": "query", "description": "Optional substring filter applied to skill names and descriptions." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "llm_skills_create", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/environments/:project_id/llm_skills/", "params": [ { "name": "project_id", "value": "", "type": "path", "description": "Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/." } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "llm_skills_name_retrieve", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/environments/:project_id/llm_skills/name/:skill_name/", "params": [ { "name": "project_id", "value": "", "type": "path", "description": "Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/." }, { "name": "skill_name", "value": "", "type": "path" }, { "name": "version", "value": "", "type": "query", "description": "Specific skill version to fetch. If omitted, the latest version is returned." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "llm_skills_name_partial_update", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/api/environments/:project_id/llm_skills/name/:skill_name/", "params": [ { "name": "project_id", "value": "", "type": "path", "description": "Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/." }, { "name": "skill_name", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "llm_skills_name_archive_create", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/environments/:project_id/llm_skills/name/:skill_name/archive/", "params": [ { "name": "project_id", "value": "", "type": "path", "description": "Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/." }, { "name": "skill_name", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "llm_skills_name_duplicate_create", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/environments/:project_id/llm_skills/name/:skill_name/duplicate/", "params": [ { "name": "project_id", "value": "", "type": "path", "description": "Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/." }, { "name": "skill_name", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "llm_skills_name_files_create", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/environments/:project_id/llm_skills/name/:skill_name/files/", "params": [ { "name": "project_id", "value": "", "type": "path", "description": "Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/." }, { "name": "skill_name", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "llm_skills_name_files_rename_create", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/environments/:project_id/llm_skills/name/:skill_name/files-rename/", "params": [ { "name": "project_id", "value": "", "type": "path", "description": "Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/." }, { "name": "skill_name", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "llm_skills_name_files_retrieve", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/environments/:project_id/llm_skills/name/:skill_name/files/:file_path/", "params": [ { "name": "file_path", "value": "", "type": "path" }, { "name": "project_id", "value": "", "type": "path", "description": "Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/." }, { "name": "skill_name", "value": "", "type": "path" }, { "name": "version", "value": "", "type": "query", "description": "Specific skill version to fetch. If omitted, the latest version is returned." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "llm_skills_name_files_destroy", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/environments/:project_id/llm_skills/name/:skill_name/files/:file_path/", "params": [ { "name": "base_version", "value": "", "type": "query", "description": "Latest version you are editing from. If provided, the request fails with 409 when another write has landed in the meantime." }, { "name": "file_path", "value": "", "type": "path" }, { "name": "project_id", "value": "", "type": "path", "description": "Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/." }, { "name": "skill_name", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "llm_skills_resolve_name_retrieve", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/environments/:project_id/llm_skills/resolve/name/:skill_name/", "params": [ { "name": "before_version", "value": "", "type": "query", "description": "Return versions older than this version number. Mutually exclusive with offset." }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of versions to return per page (1-100)." }, { "name": "offset", "value": "", "type": "query", "description": "Zero-based offset into version history for pagination. Mutually exclusive with before_version." }, { "name": "project_id", "value": "", "type": "path", "description": "Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/." }, { "name": "skill_name", "value": "", "type": "path" }, { "name": "version", "value": "", "type": "query", "description": "Specific skill version to fetch. If omitted, the latest version is returned." }, { "name": "version_id", "value": "", "type": "query", "description": "Exact skill version UUID to resolve." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } } ] } ], "bundled": true }