action thesmsworks_get_utils_errors_errorcode { label: "get_utils_errors_errorcode" description: "Returns a sample error object for the given error code. Useful for designing code to react to errors when they occur for real." provider: thesmsworks method: GET path: "/utils/errors/{errorcode}" encoding: json input: { type: "object" properties: { errorcode: { type: "string" } } required: ["errorcode"] additionalProperties: false } output: { type: "object" additionalProperties: true } }