action configcat_get_products { label: "List Products" description: "This endpoint returns the list of the Products that belongs to the user." provider: configcat method: GET path: "/v1/products" encoding: json output: { type: "array" items: { type: "object" properties: { description: { type: "string" } name: { type: "string" } order: { type: "integer" format: "int32" } organization: { type: "object" properties: { name: { type: "string" } organizationId: { type: "string" format: "uuid" } } additionalProperties: false } productId: { type: "string" format: "uuid" } reasonRequired: { type: "boolean" } } additionalProperties: false } } }