{ "opencollection": "1.0.0", "info": { "name": "PostHog actions users API", "version": "1.0.0" }, "items": [ { "info": { "name": "users", "type": "folder" }, "items": [ { "info": { "name": "users_list", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/users/", "params": [ { "name": "email", "value": "", "type": "query" }, { "name": "is_staff", "value": "", "type": "query" }, { "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." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "users_signal_autonomy_retrieve", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/users/:user_id/signal_autonomy/", "params": [ { "name": "user_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Per-user signal autonomy config (singleton keyed by user).\n\nGET /api/users//signal_autonomy/ → current config (or 404)\nPOST /api/users//signal_autonomy/ → create or update\nDELETE /api/users//signal_autonomy/ → remove (opt out)" }, { "info": { "name": "users_signal_autonomy_create", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/users/:user_id/signal_autonomy/", "params": [ { "name": "user_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Per-user signal autonomy config (singleton keyed by user).\n\nGET /api/users//signal_autonomy/ → current config (or 404)\nPOST /api/users//signal_autonomy/ → create or update\nDELETE /api/users//signal_autonomy/ → remove (opt out)" }, { "info": { "name": "users_signal_autonomy_destroy", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/users/:user_id/signal_autonomy/", "params": [ { "name": "user_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Per-user signal autonomy config (singleton keyed by user).\n\nGET /api/users//signal_autonomy/ → current config (or 404)\nPOST /api/users//signal_autonomy/ → create or update\nDELETE /api/users//signal_autonomy/ → remove (opt out)" }, { "info": { "name": "users_retrieve", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/users/:uuid/", "params": [ { "name": "uuid", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieve a user's profile and settings. Pass `@me` as the UUID to fetch the authenticated user; non-staff callers may only access their own account." }, { "info": { "name": "users_update", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/api/users/:uuid/", "params": [ { "name": "uuid", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Replace the authenticated user's profile and settings. Pass `@me` as the UUID to update the authenticated user. Prefer the PATCH endpoint for partial updates — PUT requires every writable field to be provided." }, { "info": { "name": "users_partial_update", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/api/users/:uuid/", "params": [ { "name": "uuid", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Update one or more of the authenticated user's profile fields or settings." }, { "info": { "name": "users_destroy", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/users/:uuid/", "params": [ { "name": "uuid", "value": "", "type": "path" } ] } }, { "info": { "name": "users_github_login_retrieve", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/users/:uuid/github_login/", "params": [ { "name": "uuid", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "users_hedgehog_config_retrieve", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/users/:uuid/hedgehog_config/", "params": [ { "name": "uuid", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "users_hedgehog_config_partial_update", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/api/users/:uuid/hedgehog_config/", "params": [ { "name": "uuid", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "List personal GitHub integrations", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/users/:uuid/integrations/", "params": [ { "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": "uuid", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "`/api/users/@me/integrations/` — manage the user's personal GitHub integrations." }, { "info": { "name": "Disconnect a personal GitHub integration", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/users/:uuid/integrations/github/:installation_id/", "params": [ { "name": "installation_id", "value": "", "type": "path" }, { "name": "uuid", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Remove a specific GitHub installation by its installation_id." }, { "info": { "name": "List branches for a personal GitHub installation repository", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/users/:uuid/integrations/github/:installation_id/branches/", "params": [ { "name": "installation_id", "value": "", "type": "path" }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of branches to return" }, { "name": "offset", "value": "", "type": "query", "description": "Number of branches to skip" }, { "name": "repo", "value": "", "type": "query", "description": "Repository in owner/repo format" }, { "name": "search", "value": "", "type": "query", "description": "Optional case-insensitive branch name search query." }, { "name": "uuid", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "List branches for a repository accessible to a personal GitHub installation." }, { "info": { "name": "List repositories for a personal GitHub installation", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/users/:uuid/integrations/github/:installation_id/repos/", "params": [ { "name": "installation_id", "value": "", "type": "path" }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of repositories to return per request (max 500)." }, { "name": "offset", "value": "", "type": "query", "description": "Number of repositories to skip before returning results." }, { "name": "search", "value": "", "type": "query", "description": "Optional case-insensitive repository name search query." }, { "name": "uuid", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "List repositories accessible to a specific GitHub installation (paginated, cached)." }, { "info": { "name": "Refresh repositories for a personal GitHub installation", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/users/:uuid/integrations/github/:installation_id/repos/refresh/", "params": [ { "name": "installation_id", "value": "", "type": "path" }, { "name": "uuid", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Refresh repositories accessible to a specific GitHub installation." }, { "info": { "name": "Start GitHub personal integration linking", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/users/:uuid/integrations/github/start/", "params": [ { "name": "uuid", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Start GitHub linking: either full App install or OAuth-only (user-to-server).\n\n``**_kwargs`` absorbs ``parent_lookup_uuid`` from the nested\n``/api/users/{uuid}/integrations/`` router (same pattern as ``local_evaluation``\nunder projects).\n\nUsually returns ``install_url`` pointing at ``/installations/new`` so the\nuser can pick any GitHub org (new or already connected). GitHub's install\npage handles both cases: orgs where the app is installed show \"Configure\"\n(no admin needed), orgs where it isn't" }, { "info": { "name": "users_scene_personalisation_create", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/users/:uuid/scene_personalisation/", "params": [ { "name": "uuid", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } } }, { "info": { "name": "users_start_2fa_setup_retrieve", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/users/:uuid/start_2fa_setup/", "params": [ { "name": "uuid", "value": "", "type": "path" } ] } }, { "info": { "name": "users_two_factor_backup_codes_create", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/users/:uuid/two_factor_backup_codes/", "params": [ { "name": "uuid", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Generate new backup codes, invalidating any existing ones" }, { "info": { "name": "users_two_factor_disable_create", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/users/:uuid/two_factor_disable/", "params": [ { "name": "uuid", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Disable 2FA and remove all related devices" }, { "info": { "name": "users_two_factor_start_setup_retrieve", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/users/:uuid/two_factor_start_setup/", "params": [ { "name": "uuid", "value": "", "type": "path" } ] } }, { "info": { "name": "users_two_factor_status_retrieve", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/users/:uuid/two_factor_status/", "params": [ { "name": "uuid", "value": "", "type": "path" } ] }, "docs": "Get current 2FA status including backup codes if enabled" }, { "info": { "name": "users_two_factor_validate_create", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/users/:uuid/two_factor_validate/", "params": [ { "name": "uuid", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } } }, { "info": { "name": "users_validate_2fa_create", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/users/:uuid/validate_2fa/", "params": [ { "name": "uuid", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } } }, { "info": { "name": "users_cancel_email_change_request_partial_update", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/api/users/cancel_email_change_request/", "body": { "type": "json", "data": "{}" } } }, { "info": { "name": "users_request_email_verification_create", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/users/request_email_verification/", "body": { "type": "json", "data": "{}" } } }, { "info": { "name": "users_verify_email_create", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/users/verify_email/", "body": { "type": "json", "data": "{}" } } } ] } ], "bundled": true }