action callfire_order_keywords { label: "Purchase keywords" description: "Purchase keywords. Send a list of available keywords into this API to purchase them using CallFire credits. Make sure the account has enough credits before trying to purchase the keywords. Keyword should only consist of uppercase and lowercase letters and numbers. Number of characters must be greater than 2, but less than 65." provider: callfire method: POST path: "/orders/keywords" encoding: json input: { type: "object" properties: { fields: { type: "string" } keywords: { type: "array" description: "A list of keywords" items: { type: "string" } } } additionalProperties: false } output: { type: "object" description: "An id of a resource" properties: { id: { type: "integer" format: "int64" description: "An id of a resource" } } } }