action ideal_postcodes_list_configs { label: "List" description: "Lists configurations associated with a key" provider: ideal_postcodes method: GET path: "/keys/{key}/configs" encoding: json input: { type: "object" properties: { key: { type: "string" description: "Your API Key. Typically beings `ak_`.\n\nAvailable from your dashboard\n" } user_token: { type: "string" description: "A secret key used for sensitive operations on your account and API Keys.\n\nYour user token can be retrieved and managed from your [accounts page](https://ideal-postcodes.co.uk/account).\n\nTypically beings `uk_...`\n" } } required: ["key"] additionalProperties: false } output: { type: "object" required: ["code", "message", "result"] properties: { code: { type: "integer" format: "int32" enum: [2000] } message: { type: "string" enum: ["Success"] } result: { type: "object" description: "List of configurations" required: ["configs"] properties: { configs: { type: "array" items: { type: "object" required: ["updatedAt", "createdAt", "name", "payload"] properties: { createdAt: { type: "string" description: "Timestamp for when the config was updated" } name: { type: "string" description: "A unique name to identify the configuration payload" } payload: { type: "string" description: "A serialised payload of up to `4096` characters" } updatedAt: { type: "string" description: "Timestamp for when the config was created" } } } } } } } } }