action billbee_order_api_parse_placeholders { label: "Parses a text and replaces all placeholders" provider: billbee method: POST path: "/api/v1/orders/{id}/parse-placeholders" encoding: form input: { type: "object" properties: { IsHtml: { type: "boolean" description: "If true, the string will be handled as html." } Language: { type: "string" description: "The ISO 639-1 code of the target language. Using default if not set." } TextToParse: { type: "string" description: "The text to parse and replace the placeholders in." } Trim: { type: "boolean" description: "If true, then the placeholder values are trimmed after usage." } id: { type: "integer" format: "int64" } } required: ["id"] additionalProperties: false } output: { type: "object" } }