action posthog_posthog_connections_target_retrieve { label: "Read the connected project's identity" description: "Resolve which project, organization and region a PostHog connection points at, so callers can build target API paths without reading `api/users/@me/` through the connection first." provider: posthog method: GET path: "/api/projects/{project_id}/posthog_connections/{id}/target/" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["base_url", "organization_id", "organization_name", "project_id", "project_name", "region"] properties: { base_url: { type: "string" description: "Base URL requests through this connection are sent to." } organization_id: { type: "string" description: "Id of the organization the connected project belongs to." } organization_name: { type: "string" description: "Name of the organization the connected project belongs to." } project_id: { type: "integer" description: "Project id to use in target API paths. It is the connected project's id, not this one's." } project_name: { type: "string" description: "Name of the connected project." } region: { type: "string" description: "Cloud region the connected project lives in, e.g. `US` or `EU`." } } } }