action callfire_disable_api_credentials { label: "Disable specified API credentials" description: "Disables a specified API credential. Currently, removes the ability to access the API. Only ACCOUNT_HOLDER can invoke this API. For authentication use account credentials." provider: callfire method: POST path: "/me/api/credentials/{id}/disable" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int64" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }