{ "opencollection": "1.0.0", "info": { "name": "PostHog actions platform_features API", "version": "1.0.0" }, "items": [ { "info": { "name": "platform_features", "type": "folder" }, "items": [ { "info": { "name": "approval_policies_list", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/environments/:project_id/approval_policies/", "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": "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/." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "approval_policies_create", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/environments/:project_id/approval_policies/", "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": "approval_policies_retrieve", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/environments/:project_id/approval_policies/:id/", "params": [ { "name": "id", "value": "", "type": "path", "description": "A UUID string identifying this approval policy." }, { "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/." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "approval_policies_update", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/api/environments/:project_id/approval_policies/:id/", "params": [ { "name": "id", "value": "", "type": "path", "description": "A UUID string identifying this approval policy." }, { "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": "approval_policies_partial_update", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/api/environments/:project_id/approval_policies/:id/", "params": [ { "name": "id", "value": "", "type": "path", "description": "A UUID string identifying this approval policy." }, { "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": "approval_policies_destroy", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/environments/:project_id/approval_policies/:id/", "params": [ { "name": "id", "value": "", "type": "path", "description": "A UUID string identifying this approval policy." }, { "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/." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "change_requests_list", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/environments/:project_id/change_requests/", "params": [ { "name": "action_key", "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." }, { "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": "requester", "value": "", "type": "query" }, { "name": "resource_id", "value": "", "type": "query" }, { "name": "resource_type", "value": "", "type": "query" }, { "name": "state", "value": "", "type": "query", "description": "Multiple values may be separated by commas." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "change_requests_retrieve", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/environments/:project_id/change_requests/:id/", "params": [ { "name": "id", "value": "", "type": "path", "description": "A UUID string identifying this change request." }, { "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/." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "change_requests_approve_create", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/environments/:project_id/change_requests/:id/approve/", "params": [ { "name": "id", "value": "", "type": "path", "description": "A UUID string identifying this change request." }, { "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}}" } }, "docs": "Approve a change request.\nIf quorum is reached, automatically applies the change immediately." }, { "info": { "name": "change_requests_cancel_create", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/environments/:project_id/change_requests/:id/cancel/", "params": [ { "name": "id", "value": "", "type": "path", "description": "A UUID string identifying this change request." }, { "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}}" } }, "docs": "Cancel a change request.\nOnly the requester can cancel their own pending change request." }, { "info": { "name": "change_requests_reject_create", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/environments/:project_id/change_requests/:id/reject/", "params": [ { "name": "id", "value": "", "type": "path", "description": "A UUID string identifying this change request." }, { "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}}" } }, "docs": "Reject a change request." }, { "info": { "name": "list", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/organizations/", "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." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "create", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/organizations/", "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "retrieve", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/organizations/:id/", "params": [ { "name": "id", "value": "", "type": "path", "description": "A UUID string identifying this organization." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "update", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/api/organizations/:id/", "params": [ { "name": "id", "value": "", "type": "path", "description": "A UUID string identifying this organization." } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "partial_update", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/api/organizations/:id/", "params": [ { "name": "id", "value": "", "type": "path", "description": "A UUID string identifying this organization." } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "destroy", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/organizations/:id/", "params": [ { "name": "id", "value": "", "type": "path", "description": "A UUID string identifying this organization." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "members_list", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/organizations/:organization_id/members/", "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": "order", "value": "", "type": "query", "description": "Sort order. Defaults to `-joined_at`." }, { "name": "organization_id", "value": "", "type": "path", "description": "ID of the organization you're trying to access. To find the ID of the organization, make a call to /api/organizations/." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "members_update", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/api/organizations/:organization_id/members/:user__uuid/", "params": [ { "name": "organization_id", "value": "", "type": "path", "description": "ID of the organization you're trying to access. To find the ID of the organization, make a call to /api/organizations/." }, { "name": "user__uuid", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "members_partial_update", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/api/organizations/:organization_id/members/:user__uuid/", "params": [ { "name": "organization_id", "value": "", "type": "path", "description": "ID of the organization you're trying to access. To find the ID of the organization, make a call to /api/organizations/." }, { "name": "user__uuid", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "members_destroy", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/organizations/:organization_id/members/:user__uuid/", "params": [ { "name": "organization_id", "value": "", "type": "path", "description": "ID of the organization you're trying to access. To find the ID of the organization, make a call to /api/organizations/." }, { "name": "user__uuid", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "members_scoped_api_keys_retrieve", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/organizations/:organization_id/members/:user__uuid/scoped_api_keys/", "params": [ { "name": "organization_id", "value": "", "type": "path", "description": "ID of the organization you're trying to access. To find the ID of the organization, make a call to /api/organizations/." }, { "name": "user__uuid", "value": "", "type": "path" } ] } }, { "info": { "name": "roles_list", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/organizations/:organization_id/roles/", "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": "organization_id", "value": "", "type": "path", "description": "ID of the organization you're trying to access. To find the ID of the organization, make a call to /api/organizations/." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "roles_create", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/organizations/:organization_id/roles/", "params": [ { "name": "organization_id", "value": "", "type": "path", "description": "ID of the organization you're trying to access. To find the ID of the organization, make a call to /api/organizations/." } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "roles_retrieve", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/organizations/:organization_id/roles/:id/", "params": [ { "name": "id", "value": "", "type": "path", "description": "A UUID string identifying this role." }, { "name": "organization_id", "value": "", "type": "path", "description": "ID of the organization you're trying to access. To find the ID of the organization, make a call to /api/organizations/." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "roles_update", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/api/organizations/:organization_id/roles/:id/", "params": [ { "name": "id", "value": "", "type": "path", "description": "A UUID string identifying this role." }, { "name": "organization_id", "value": "", "type": "path", "description": "ID of the organization you're trying to access. To find the ID of the organization, make a call to /api/organizations/." } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "roles_partial_update", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/api/organizations/:organization_id/roles/:id/", "params": [ { "name": "id", "value": "", "type": "path", "description": "A UUID string identifying this role." }, { "name": "organization_id", "value": "", "type": "path", "description": "ID of the organization you're trying to access. To find the ID of the organization, make a call to /api/organizations/." } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "roles_destroy", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/organizations/:organization_id/roles/:id/", "params": [ { "name": "id", "value": "", "type": "path", "description": "A UUID string identifying this role." }, { "name": "organization_id", "value": "", "type": "path", "description": "ID of the organization you're trying to access. To find the ID of the organization, make a call to /api/organizations/." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "roles_role_memberships_list", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/organizations/:organization_id/roles/:role_id/role_memberships/", "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": "organization_id", "value": "", "type": "path", "description": "ID of the organization you're trying to access. To find the ID of the organization, make a call to /api/organizations/." }, { "name": "role_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "roles_role_memberships_create", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/organizations/:organization_id/roles/:role_id/role_memberships/", "params": [ { "name": "organization_id", "value": "", "type": "path", "description": "ID of the organization you're trying to access. To find the ID of the organization, make a call to /api/organizations/." }, { "name": "role_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "roles_role_memberships_retrieve", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/organizations/:organization_id/roles/:role_id/role_memberships/:id/", "params": [ { "name": "id", "value": "", "type": "path", "description": "A UUID string identifying this role membership." }, { "name": "organization_id", "value": "", "type": "path", "description": "ID of the organization you're trying to access. To find the ID of the organization, make a call to /api/organizations/." }, { "name": "role_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "roles_role_memberships_destroy", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/organizations/:organization_id/roles/:role_id/role_memberships/:id/", "params": [ { "name": "id", "value": "", "type": "path", "description": "A UUID string identifying this role membership." }, { "name": "organization_id", "value": "", "type": "path", "description": "ID of the organization you're trying to access. To find the ID of the organization, make a call to /api/organizations/." }, { "name": "role_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "welcome_current_retrieve", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/organizations/:organization_id/welcome/current/", "params": [ { "name": "organization_id", "value": "", "type": "path", "description": "ID of the organization you're trying to access. To find the ID of the organization, make a call to /api/organizations/." } ] }, "docs": "Aggregated payload for the invited-user welcome screen." }, { "info": { "name": "activity_log_list", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/projects/:project_id/activity_log/", "params": [ { "name": "item_id", "value": "", "type": "query", "description": "Filter by the ID of the affected resource." }, { "name": "page", "value": "", "type": "query", "description": "Page number for pagination. When provided, uses page-based pagination ordered by most recent first." }, { "name": "page_size", "value": "", "type": "query", "description": "Number of results per page (default: 100, max: 1000). Only used with page-based pagination." }, { "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": "scope", "value": "", "type": "query", "description": "Filter by a single activity scope, e.g. \"FeatureFlag\", \"Insight\", \"Dashboard\", \"Experiment\".\n\n* `Cohort` - Cohort\n* `FeatureFlag` - FeatureFlag\n* `Person` - Person\n* `Group` - Group\n* `Insight` - Insight\n* `Plugin` - Plugin\n* `PluginConfig` - PluginConfig\n* `HogFunction` - HogFunction\n* `HogFlow` - HogFlow\n* `DataManagement` - DataManagement\n* `EventDefinition` - EventDefinition\n* `PropertyDefinition` - PropertyDefinition\n* `Notebook` - Notebook\n* `Endpoint` - Endpoint\n* `EndpointVersion` - EndpointVersion\n* `Dashboard` - Dashboard\n* `Replay` - Replay\n* `Experiment` - Experiment\n* `ExperimentHoldout` - ExperimentHoldout\n* `ExperimentSavedMetric` - ExperimentSavedMetric\n* `Survey` - Survey\n* `EarlyAccessFeature` - EarlyAccessFeature\n* `SessionRecordingPlaylist` - SessionRecordingPlaylist\n* `Comment` - Comment\n* `Team` - Team\n* `Project` - Project\n* `ErrorTrackingIssue` - ErrorTrackingIssue\n* `DataWarehouseSavedQuery` - DataWarehouseSavedQuery\n* `LegalDocument` - LegalDocument\n* `Organization` - Organization\n* `OrganizationDomain` - OrganizationDomain\n* `OrganizationMembership` - OrganizationMembership\n* `Role` - Role\n* `UserGroup` - UserGroup\n* `BatchExport` - BatchExport\n* `BatchImport` - BatchImport\n* `Integration` - Integration\n* `Annotation` - Annotation\n* `Tag` - Tag\n* `TaggedItem` - TaggedItem\n* `Subscription` - Subscription\n* `PersonalAPIKey` - PersonalAPIKey\n* `ProjectSecretAPIKey` - ProjectSecretAPIKey\n* `User` - User\n* `Action` - Action\n* `AlertConfiguration` - AlertConfiguration\n* `Threshold` - Threshold\n* `AlertSubscription` - AlertSubscription\n* `ExternalDataSource` - ExternalDataSource\n* `ExternalDataSchema` - ExternalDataSchema\n* `LLMTrace` - LLMTrace\n* `WebAnalyticsFilterPreset` - WebAnalyticsFilterPreset\n* `CustomerProfileConfig` - CustomerProfileConfig\n* `Log` - Log\n* `LogsAlertConfiguration` - LogsAlertConfiguration\n* `LogsExclusionRule` - LogsExclusionRule\n* `ProductTour` - ProductTour\n* `Ticket` - Ticket" }, { "name": "scopes", "value": "", "type": "query", "description": "Filter by multiple activity scopes, comma-separated. Values must be valid ActivityScope enum values. E.g. \"FeatureFlag,Insight\"." }, { "name": "user", "value": "", "type": "query", "description": "Filter by user UUID who performed the action." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "advanced_activity_logs_list", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/projects/:project_id/advanced_activity_logs/", "params": [ { "name": "activities", "value": "", "type": "query" }, { "name": "clients", "value": "", "type": "query" }, { "name": "detail_filters", "value": "", "type": "query" }, { "name": "end_date", "value": "", "type": "query" }, { "name": "hogql_filter", "value": "", "type": "query" }, { "name": "is_system", "value": "", "type": "query" }, { "name": "item_ids", "value": "", "type": "query" }, { "name": "page", "value": "", "type": "query", "description": "Page number for pagination. When provided, uses page-based pagination ordered by most recent first." }, { "name": "page_size", "value": "", "type": "query", "description": "Number of results per page (default: 100, max: 1000). Only used with page-based pagination." }, { "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": "scopes", "value": "", "type": "query" }, { "name": "search_text", "value": "", "type": "query" }, { "name": "start_date", "value": "", "type": "query" }, { "name": "users", "value": "", "type": "query" }, { "name": "was_impersonated", "value": "", "type": "query" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "advanced_activity_logs_available_filters_retrieve", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/projects/:project_id/advanced_activity_logs/available_filters/", "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/." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "advanced_activity_logs_export_create", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/projects/:project_id/advanced_activity_logs/export/", "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": "{}" } } }, { "info": { "name": "comments_list", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/projects/:project_id/comments/", "params": [ { "name": "cursor", "value": "", "type": "query", "description": "The pagination cursor value." }, { "name": "item_id", "value": "", "type": "query", "description": "Filter by the ID of the resource being commented on." }, { "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": "scope", "value": "", "type": "query", "description": "Filter by resource type (e.g. Dashboard, FeatureFlag, Insight, Replay)." }, { "name": "search", "value": "", "type": "query", "description": "Full-text search within comment content." }, { "name": "source_comment", "value": "", "type": "query", "description": "Filter replies to a specific parent comment." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "comments_create", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/projects/:project_id/comments/", "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": "comments_retrieve", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/projects/:project_id/comments/:id/", "params": [ { "name": "id", "value": "", "type": "path", "description": "A UUID string identifying this comment." }, { "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/." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "comments_update", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/api/projects/:project_id/comments/:id/", "params": [ { "name": "id", "value": "", "type": "path", "description": "A UUID string identifying this comment." }, { "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": "comments_partial_update", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/api/projects/:project_id/comments/:id/", "params": [ { "name": "id", "value": "", "type": "path", "description": "A UUID string identifying this comment." }, { "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": "comments_destroy", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/projects/:project_id/comments/:id/", "params": [ { "name": "id", "value": "", "type": "path", "description": "A UUID string identifying this comment." }, { "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/." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Hard delete of this model is not allowed. Use a patch API call to set \"deleted\" to true" }, { "info": { "name": "comments_thread_retrieve", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/projects/:project_id/comments/:id/thread/", "params": [ { "name": "id", "value": "", "type": "path", "description": "A UUID string identifying this comment." }, { "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/." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "comments_count_retrieve", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/projects/:project_id/comments/count/", "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/." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } } }, { "info": { "name": "user_home_settings_retrieve", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/user_home_settings/:uuid/", "params": [ { "name": "uuid", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Get the authenticated user's pinned sidebar tabs and configured homepage for the current team. Pass `@me` as the UUID." }, { "info": { "name": "user_home_settings_partial_update", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/api/user_home_settings/:uuid/", "params": [ { "name": "uuid", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Update the authenticated user's pinned sidebar tabs and/or homepage for the current team. Pass `@me` as the UUID. Send `tabs` to replace the pinned tab list, `homepage` to set the home destination (any PostHog URL — dashboard, insight, search results, scene). Either field may be omitted to leave it unchanged; sending `homepage: null` or `{}` clears the homepage." } ] } ], "bundled": true }