action callfire_get_text_auto_reply { label: "Find a specific auto reply" description: "Returns a single TextAutoReply instance for a given text auto reply id" provider: callfire method: GET path: "/texts/auto-replys/{id}" encoding: json input: { type: "object" properties: { fields: { type: "string" } id: { type: "integer" format: "int64" } } required: ["id"] additionalProperties: false } output: { 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" } } } }