action configcat_get_settings { label: "List Flags" description: "This endpoint returns the list of the Feature Flags and Settings defined in a \nspecified Config, identified by the `configId` parameter." provider: configcat method: GET path: "/v1/configs/{configId}/settings" encoding: json input: { type: "object" properties: { configId: { type: "string" format: "uuid" } } required: ["configId"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { configId: { type: "string" format: "uuid" } configName: { type: "string" } hint: { type: "string" } key: { type: "string" } name: { type: "string" } order: { type: "integer" format: "int32" } settingId: { type: "integer" format: "int32" } settingType: { type: "string" enum: ["boolean", "string", "int", "double"] } tags: { type: "array" items: { type: "object" properties: { color: { type: "string" } name: { type: "string" } product: { 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 } tagId: { type: "integer" format: "int64" } } additionalProperties: false } } } additionalProperties: false } } }