action configcat_get_organizations { label: "List Organizations" description: "This endpoint returns the list of the Organizations that belongs to the user." provider: configcat method: GET path: "/v1/organizations" encoding: json output: { type: "array" items: { type: "object" properties: { name: { type: "string" } organizationId: { type: "string" format: "uuid" } } additionalProperties: false } } }