action ideal_postcodes_delete_config { label: "Delete" description: "Permanently deletes a configuration object." provider: ideal_postcodes method: DELETE path: "/keys/{key}/configs/{config}" encoding: json input: { type: "object" properties: { config: { type: "string" description: "User provided configuration object name" } 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: ["config", "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" required: ["deleted"] properties: { deleted: { type: "number" format: "int32" } } } } } }