action callfire_create_text_auto_reply { label: "Create an auto reply" description: "CallFire gives you possibility to set up auto reply messages for your numbers and keywords. You can set a general auto reply for anyone who texts your number, keyword, and/or include a text to match, so that the auto reply would be sent only to those who text the matched text" provider: callfire method: POST path: "/texts/auto-replys" encoding: json input: { type: "object" description: "CallFire allows you to set up auto reply messages for your numbers CallFire allows you to set up auto reply messages for your numbers and keywords. You can set a general auto reply for anyone who texts your number (keyword). Also you can include a text to match, so that the auto reply would be sent only to those recipients whose texts the matched text" properties: { id: { type: "integer" format: "int64" description: "An id of a text auto reply" } keyword: { type: "string" description: "Setup autoreply for a given keyword" } match: { type: "string" description: "Text to match. If it is set then autoreply will be sent to a person who texted message with matched text. Case insensitive, if parameter is not specified then all texts will be matched" } message: { type: "string" description: "A text message to return as an auto reply" } number: { type: "string" description: "Setup autoreply for a given phone number, E.164 format (11-digit). Example: 12132000384" } } } output: { type: "object" description: "An id of a resource" properties: { id: { type: "integer" format: "int64" description: "An id of a resource" } } } }