action ideal_postcodes_create_config { label: "Create" description: "Create a config" provider: ideal_postcodes method: POST 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" } name: { type: "string" description: "A unique name to identify the configuration payload" } payload: { type: "string" description: "A serialised payload of up to `4096` characters" } 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", "name", "payload"] 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" required: ["createdAt", "name", "payload", "updatedAt"] 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" } } } } } }