action callfire_get_keyword_lease_config { label: "Find a specific keyword lease config" description: "Returns a single KeywordConfig instance for a given keyword lease" provider: callfire method: GET path: "/keywords/leases/configs/{keyword}" encoding: json input: { type: "object" properties: { fields: { type: "string" } keyword: { type: "string" } } required: ["keyword"] additionalProperties: false } output: { type: "object" description: "~" properties: { keyword: { type: "string" description: "~" } textInboundConfig: { type: "object" description: "~" properties: { forwardEnabled: { type: "boolean" description: "~" } forwardNumber: { type: "string" description: "~" } } } } } }