artemissupport-production  logo
artemissupport-production  logo

Return order

FAQs

Holiday Shipping

LAST UPDATE:NOV 3 2021 2:46PM

During the holidays, *everyone* online shops. This means mail carriers like DHL and USPS get backed up and packages can, unfortunately, get delayed. If you don't want to risk a late delivery or need your package ASAP, we've created a few more shipping options for you. That way we can ensure you get your package when you need it!


Here's our holiday shipping option:

Option
Cost
Shipping Time



Overnight (Standard)(US & Canada only)
$40 USD
1 business days* + Processing



2-Day (Standard)(US & Canada only)
$26 USD
2 business days**+ Processing



Express Shipping (EU Only)
$20 USD
1-3 business days** + Processing


*Does not include Weekend delivery.

US
Holiday Cut Off
Engraving Cut Off
Standard
12/9
12/3
2-day
12/17
12/10
Overnight
12/20
12/13


CA
Holiday Cut Off
Standard
12/9
Expedited
12/15


EU
Holiday Cut Off
Standard
12/9
Expedited
12/15



*Orders from Thursday after 9 am PDT through Sunday will be processed the following business day and then shipped out on the upcoming Monday.

**Orders from Wednesday after 9 am PDT through Sunday will be processed the following business day and then shipped out Thursday, Friday, or Monday respectively.

For our Overnight and 2-day delivery options, we require a signature for the items to be delivered fully. Please note that FedEx will make 3 delivery attempts before they send the package back to us.

Should you receive a note from FedEx regarding your delivery, please review the delivery note and ensure you are following the instructions to receive your package.

Should you have any questions or need assistance selecting which shipping option you should use, please feel free to chat with us using the "Help" button below!

Draft

la laΒ 

If you encounter an error on our return portal regarding the eligibility of your order for a return, please contact customer service. We will review the error and, if your order is indeed eligible for a return, we will assist you by creating the return form and sending you the next steps shortly. We apologize for any inconvenience caused by system errors.

Once your order has been placed and processed, you will receive a confirmation email with your order details. This email will include a tracking number and a link to our tracking page.

Tracking information may not be immediately available after your order is placed. It can take up to [X days] for the number to become active in our system. If you don't see any updates right away, please be patient and check back later.

[X days]Β after placing your order, you can click the tracking number link in the email or track your order on our website here [link to Order Management: Track Order].

If you mistakenly report items as missing from your delivery, but upon further inspection you find that all ordered items were indeed received, simply let us know. We are happy to confirm that no further action is needed, and we'll update our records accordingly. No apology is necessary, we're just glad the issue was resolved.

trtr

Overview

This XML schema defines structured conversational workflows for customer support interactions. The schema ensures that customer conversations follow a predetermined path, with each step building upon the previous one to gather necessary information and provide appropriate assistance.

Core Principles

1. Sequential Flow Execution

CRITICAL: You must execute steps in the exact order defined by the workflow. You cannot skip steps, reorder them, or jump ahead in the flow. Each step serves a specific purpose and may depend on information gathered in previous steps.

2. Step Completion Requirements

Every step must be fully completed before proceeding to the next step. This means:

  • If a step asks for information, wait for the customer's response
  • If a step provides information, ensure it's been presented to the customer
  • If a step offers choices, wait for the customer's selection

3. Information Gathering vs. Information Providing

  • Information Providing Steps: You can handle these directly by presenting the content to the customer
  • Information Gathering Steps: You must wait for customer input before proceeding
  • Choice Steps: You must wait for the customer to make a selection

Schema Structure

Workflow Element

1xml<workflow name="Support Flow" initial_step_id="start">
  • initial_step_id: Identifies where the conversation must begin
  • You must always start with this step, no exceptions

Step Types and Required Behavior

1. choices - Decision Points

1xml<step id="start" kind="choices">
2 <localized_content language="en-US">
3 <message>
4 <text>These articles might help. Did they resolve your issue?</text>
5 </message>
6 <choices>
7 <choice event_id="choice_1">
8 <label>βœ… Yes, I'm all set!</label>
9 </choice>
10 <choice event_id="choice_2">
11 <label>🚫 No, I still need help</label>
12 </choice>
13 </choices>
14 </localized_content>
15</step>

Your Instructions:

  • Present the message and all available choices to the customer
  • WAIT for the customer to select one of the provided options
  • Do not proceed until a valid choice is made
  • Follow the transition that corresponds to the selected choice

2. text-input - Text Collection

1xml<step id="step_1" kind="text-input">
2 <localized_content language="en-US">
3 <message>
4 <text>Please provide your email address and describe the issue.</text>
5 </message>
6 </localized_content>
7</step>

Your Instructions:

  • Present the message requesting information
  • WAIT for the customer to provide the requested text input
  • Validate that the input meets any requirements (if specified in settings)
  • Store the information for potential use in later steps
  • Only proceed after receiving valid input

3. attachments-input - File Collection

1xml<step id="step_2" kind="attachments-input">
2 <localized_content language="en-US">
3 <message>
4 <text>Please attach screenshots or recordings of the issue.</text>
5 </message>
6 </localized_content>
7</step>

Your Instructions:

  • Ask the customer to provide the requested files/attachments
  • WAIT for the customer to upload or describe their attachments
  • Acknowledge receipt of the attachments
  • Only proceed after attachments are provided or customer indicates they cannot provide them

4. helpful-prompt - Escalation Points

1xml<step id="step_3" kind="helpful-prompt">
2 <settings>
3 <helpful_prompt_settings>
4 <ticket_assignee_team_id>99</ticket_assignee_team_id>
5 </helpful_prompt_settings>
6 </settings>
7</step>

Your Instructions:

  • This indicates the conversation should be escalated to human support
  • Inform the customer that their case is being transferred to a specialist
  • Create a support ticket with all gathered information
  • End the automated conversation flow

Transition Logic

Following the Flow

Transitions define how to move between steps:

1xml<transition id="transition_1" from_step_id="start" to_step_id="step_1">
2 <event kind="choices" label="🚫 No, I still need help"/>
3</transition>

Your Instructions:

  • Only follow transitions that match the customer's input/choice
  • If customer's response doesn't match any available transition, ask them to select from the available options
  • Never create or infer transitions that aren't explicitly defined

Error Handling

If a customer provides an invalid response:

  1. Acknowledge their input
  2. Restate the available options or requirements
  3. Ask them to try again
  4. Do not advance to the next step

Critical Rules for Implementation

1. Mandatory Step Sequence

1βœ… CORRECT: start β†’ step_1 β†’ step_2 β†’ step_3
2❌ WRONG: start β†’ step_3 (skipping steps)
3❌ WRONG: step_2 β†’ start (going backwards)

2. Wait for Required Input

1βœ… CORRECT: Present choices β†’ Wait for selection β†’ Process response β†’ Move to next step
2❌ WRONG: Present choices β†’ Assume response β†’ Move to next step

3. Complete Information Gathering

1βœ… CORRECT: "Please provide your email" β†’ Wait for email β†’ Validate β†’ Continue
2❌ WRONG: "Please provide your email" β†’ Continue without email

4. Respect Workflow Boundaries

1βœ… CORRECT: Only use transitions defined in the workflow
2❌ WRONG: Create shortcuts or alternative paths

Implementation Guidelines

Starting a Conversation

  1. Locate the initial_step_id in the workflow
  2. Begin with that step
  3. Present any message content to the customer
  4. If the step requires input, wait for it
  5. Follow the appropriate transition

Processing Customer Responses

  1. Match the response to available transitions from current step
  2. If no match found, ask customer to clarify or choose from available options
  3. Follow the matching transition to the next step
  4. Repeat the process

Handling Information

  • Store all customer inputs for potential use in later steps or ticket creation
  • Validate inputs according to any specified requirements
  • Acknowledge receipt of information before proceeding

Ending Conversations

Conversations end when:

  • Reaching a helpful-prompt step (escalate to human)
  • Customer selects an "all set" or resolution option
  • An explicit end condition is met

Example Flow Execution

11. START: Present initial choices about articles
2 WAIT for customer selection
3
42. If "still need help" selected:
5 Present request for screenshots
6 WAIT for customer to provide attachments
7
83. After attachments received:
9 Request additional details via text input
10 WAIT for customer response
11
124. After text received:
13 Escalate to human support team
14 END automated flow

Summary

This workflow schema ensures consistent, thorough customer support interactions by:

  • Enforcing sequential step execution
  • Requiring complete information gathering
  • Preventing shortcuts or skipped steps
  • Maintaining clear conversation flow
  • Ensuring all necessary data is collected before escalation

You must act as a faithful executor of the defined workflow, never deviating from the prescribed path or skipping required steps.

<?xml version="1.0" ?>

<workflow

Β  Β Β xmlns="http://example.com/workflow" id="01JT12HHB4CN2S9P51BNE7BD1Z" name="β›Ί Yoto Club βœ…" account_id="35304" is_draft="false" initial_step_id="01J7BAXGPM20DMVXTKAKW84AFW">

Β  Β Β <metadata>

Β  Β  Β  Β Β <created>2025-05-26T11:23:24.437731</created>

Β  Β  Β  Β Β <version>1.0</version>

Β  Β  Β  Β Β <available_languages>

Β  Β  Β  Β  Β  Β Β <language>en-US</language>

Β  Β  Β  Β Β </available_languages>

Β  Β Β </metadata>

Β  Β Β <steps>

Β  Β  Β  Β Β <step id="01JR0KXB2S6W9988JAMAP0RSB2" kind="attachments-input">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <attachments_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01JR0KXB2SV172NW8EP59VDZ60</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01JR0KXB2SN8A6M9MB2QQF7F1M</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β </attachments_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>Great! Please attach them here πŸ‘‡</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="01J7BAXGPM20DMVXTKAKW84AFW" kind="choices">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01J7BAXGPNA4Q54HH8CXXGS00K</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01J7BAXGPM0E0F8YR6VY4TZRQ3</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01J7BAXGPNMWP85RJQMG3G7KV8" label_tkey="01J7BAXGPNNS8KRKQGPVJ796C6"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01J7BAXGPN6W9P1XPYKSMKQENG" label_tkey="01J7BAXGPNGA22HBF1X0H2JA4T"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>These articles might cover everything you need: \n\nπŸ”— When do I receive my Club credits?\nπŸ”— How do I spend my Club credits?\nπŸ”— How do I manage my Club membership?\nπŸ”— What is the Yoto Club Digital Collection?\nπŸ”— And more\n\nNow that you've checked these out, were you able to sort things out?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

                        <label>🚫 No</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>I still need help"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_2">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"βœ… Yes</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_3">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>I'm all set!</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>These articles might cover everything you need: \n\nπŸ”— When do I receive my Club credits?\nπŸ”— How do I spend my Club credits?\nπŸ”— How do I manage my Club membership?\nπŸ”— What is the Yoto Club Digital Collection?\nπŸ”— And more\n\nNow that you've checked these out, were you able to sort things out?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

                        <label>🚫 Non</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>j'ai besoin d'aide"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_2">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"βœ… Oui</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_3">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>merci !</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="01JR0KW62AC7678HKSCZY6CEVZ" kind="choices">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01JR0KW62AT6MBCCW4PQ8TSRQR</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01JR0KW62AHMPRK02CETGEYGDN</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JR0KW62AQSKHSP4499N6Y3VN" label_tkey="01JR0KW62AE6QENDJDKNCHSRM0"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JR0KW62AE4KSQWC80E8BG6KH" label_tkey="01JR0KW62A3DWAXBTE0NZVQFRW"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>Could you share screenshots or screen recordings of the issue?\n\nThis will give us a clearer idea of what’s happening and how to fix it.</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>πŸ‘Ž Non</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>pas pour le moment"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_2">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"πŸ‘ Oui</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_3">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>je peux</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>Could you share screenshots or screen recordings of the issue?\n\nThis will give us a clearer idea of what’s happening and how to fix it.</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>πŸ‘Ž No</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>I’m unable to do this right now"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_2">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"πŸ‘ Yes</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_3">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>I can</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="01JR0KQ8XD1Q51V5KX106QZJHP" kind="helpful-prompt">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <helpful_prompt_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <ticket_assignee_team_id>99</ticket_assignee_team_id>

Β  Β  Β  Β  Β  Β  Β  Β Β </helpful_prompt_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US"/>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="01JR0M6XE54JD4P8KKBT30XJP9" kind="text-input">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <text_input_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01JR0M6XE5NB9BMKC31ZSV9EC6</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01JR0M6XE5PC4JHSJ3YC7BJWFJ</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β </text_input_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>Not to worry. To help us assist you, could you please provide: \nThe email address linked to your Yoto account / Club membership\nA brief description of the issue you're facing\nOnce we have these details, we'll forward your inquiry to our team for further investigation. One of our agents will get back to you as soon as possible.\n\nThanks again for your patience.</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="01JR0M5DGDV3E79BHJ2G1VDS1W" kind="text-input">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <text_input_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01JR0M5DGDR12AWA0SED3YMVHN</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01JR0M5DGD6X413R4VXFT3NYM2</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β </text_input_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>Thanks for your help. Lastly, could you please provide: \nThe email address linked to your Yoto account / Club membership\nA brief description of the issue you're facing\nOnce we have these details, we'll forward your inquiry to our team for further investigation. One of our agents will get back to you as soon as possible.\n\nThanks again for your patience.</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="01J7BAXGPNX9F5M0HW1H2D6TWC" kind="helpful-prompt">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <helpful_prompt_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <ticket_assignee_team_id>99</ticket_assignee_team_id>

Β  Β  Β  Β  Β  Β  Β  Β Β </helpful_prompt_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US"/>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="01JR0KW62ACYS7YVGTGRHC6CZ3" kind="helpful-prompt">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <helpful_prompt_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <ticket_assignee_team_id>99</ticket_assignee_team_id>

Β  Β  Β  Β  Β  Β  Β  Β Β </helpful_prompt_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US"/>

Β  Β  Β  Β Β </step>

Β  Β Β </steps>

Β  Β Β <transitions>

Β  Β  Β  Β Β <transition id="01JT133P5J8HTT9QAXNETQ1SBR" from_step_id="01JR0KW62AC7678HKSCZY6CEVZ" to_step_id="01JR0KXB2S6W9988JAMAP0RSB2">

Β  Β  Β  Β  Β  Β Β <event id="01JR0KW62AQSKHSP4499N6Y3VN" kind="choices"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="01JT133P5J8HTT9QAXNETQ1SBR" from_step_id="01JR0KW62AC7678HKSCZY6CEVZ" to_step_id="01JR0KXB2S6W9988JAMAP0RSB2">

Β  Β  Β  Β  Β  Β Β <event id="01JR0KW62AQSKHSP4499N6Y3VN" kind="choices"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="nan" from_step_id="nan" to_step_id="nan">

Β  Β  Β  Β  Β  Β Β <event id="event_nan" kind="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="nan" from_step_id="nan" to_step_id="nan">

Β  Β  Β  Β  Β  Β Β <event id="event_nan" kind="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="01JT133P5JT9ETMVP52QK2MWVC" from_step_id="01J7BAXGPM20DMVXTKAKW84AFW" to_step_id="01JR0KW62AC7678HKSCZY6CEVZ">

Β  Β  Β  Β  Β  Β Β <event id="01J7BAXGPN6W9P1XPYKSMKQENG" kind="choices"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="01JT133P5JT9ETMVP52QK2MWVC" from_step_id="01J7BAXGPM20DMVXTKAKW84AFW" to_step_id="01JR0KW62AC7678HKSCZY6CEVZ">

Β  Β  Β  Β  Β  Β Β <event id="01J7BAXGPN6W9P1XPYKSMKQENG" kind="choices"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="01JT133P5JY6KNJYFCTJQNNJVN" from_step_id="01J7BAXGPM20DMVXTKAKW84AFW" to_step_id="01JR0KQ8XD1Q51V5KX106QZJHP">

Β  Β  Β  Β  Β  Β Β <event id="01J7BAXGPNMWP85RJQMG3G7KV8" kind="choices"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="01JT133P5J2YYDDEJTSMGJHC0R" from_step_id="01JR0KW62AC7678HKSCZY6CEVZ" to_step_id="01JR0M6XE54JD4P8KKBT30XJP9">

Β  Β  Β  Β  Β  Β Β <event id="01JR0KW62AE4KSQWC80E8BG6KH" kind="choices"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="01JT133P5J9C91MZKJ8KBJAV4S" from_step_id="01JR0KXB2S6W9988JAMAP0RSB2" to_step_id="01JR0M5DGDV3E79BHJ2G1VDS1W">

Β  Β  Β  Β  Β  Β Β <event id="event_01JT133P5J9C91MZKJ8KBJAV4S" kind="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="nan" from_step_id="nan" to_step_id="nan">

Β  Β  Β  Β  Β  Β Β <event id="event_nan" kind="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="nan" from_step_id="nan" to_step_id="nan">

Β  Β  Β  Β  Β  Β Β <event id="event_nan" kind="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="01JT133P5JT9ETMVP52QK2MWVC" from_step_id="01J7BAXGPM20DMVXTKAKW84AFW" to_step_id="01JR0KW62AC7678HKSCZY6CEVZ">

Β  Β  Β  Β  Β  Β Β <event id="01J7BAXGPN6W9P1XPYKSMKQENG" kind="choices"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="01JT133P5JT9ETMVP52QK2MWVC" from_step_id="01J7BAXGPM20DMVXTKAKW84AFW" to_step_id="01JR0KW62AC7678HKSCZY6CEVZ">

Β  Β  Β  Β  Β  Β Β <event id="01J7BAXGPN6W9P1XPYKSMKQENG" kind="choices"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="01JT133P5J9AKJNMN0ECDD7FYB" from_step_id="01JR0M5DGDV3E79BHJ2G1VDS1W" to_step_id="01J7BAXGPNX9F5M0HW1H2D6TWC">

Β  Β  Β  Β  Β  Β Β <event id="event_01JT133P5J9AKJNMN0ECDD7FYB" kind="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="01JT133P5JE5EQY2KNGDN90SCZ" from_step_id="01JR0M6XE54JD4P8KKBT30XJP9" to_step_id="01JR0KW62ACYS7YVGTGRHC6CZ3">

Β  Β  Β  Β  Β  Β Β <event id="event_01JT133P5JE5EQY2KNGDN90SCZ" kind="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="01JT133P5J2YYDDEJTSMGJHC0R" from_step_id="01JR0KW62AC7678HKSCZY6CEVZ" to_step_id="01JR0M6XE54JD4P8KKBT30XJP9">

Β  Β  Β  Β  Β  Β Β <event id="01JR0KW62AE4KSQWC80E8BG6KH" kind="choices"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="01JT133P5J9C91MZKJ8KBJAV4S" from_step_id="01JR0KXB2S6W9988JAMAP0RSB2" to_step_id="01JR0M5DGDV3E79BHJ2G1VDS1W">

Β  Β  Β  Β  Β  Β Β <event id="event_01JT133P5J9C91MZKJ8KBJAV4S" kind="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β Β </transitions>

</workflow>

Overview

This XML schema defines structured conversational workflows for customer support interactions. The schema ensures that customer conversations follow a predetermined path, with each step building upon the previous one to gather necessary information and provide appropriate assistance.

Core Principles

1. Sequential Flow Execution

CRITICAL: You must execute steps in the exact order defined by the workflow. You cannot skip steps, reorder them, or jump ahead in the flow. Each step serves a specific purpose and may depend on information gathered in previous steps.

2. Step Completion Requirements

Every step must be fully completed before proceeding to the next step. This means:

  • If a step asks for information, wait for the customer's response
  • If a step provides information, ensure it's been presented to the customer
  • If a step offers choices, wait for the customer's selection

3. Information Gathering vs. Information Providing

  • Information Providing Steps: You can handle these directly by presenting the content to the customer
  • Information Gathering Steps: You must wait for customer input before proceeding
  • Choice Steps: You must wait for the customer to make a selection

Schema Structure

Workflow Element

1xml<workflow name="Support Flow" initial_step_id="start">
  • initial_step_id: Identifies where the conversation must begin
  • You must always start with this step, no exceptions

Step Types and Required Behavior

1. choices - Decision Points

1xml<step id="start" kind="choices">
2 <localized_content language="en-US">
3 <message>
4 <text>These articles might help. Did they resolve your issue?</text>
5 </message>
6 <choices>
7 <choice event_id="choice_1">
8 <label>βœ… Yes, I'm all set!</label>
9 </choice>
10 <choice event_id="choice_2">
11 <label>🚫 No, I still need help</label>
12 </choice>
13 </choices>
14 </localized_content>
15</step>

Your Instructions:

  • Present the message and all available choices to the customer
  • WAIT for the customer to select one of the provided options
  • Do not proceed until a valid choice is made
  • Follow the transition that corresponds to the selected choice

2. text-input - Text Collection

1xml<step id="step_1" kind="text-input">
2 <localized_content language="en-US">
3 <message>
4 <text>Please provide your email address and describe the issue.</text>
5 </message>
6 </localized_content>
7</step>

Your Instructions:

  • Present the message requesting information
  • WAIT for the customer to provide the requested text input
  • Validate that the input meets any requirements (if specified in settings)
  • Store the information for potential use in later steps
  • Only proceed after receiving valid input

3. attachments-input - File Collection

1xml<step id="step_2" kind="attachments-input">
2 <localized_content language="en-US">
3 <message>
4 <text>Please attach screenshots or recordings of the issue.</text>
5 </message>
6 </localized_content>
7</step>

Your Instructions:

  • Ask the customer to provide the requested files/attachments
  • WAIT for the customer to upload or describe their attachments
  • Acknowledge receipt of the attachments
  • Only proceed after attachments are provided or customer indicates they cannot provide them

4. helpful-prompt - Escalation Points

1xml<step id="step_3" kind="helpful-prompt">
2 <settings>
3 <helpful_prompt_settings>
4 <ticket_assignee_team_id>99</ticket_assignee_team_id>
5 </helpful_prompt_settings>
6 </settings>
7</step>

Your Instructions:

  • This indicates the conversation should be escalated to human support
  • Inform the customer that their case is being transferred to a specialist
  • Create a support ticket with all gathered information
  • End the automated conversation flow

Transition Logic

Following the Flow

Transitions define how to move between steps:

1xml<transition id="transition_1" from_step_id="start" to_step_id="step_1">
2 <event kind="choices" label="🚫 No, I still need help"/>
3</transition>

Your Instructions:

  • Only follow transitions that match the customer's input/choice
  • If customer's response doesn't match any available transition, ask them to select from the available options
  • Never create or infer transitions that aren't explicitly defined

Error Handling

If a customer provides an invalid response:

  1. Acknowledge their input
  2. Restate the available options or requirements
  3. Ask them to try again
  4. Do not advance to the next step

Critical Rules for Implementation

1. Mandatory Step Sequence

1βœ… CORRECT: start β†’ step_1 β†’ step_2 β†’ step_3
2❌ WRONG: start β†’ step_3 (skipping steps)
3❌ WRONG: step_2 β†’ start (going backwards)

2. Wait for Required Input

1βœ… CORRECT: Present choices β†’ Wait for selection β†’ Process response β†’ Move to next step
2❌ WRONG: Present choices β†’ Assume response β†’ Move to next step

3. Complete Information Gathering

1βœ… CORRECT: "Please provide your email" β†’ Wait for email β†’ Validate β†’ Continue
2❌ WRONG: "Please provide your email" β†’ Continue without email

4. Respect Workflow Boundaries

1βœ… CORRECT: Only use transitions defined in the workflow
2❌ WRONG: Create shortcuts or alternative paths

Implementation Guidelines

Starting a Conversation

  1. Locate the initial_step_id in the workflow
  2. Begin with that step
  3. Present any message content to the customer
  4. If the step requires input, wait for it
  5. Follow the appropriate transition

Processing Customer Responses

  1. Match the response to available transitions from current step
  2. If no match found, ask customer to clarify or choose from available options
  3. Follow the matching transition to the next step
  4. Repeat the process

Handling Information

  • Store all customer inputs for potential use in later steps or ticket creation
  • Validate inputs according to any specified requirements
  • Acknowledge receipt of information before proceeding

Ending Conversations

Conversations end when:

  • Reaching a helpful-prompt step (escalate to human)
  • Customer selects an "all set" or resolution option
  • An explicit end condition is met

Example Flow Execution

11. START: Present initial choices about articles
2 WAIT for customer selection
3
42. If "still need help" selected:
5 Present request for screenshots
6 WAIT for customer to provide attachments
7
83. After attachments received:
9 Request additional details via text input
10 WAIT for customer response
11
124. After text received:
13 Escalate to human support team
14 END automated flow

Summary

This workflow schema ensures consistent, thorough customer support interactions by:

  • Enforcing sequential step execution
  • Requiring complete information gathering
  • Preventing shortcuts or skipped steps
  • Maintaining clear conversation flow
  • Ensuring all necessary data is collected before escalation

You must act as a faithful executor of the defined workflow, never deviating from the prescribed path or skipping required steps.


<?xml version="1.0" encoding="UTF-8"?>

<workflow xmlns="http://example.com/workflow"Β 

Β  Β  Β  Β  Β  name="I want to cancel my subscription"Β 

Β  Β  Β  Β  Β  initial_step_id="start">

Β Β 

Β  <metadata>

Β  Β  <created>2025-05-26T00:00:00Z</created>

Β  Β  <version>1.0</version>

Β  Β  <description>Customer subscription cancellation workflow</description>

Β  Β  <available_languages>

Β  Β  Β  <language>en-US</language>

Β  Β  </available_languages>

Β  </metadata>


Β  <steps>

Β  Β  <!-- START: Customer login -->

Β  Β  <step id="start" kind="customer_login">

Β  Β  Β  <localized_content language="en-US">

Β  Β  Β  Β  <message>

Β  Β  Β  Β  Β  <text>I want to cancel my subscription</text>

Β  Β  Β  Β  </message>

Β  Β  Β  </localized_content>

Β  Β  </step>


Β  Β  <!-- HTTP Request: Get all subscriptions -->

Β  Β  <step id="step_1" kind="http_request">

Β  Β  Β  <settings>

Β  Β  Β  Β  <http_request_settings>

Β  Β  Β  Β  Β  <action>Get all subscriptions</action>

Β  Β  Β  Β  Β  <endpoint>/api/subscriptions</endpoint>

Β  Β  Β  Β  Β  <method>GET</method>

Β  Β  Β  Β  </http_request_settings>

Β  Β  Β  </settings>

Β  Β  Β  <localized_content language="en-US">

Β  Β  Β  Β  <message>

Β  Β  Β  Β  Β  <text>Retrieving your subscription information...</text>

Β  Β  Β  Β  </message>

Β  Β  Β  </localized_content>

Β  Β  </step>


Β  Β  <!-- Success/Error Branch Point -->

Β  Β  <step id="step_2" kind="conditions">

Β  Β  Β  <settings>

Β  Β  Β  Β  <conditions_settings>

Β  Β  Β  Β  Β  <description>Check if subscriptions were found</description>

Β  Β  Β  Β  </conditions_settings>

Β  Β  Β  </settings>

Β  Β  </step>


Β  Β  <!-- Error: Collect text reply -->

Β  Β  <step id="step_3" kind="text-input">

Β  Β  Β  <localized_content language="en-US">

Β  Β  Β  Β  <message>

Β  Β  Β  Β  Β  <text>Here are your subscriptions (account at subscription 0x found), please...</text>

Β  Β  Β  Β  </message>

Β  Β  Β  </localized_content>

Β  Β  </step>


Β  Β  <!-- Success: Automated answer -->

Β  Β  <step id="step_4" kind="automated_answer">

Β  Β  Β  <localized_content language="en-US">

Β  Β  Β  Β  <message>

Β  Β  Β  Β  Β  <text>Sorry I wasn't able to get any of your subscriptions.</text>

Β  Β  Β  Β  </message>

Β  Β  Β  </localized_content>

Β  Β  </step>


Β  Β  <!-- HTTP Request: Delete subscription -->

Β  Β  <step id="step_5" kind="http_request">

Β  Β  Β  <settings>

Β  Β  Β  Β  <http_request_settings>

Β  Β  Β  Β  Β  <action>Delete subscription</action>

Β  Β  Β  Β  Β  <endpoint>/api/subscriptions/{id}</endpoint>

Β  Β  Β  Β  Β  <method>DELETE</method>

Β  Β  Β  Β  </http_request_settings>

Β  Β  Β  </settings>

Β  Β  Β  <localized_content language="en-US">

Β  Β  Β  Β  <message>

Β  Β  Β  Β  Β  <text>Processing subscription cancellation...</text>

Β  Β  Β  Β  </message>

Β  Β  Β  </localized_content>

Β  Β  </step>


Β  Β  <!-- Success/Error Branch Point for deletion -->

Β  Β  <step id="step_6" kind="conditions">

Β  Β  Β  <settings>

Β  Β  Β  Β  <conditions_settings>

Β  Β  Β  Β  Β  <description>Check if deletion was successful</description>

Β  Β  Β  Β  </conditions_settings>

Β  Β  Β  </settings>

Β  Β  </step>


Β  Β  <!-- Success: Automated answer -->

Β  Β  <step id="step_7" kind="automated_answer">

Β  Β  Β  <localized_content language="en-US">

Β  Β  Β  Β  <message>

Β  Β  Β  Β  Β  <text>Done! Your subscription (subscription ID) has been cancelled</text>

Β  Β  Β  Β  </message>

Β  Β  Β  </localized_content>

Β  Β  </step>


Β  Β  <!-- Error: Automated answer -->

Β  Β  <step id="step_8" kind="automated_answer">

Β  Β  Β  <localized_content language="en-US">

Β  Β  Β  Β  <message>

Β  Β  Β  Β  Β  <text>Sorry something went wrong!</text>

Β  Β  Β  Β  </message>

Β  Β  Β  </localized_content>

Β  Β  </step>


Β  Β  <!-- Final endpoints -->

Β  Β  <step id="step_9" kind="helpful-prompt">

Β  Β  Β  <settings>

Β  Β  Β  Β  <helpful_prompt_settings>

Β  Β  Β  Β  Β  <ticket_assignee_team_id>1</ticket_assignee_team_id>

Β  Β  Β  Β  </helpful_prompt_settings>

Β  Β  Β  </settings>

Β  Β  </step>


Β  Β  <step id="step_10" kind="helpful-prompt">

Β  Β  Β  <settings>

Β  Β  Β  Β  <helpful_prompt_settings>

Β  Β  Β  Β  Β  <ticket_assignee_team_id>1</ticket_assignee_team_id>

Β  Β  Β  Β  </helpful_prompt_settings>

Β  Β  Β  </settings>

Β  Β  </step>

Β  </steps>


Β  <transitions>

Β  Β  <!-- Start to get subscriptions -->

Β  Β  <transition id="transition_1" from_step_id="start" to_step_id="step_1">

Β  Β  Β  <event kind="system"/>

Β  Β  </transition>


Β  Β  <!-- After HTTP request, go to conditions check -->

Β  Β  <transition id="transition_2" from_step_id="step_1" to_step_id="step_2">

Β  Β  Β  <event kind="system"/>

Β  Β  </transition>


Β  Β  <!-- Conditions: Success path -->

Β  Β  <transition id="transition_3" from_step_id="step_2" to_step_id="step_3">

Β  Β  Β  <event kind="system" label="Success"/>

Β  Β  Β  <conditions>

Β  Β  Β  Β  <condition expression="subscriptions_found == true"/>

Β  Β  Β  </conditions>

Β  Β  </transition>


Β  Β  <!-- Conditions: Error path -->

Β  Β  <transition id="transition_4" from_step_id="step_2" to_step_id="step_4">

Β  Β  Β  <event kind="system" label="Error"/>

Β  Β  Β  <conditions>

Β  Β  Β  Β  <condition expression="subscriptions_found == false"/>

Β  Β  Β  </conditions>

Β  Β  </transition>


Β  Β  <!-- From text input to delete subscription -->

Β  Β  <transition id="transition_5" from_step_id="step_3" to_step_id="step_5">

Β  Β  Β  <event kind="input"/>

Β  Β  </transition>


Β  Β  <!-- From error message to end -->

Β  Β  <transition id="transition_6" from_step_id="step_4" to_step_id="step_10">

Β  Β  Β  <event kind="system"/>

Β  Β  </transition>


Β  Β  <!-- After delete request, check conditions -->

Β  Β  <transition id="transition_7" from_step_id="step_5" to_step_id="step_6">

Β  Β  Β  <event kind="system"/>

Β  Β  </transition>


Β  Β  <!-- Delete success -->

Β  Β  <transition id="transition_8" from_step_id="step_6" to_step_id="step_7">

Β  Β  Β  <event kind="system" label="Success"/>

Β  Β  Β  <conditions>

Β  Β  Β  Β  <condition expression="deletion_successful == true"/>

Β  Β  Β  </conditions>

Β  Β  </transition>


Β  Β  <!-- Delete error -->

Β  Β  <transition id="transition_9" from_step_id="step_6" to_step_id="step_8">

Β  Β  Β  <event kind="system" label="Error"/>

Β  Β  Β  <conditions>

Β  Β  Β  Β  <condition expression="deletion_successful == false"/>

Β  Β  Β  </conditions>

Β  Β  </transition>


Β  Β  <!-- Success message to end -->

Β  Β  <transition id="transition_10" from_step_id="step_7" to_step_id="step_9">

Β  Β  Β  <event kind="system"/>

Β  Β  </transition>


Β  Β  <!-- Error message to end -->

Β  Β  <transition id="transition_11" from_step_id="step_8" to_step_id="step_10">

Β  Β  Β  <event kind="system"/>

Β  Β  </transition>

Β  </transitions>


</workflow>

Overview

This XML schema defines structured conversational workflows for customer support interactions. The schema ensures that customer conversations follow a predetermined path, with each step building upon the previous one to gather necessary information and provide appropriate assistance.

Core Principles

1. Sequential Flow Execution

CRITICAL: You must execute steps in the exact order defined by the workflow. You cannot skip steps, reorder them, or jump ahead in the flow. Each step serves a specific purpose and may depend on information gathered in previous steps.

2. Step Completion Requirements

Every step must be fully completed before proceeding to the next step. This means:

  • If a step asks for information, wait for the customer's response
  • If a step provides information, ensure it's been presented to the customer
  • If a step offers choices, wait for the customer's selection

3. Information Gathering vs. Information Providing

  • Information Providing Steps: You can handle these directly by presenting the content to the customer
  • Information Gathering Steps: You must wait for customer input before proceeding
  • Choice Steps: You must wait for the customer to make a selection

Schema Structure

Workflow Element

1xml<workflow name="Support Flow" initial_step_id="start">
  • initial_step_id: Identifies where the conversation must begin
  • You must always start with this step, no exceptions

Step Types and Required Behavior

1. choices - Decision Points

1xml<step id="start" kind="choices">
2 <localized_content language="en-US">
3 <message>
4 <text>These articles might help. Did they resolve your issue?</text>
5 </message>
6 <choices>
7 <choice event_id="choice_1">
8 <label>βœ… Yes, I'm all set!</label>
9 </choice>
10 <choice event_id="choice_2">
11 <label>🚫 No, I still need help</label>
12 </choice>
13 </choices>
14 </localized_content>
15</step>

Your Instructions:

  • Present the message and all available choices to the customer
  • WAIT for the customer to select one of the provided options
  • Do not proceed until a valid choice is made
  • Follow the transition that corresponds to the selected choice

2. text-input - Text Collection

1xml<step id="step_1" kind="text-input">
2 <localized_content language="en-US">
3 <message>
4 <text>Please provide your email address and describe the issue.</text>
5 </message>
6 </localized_content>
7</step>

Your Instructions:

  • Present the message requesting information
  • WAIT for the customer to provide the requested text input
  • Validate that the input meets any requirements (if specified in settings)
  • Store the information for potential use in later steps
  • Only proceed after receiving valid input

3. attachments-input - File Collection

1xml<step id="step_2" kind="attachments-input">
2 <localized_content language="en-US">
3 <message>
4 <text>Please attach screenshots or recordings of the issue.</text>
5 </message>
6 </localized_content>
7</step>

Your Instructions:

  • Ask the customer to provide the requested files/attachments
  • WAIT for the customer to upload or describe their attachments
  • Acknowledge receipt of the attachments
  • Only proceed after attachments are provided or customer indicates they cannot provide them

4. helpful-prompt - Escalation Points

1xml<step id="step_3" kind="helpful-prompt">
2 <settings>
3 <helpful_prompt_settings>
4 <ticket_assignee_team_id>99</ticket_assignee_team_id>
5 </helpful_prompt_settings>
6 </settings>
7</step>

Your Instructions:

  • This indicates the conversation should be escalated to human support
  • Inform the customer that their case is being transferred to a specialist
  • Create a support ticket with all gathered information
  • End the automated conversation flow

Transition Logic

Following the Flow

Transitions define how to move between steps:

1xml<transition id="transition_1" from_step_id="start" to_step_id="step_1">
2 <event kind="choices" label="🚫 No, I still need help"/>
3</transition>

Your Instructions:

  • Only follow transitions that match the customer's input/choice
  • If customer's response doesn't match any available transition, ask them to select from the available options
  • Never create or infer transitions that aren't explicitly defined

Error Handling

If a customer provides an invalid response:

  1. Acknowledge their input
  2. Restate the available options or requirements
  3. Ask them to try again
  4. Do not advance to the next step

Critical Rules for Implementation

1. Mandatory Step Sequence

1βœ… CORRECT: start β†’ step_1 β†’ step_2 β†’ step_3
2❌ WRONG: start β†’ step_3 (skipping steps)
3❌ WRONG: step_2 β†’ start (going backwards)

2. Wait for Required Input

1βœ… CORRECT: Present choices β†’ Wait for selection β†’ Process response β†’ Move to next step
2❌ WRONG: Present choices β†’ Assume response β†’ Move to next step

3. Complete Information Gathering

1βœ… CORRECT: "Please provide your email" β†’ Wait for email β†’ Validate β†’ Continue
2❌ WRONG: "Please provide your email" β†’ Continue without email

4. Respect Workflow Boundaries

1βœ… CORRECT: Only use transitions defined in the workflow
2❌ WRONG: Create shortcuts or alternative paths

Implementation Guidelines

Starting a Conversation

  1. Locate the initial_step_id in the workflow
  2. Begin with that step
  3. Present any message content to the customer
  4. If the step requires input, wait for it
  5. Follow the appropriate transition

Processing Customer Responses

  1. Match the response to available transitions from current step
  2. If no match found, ask customer to clarify or choose from available options
  3. Follow the matching transition to the next step
  4. Repeat the process

Handling Information

  • Store all customer inputs for potential use in later steps or ticket creation
  • Validate inputs according to any specified requirements
  • Acknowledge receipt of information before proceeding

Ending Conversations

Conversations end when:

  • Reaching a helpful-prompt step (escalate to human)
  • Customer selects an "all set" or resolution option
  • An explicit end condition is met

Example Flow Execution

11. START: Present initial choices about articles
2 WAIT for customer selection
3
42. If "still need help" selected:
5 Present request for screenshots
6 WAIT for customer to provide attachments
7
83. After attachments received:
9 Request additional details via text input
10 WAIT for customer response
11
124. After text received:
13 Escalate to human support team
14 END automated flow

Summary

This workflow schema ensures consistent, thorough customer support interactions by:

  • Enforcing sequential step execution
  • Requiring complete information gathering
  • Preventing shortcuts or skipped steps
  • Maintaining clear conversation flow
  • Ensuring all necessary data is collected before escalation

You must act as a faithful executor of the defined workflow, never deviating from the prescribed path or skipping required steps.


<?xml version="1.0" ?>

<workflow

Β  Β Β xmlns="http://example.com/workflow" name="πŸŽ™Feedback, B2B (Commercial), or something else" account_id="35304" is_draft="false" initial_step_id="start">

Β  Β Β <metadata>

Β  Β  Β  Β Β <created>2025-05-26T16:49:17.943016</created>

Β  Β  Β  Β Β <version>1.0</version>

Β  Β  Β  Β Β <available_languages>

Β  Β  Β  Β  Β  Β Β <language>en-US</language>

Β  Β  Β  Β Β </available_languages>

Β  Β Β </metadata>

Β  Β Β <steps>

Β  Β  Β  Β Β <step id="step_1" kind="attachments-input">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <attachments_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01JJBYYXZ43HME8XRYW4QGR3EZ</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01JJBYYXZ4HCVXVK5NDDT41KA3</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β </attachments_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>Great! Please attach them here πŸ‘‡</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="start" kind="choices">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01HYAXRMEFW8ZHBWNTX9XCBJWN</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01HYAXRMEFPJKYM6A75A8XYWKE</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01HYAXRMEFZFMAVVE19R8K8111" label_tkey="01HYAXRMEF2ZPFAY45FX328ZD6"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JR0MCNEHPG1AZB1YV161G0PA" label_tkey="01JR0MCNEH75AMCF5NYKVCM5NT"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01HYAXRMEFJNW92C6BJ2VQGMQ0" label_tkey="01HYAXRMEFGRCAX56PW1Q8X2AQ"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>Hi there!\n\nHow can we help? Anything related to the options below?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>πŸŽ™Leave feedback or suggestion"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"❓Something else"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_2">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"πŸ›οΈ B2B inquiry</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>Hi there!\n\nHow can we help? Anything related to the options below?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>πŸŽ™ Laisser un commentaire ou une suggestion"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"❓ Autre chose"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_2">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"πŸ›οΈ Demande B2B</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_2" kind="choices">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01JSYAG9546ARG25P429ACJRY3</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01JSYAG9548WTYFB1Y8J158XR3</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JSYAG954Z3S0449NC1255E4M" label_tkey="01JSYAG954CFPCGAJKXMVXQXTH"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JSYAG9546ZWM4XGQCAE37XXA" label_tkey="01JSYAG9546K7DR757MDBDV3X2"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>Are you a representative of a registered business, educational, healthcare institution, charity, professional or a home educator? </text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>πŸ‘Ž No</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>none of those apply to me."</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_2">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"πŸ‘ Yes!</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>Are you a representative of a registered business, educational, healthcare institution, charity, professional or a home educator? </text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>πŸ‘Ž Non</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>aucun de ces cas ne s'applique Γ  moi."</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_2">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"πŸ‘ Oui !</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_3" kind="choices">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01JSYAA7WSHNYB480AS4MFFZ2R</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01JSYAA7WSD32FJ403E4GQNEMR</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JSYAA7WSZEQRMAD3VPXHSE2D" label_tkey="01JSYAA7WSQ2DW1Y12YGWWD4CG"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JSYAA7WSS6K4GGTD5FTDBNQC" label_tkey="01JSYAA7WSBSWYASA6NP7CQWRC"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>Have you already applied to become a member?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>πŸ‘Ž No"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"πŸ‘ Yes</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>Have you already applied to become a member?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>πŸ‘Ž Non"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"πŸ‘ Oui</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_4" kind="choices">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01JSYAN9FHR4NRJJTTCS1QEJ4R</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01JSYAN9FH2ZN863KSAYG23JZA</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JSYAN9FH3S10KPHNTSMCAZ04" label_tkey="01JSYAN9FHTB4P95SFXVTQ81XK"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JSYAN9FHV1N8VD9Z6P2JZ2N5" label_tkey="01JSYAN9FHM88F4MTJ4EFPQ653"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>If you have placed a ClassWallet order, please be aware it takes some time for ClassWallet’s system to sync with ours. Your order will be processed in the queue, and you’ll receive a confirmation email once it’s ready!\n\nDo you need additional assistance? </text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>πŸ‘Ž No</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>I'm all set!"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_2">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"πŸ‘ Yes</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_3">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>I still need additional assistance.</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>If you have placed a ClassWallet order, please be aware it takes some time for ClassWallet’s system to sync with ours. Your order will be processed in the queue, and you’ll receive a confirmation email once it’s ready!\n\nDo you need additional assistance? </text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>πŸ‘Ž Non</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>tout est en ordre !"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_2">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"πŸ‘ Oui</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_3">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>j'ai besoin d'aide supplΓ©mentaire</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_5" kind="choices">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01JSYAE5ZRXFM7PE9XW7H5CCFR</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01JSYAE5ZR0DEYJY6YY6A9KVQQ</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JSYAE5ZRM31CJJR0GBZ4RJ2B" label_tkey="01JSYAE5ZRJ8365GW4MRE1MVCM"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JSYAE5ZRKCTQYGDWRR7V20WT" label_tkey="01JSYAE5ZRA01HRB0CM9YP37KM"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JSYAE7ZVPGCPS0S0TMR7BG1A" label_tkey="01JSYAE7ZVC3ZBMM4FWBHNHGYQ"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JSYAE8GQ23TQV439JDVXEZ49" label_tkey="01JSYAE8GQN72W0483Q2E6102X"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>Which of the following regions are you in? </text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>US/CA"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"UK"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_2">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"EU"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_3">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"APAC</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>Which of the following regions are you in? </text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>Γ‰tats-Unis/Canada"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"Royaume-Uni"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_2">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"Union EuropΓ©enne"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_3">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"Asie-Pacifique</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_6" kind="choices">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01JJBYYK126SE9V6ZEK74D7NSJ</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01JJBYYK12JNVH81909AHRV277</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JJBYYK12SXZ82C0TMRMJMX1X" label_tkey="01JJBYYK12FRJVVTQH89ZMS4AQ"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JJBYYK12KN8815K4YGC9CM9F" label_tkey="01JJBYYK12PNP44T4FX0QV5TDQ"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>Are you able to provide any additional information. such as screenshots or video recordings, to help us understand your issue?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>πŸ‘ Yes</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>I can"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_2">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"πŸ‘ŽNo</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>Are you able to provide any additional information. such as screenshots or video recordings, to help us understand your issue?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>πŸ‘ Oui</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>je peux"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_2">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"πŸ‘Ž Non</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_3">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>pas pour le moment</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_7" kind="choices">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01JJBYW34AP1G45QJ9TSYAVM1S</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01JJBYW34AZG9223BZZ6TETRCB</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JJBYW34ANHY90AV9ZTMQHMRD" label_tkey="01JJBYW34ABP8D0PJQFYW477EA"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JJBYW34A3WJW7G44KD8Z296B" label_tkey="01JJBYW34AMQNNVXJ0WDRHAQ43"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>Are you able to provide any additional information. such as screenshots or video recordings, to help us understand your issue?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>πŸ‘ Yes</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>I can"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_2">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"πŸ‘Ž No</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_3">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>I'm not able to</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>Are you able to provide any additional information. such as screenshots or video recordings, to help us understand your issue?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>πŸ‘ Oui</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>je peux"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_2">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"πŸ‘Ž Non</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_3">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>pas pour le moment</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_8" kind="choices">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01JSYA6J76KRTFKW0KMM4FM9RF</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01JSYA6J765P9HPJKQBMG6D8R0</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JSYA6J76VDDBJ763YJ3RHN5X" label_tkey="01JSYA6J766H2TC55K5STNX30S"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JSYA6J76VCG11KN5Z4DS0A8Q" label_tkey="01JSYA6J760N9XM5GK5BEB74K1"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JSYA6TNAARSYDKSV7M74KQVJ" label_tkey="01JSYA6TNFGPPCPCMWPXBY5XJG"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JSYA6V8RX700KT3KTP2WXP8K" label_tkey="01JSYA6V8RAKYSW3ZHWEN5KY3K"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>Which of the following regions are you in?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>Γ‰tats-Unis/Canada"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"Royaume-Uni"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_2">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"Union EuropΓ©enne"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_3">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"Asie-Pacifique</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>Which of the following regions are you in?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>US/CA"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"UK"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_2">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"EU"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_3">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"APAC</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_9" kind="choices">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01JSYAH9NDSZWX2H7WY8BXPKTX</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01JSYAH9ND6D8P8RJ8N8TADJGZ</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JSYAH9NDGKCDWXX9FMR88QTN" label_tkey="01JSYAH9NDDENTB6EKYM7AN4FB"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JSYAH9NDRXM191M84P89FSX5" label_tkey="01JSYAH9ND9CVF7AN0G8VBWH93"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>Are you located in USA, Canada, UK, Europe or Australia?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>πŸ‘Ž No</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>I am not. "</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_2">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"πŸ‘ Yes</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_3">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>I am!</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>Are you located in USA, Canada, UK, Europe or Australia?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>πŸ‘Ž Non"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"πŸ‘ Oui</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_10" kind="choices">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01H92Y117F8SFH2A445DQQGDWZ</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01H92Y117FDD3PP48J3GX9CB77</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01H92Y117F30FBTRG6KJH1S24M" label_tkey="01H92Y117FEMYSYADWMPR39NW9"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01H92Y117F83SBYEM8JRQQ7ZHN" label_tkey="01H92Y117FMT4X4CP4N6Z4C1HH"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>You can post your suggestion on the Yoto Space ideas wall.\n\nYoto Space is an amazing community of Yoto users where you can share card recommendations, useful tips, Make Your Own playlists, and much more.\n\nDid this help? </text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>βœ… Oui</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>merci ! "</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_2">

                        <label>"🚫 Non</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_3">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>j'ai besoin d'aide</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>You can post your suggestion on the Yoto Space ideas wall.\n\nYoto Space is an amazing community of Yoto users where you can share card recommendations, useful tips, Make Your Own playlists, and much more.\n\nDid this help? </text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>βœ… Yes</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>I'm all set"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_2">

                        <label>"🚫 No</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_3">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>I still need help</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_11" kind="choices">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01JSYACFH5G5KJ6MK3FTF99EXQ</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01JSYACFH5Z3GQ8W93THD2KXBR</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JSYACFH50QPZ9HZ8JGCK49KP" label_tkey="01JSYACFH57FXPF06QKXR7TE09"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JSYACFH5EFZZG44G8CH95Q94" label_tkey="01JSYACFH5FV9EQ92QCSWNJMB6"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>If you have already applied and are waiting for a response, please allow 2 weeks for our team to respond. If you have not heard from us, you can leave a message below to speak with one of our staff.\n\nDo you want to leave us a message?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>πŸ‘ Oui</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>j'ai besoin d'aide supplΓ©mentaire"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_2">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"πŸ‘Ž Non</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_3">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>tout est en ordre !</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>If you have already applied and are waiting for a response, please allow 2 weeks for our team to respond. If you have not heard from us, you can leave a message below to speak with one of our staff.\n\nDo you want to leave us a message?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>πŸ‘ Yes</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>I need additional assistance. "</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_2">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"πŸ‘Ž No</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_3">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>I'm all set!</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_12" kind="choices">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01JSYA3VPGC58ZS036XYYSBX70</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01JSYA3VPGD4ZJ0NM3ER0837WP</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JSYA3VPGCRJ6TPCBACMTCDTR" label_tkey="01JSYA3VPG0PZT3FFT4C0K2AJT"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JSYA3VPGF1VCCT2KY0KDD37N" label_tkey="01JSYA3VPHRQANBVKBKRF9P63A"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JSYA52SKC5GFNYKXJ3TAMTT3" label_tkey="01JSYA52SK89SD5NJ27NP910V2"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>Are you already a member of our B2B partners program?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>πŸ‘ Yes</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>I'm already a member and I need more help!"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_2">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"πŸ‘Ž No</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_3">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>I'm not a member yet</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_4">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>and need more information. "</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_5">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"I'm inquiring about ClassWallet</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>Are you already a member of our B2B partners program?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>πŸ‘ Oui</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>je suis dΓ©jΓ  membre et j'ai besoin de plus d'aide !"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_2">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"πŸ‘Ž Non</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_3">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>je ne suis pas encore membre et j'ai besoin de plus d'informations."</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_4">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"J'ai des questions concernant ClassWallet</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_13" kind="handover">

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US"/>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_14" kind="handover">

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US"/>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_15" kind="handover">

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US"/>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_16" kind="handover">

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US"/>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_17" kind="handover">

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US"/>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_18" kind="helpful-prompt">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <helpful_prompt_settings/>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US"/>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_19" kind="helpful-prompt">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <helpful_prompt_settings/>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US"/>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_20" kind="helpful-prompt">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <helpful_prompt_settings/>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US"/>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_21" kind="message">

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>We are sorry we are currently only accepting applications if you fall into one of the above catergories. </text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_22" kind="message">

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>We are sorry, we are currently, we’re not operating in other regions right now, but we’re always looking for new opportunities. \n\nTherefore, we’ll definitely take this into consideration for future market launches.\n\nIn the meantime, we wish to thank you for your interest!</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_23" kind="text-input">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <text_input_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01JSYMWX162XAM0PYSYBX97HWC</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01JSYMWX1502GG59X6V9HBPBC2</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β </text_input_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>How can we help?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_24" kind="text-input">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <text_input_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01JSYMX0P5TEE1EPCTNAPVA6TZ</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01JSYMX0P5KKTHAN5WNSR5NFT4</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β </text_input_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>How can we help?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_25" kind="text-input">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <text_input_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01JSYN4ZZQ3X69KV6VYRYJFRSQ</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01JSYN4ZZQRJGGES16PVQ3TF27</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β </text_input_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>How can we help?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_26" kind="text-input">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <text_input_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01JSYMXMHCW32BS5VYPA4DJDWS</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01JSYMXMHCNZADPG5YA72EFAJ2</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β </text_input_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>How can we help?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_27" kind="text-input">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <text_input_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01JSYN564XC0DVQ7RA5DTYDW8D</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01JSYN564XX22SVX7HJ7GZZY55</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β </text_input_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>How can we help?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_28" kind="text-input">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <text_input_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01JSYN4W5C84DKFZ0Q6ACJAQ6Q</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01JSYN4W5C2VMDMGQVZN9TD92B</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β </text_input_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>How can we help?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_29" kind="text-input">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <text_input_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01JSYN52XZAENES89C0852JMTK</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01JSYN52XZ7VSXCBPB1G8PZ7NZ</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β </text_input_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>How can we help?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_30" kind="text-input">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <text_input_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01JSYMWV216W8XYYR1GB0HFAK2</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01JSYMWV21GM4TJSSRZ2PZQHPZ</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β </text_input_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>How can we help?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_31" kind="text-input">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <text_input_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01JSYMWRB7CFQ14HFNHHHZ2XNB</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01JSYMWRB72N90CH3JPA1SPFWY</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β </text_input_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>How can we help?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_32" kind="text-input">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <text_input_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01HYAXSTP688KDYW93ZF4SXTTJ</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01HYAXSTP6QSB414GJ147XTMYY</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β </text_input_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>How can we help?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_33" kind="attachments-input">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <attachments_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01JJBYXB98ZC67EPHCMZ1D1QM1</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01JJBYXB987G1PV6YEN9SRHFFT</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β </attachments_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>Great! Please attach them here πŸ‘‡</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_34" kind="end">

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US"/>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_35" kind="handover">

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US"/>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_36" kind="handover">

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US"/>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_37" kind="handover">

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US"/>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_38" kind="handover">

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US"/>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_39" kind="helpful-prompt">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <helpful_prompt_settings/>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US"/>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_40" kind="helpful-prompt">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <helpful_prompt_settings/>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US"/>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_41" kind="helpful-prompt">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <helpful_prompt_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <ticket_assignee_team_id>768</ticket_assignee_team_id>

Β  Β  Β  Β  Β  Β  Β  Β Β </helpful_prompt_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US"/>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_42" kind="helpful-prompt">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <helpful_prompt_settings/>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US"/>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_43" kind="helpful-prompt">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <helpful_prompt_settings/>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US"/>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_44" kind="helpful-prompt">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <helpful_prompt_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <ticket_assignee_team_id>99</ticket_assignee_team_id>

Β  Β  Β  Β  Β  Β  Β  Β Β </helpful_prompt_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US"/>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_45" kind="message">

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>Thanks for your interest in Yoto.\n\nTo qualify for our Partners program, we ask you to complete the application below.\n\nhttps://form.typeform.com/to/XBmWN1OA?typeform-source=yotoplay.typeform.com\n\nPlease enter all your details in the Yoto Partners Application Form, and provided we can verify your details, we will send you an account invite as soon as we can.\n\nWe are looking forward to working with you!</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_46" kind="text-input">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <text_input_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01H92Y1V6ESYCXAY1XS38P0WC1</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01H92Y1V6EEZC4TE9DDZJN8M6N</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β </text_input_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>How can we help?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β Β </steps>

Β  Β Β <transitions>

Β  Β  Β  Β Β <transition id="transition_1" from_step_id="step_6" to_step_id="step_1">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘ Yes, I can"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_2" from_step_id="nan" to_step_id="nan">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_3" from_step_id="step_3" to_step_id="step_2">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘Ž Non"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_4" from_step_id="step_3" to_step_id="step_2">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘Ž No"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_5" from_step_id="step_3" to_step_id="step_2">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘Ž No"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_6" from_step_id="step_3" to_step_id="step_2">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘Ž Non"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_7" from_step_id="step_12" to_step_id="step_3">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘Ž No, I'm not a member yet, and need more information. "/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_8" from_step_id="step_12" to_step_id="step_3">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘Ž Non, je ne suis pas encore membre et j'ai besoin de plus d'informations."/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_9" from_step_id="step_12" to_step_id="step_3">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘Ž Non, je ne suis pas encore membre et j'ai besoin de plus d'informations."/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_10" from_step_id="step_12" to_step_id="step_4">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="I'm inquiring about ClassWallet"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_11" from_step_id="step_12" to_step_id="step_4">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="J'ai des questions concernant ClassWallet"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_12" from_step_id="step_12" to_step_id="step_4">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="J'ai des questions concernant ClassWallet"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_13" from_step_id="step_11" to_step_id="step_5">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘ Yes, I need additional assistance. "/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_14" from_step_id="step_11" to_step_id="step_5">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘ Oui, j'ai besoin d'aide supplΓ©mentaire"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_15" from_step_id="step_11" to_step_id="step_5">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘ Yes, I need additional assistance. "/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_16" from_step_id="step_11" to_step_id="step_5">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘ Oui, j'ai besoin d'aide supplΓ©mentaire"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_17" from_step_id="step_32" to_step_id="step_6">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_18" from_step_id="step_32" to_step_id="step_6">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_19" from_step_id="step_32" to_step_id="step_6">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_20" from_step_id="step_46" to_step_id="step_7">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_21" from_step_id="step_46" to_step_id="step_7">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_22" from_step_id="step_46" to_step_id="step_7">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_23" from_step_id="step_46" to_step_id="step_7">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_24" from_step_id="step_12" to_step_id="step_8">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘ Oui, je suis dΓ©jΓ  membre et j'ai besoin de plus d'aide !"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_25" from_step_id="step_12" to_step_id="step_8">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘ Yes, I'm already a member and I need more help!"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_26" from_step_id="step_12" to_step_id="step_8">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘ Yes, I'm already a member and I need more help!"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_27" from_step_id="step_12" to_step_id="step_8">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘ Oui, je suis dΓ©jΓ  membre et j'ai besoin de plus d'aide !"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_28" from_step_id="step_2" to_step_id="step_9">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘ Yes!"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_29" from_step_id="step_2" to_step_id="step_9">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘ Oui !"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_30" from_step_id="start" to_step_id="step_10">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸŽ™Leave feedback or suggestion"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_31" from_step_id="start" to_step_id="step_10">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸŽ™Leave feedback or suggestion"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_32" from_step_id="step_3" to_step_id="step_11">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘ Oui"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_33" from_step_id="step_3" to_step_id="step_11">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘ Yes"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_34" from_step_id="step_3" to_step_id="step_11">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘ Yes"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_35" from_step_id="start" to_step_id="step_12">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ›οΈ Demande B2B"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_36" from_step_id="step_26" to_step_id="step_13">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_37" from_step_id="step_31" to_step_id="step_14">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_38" from_step_id="step_7" to_step_id="step_15">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="01JJBYW34A3WJW7G44KD8Z296B"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_39" from_step_id="step_6" to_step_id="step_16">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="01JJBYYK12KN8815K4YGC9CM9F"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_40" from_step_id="step_30" to_step_id="step_17">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_41" from_step_id="step_21" to_step_id="step_18">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_42" from_step_id="step_29" to_step_id="step_19">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_43" from_step_id="step_4" to_step_id="step_20">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="01JSYAN9FHV1N8VD9Z6P2JZ2N5"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_44" from_step_id="step_2" to_step_id="step_21">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘Ž No, none of those apply to me."/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_45" from_step_id="step_9" to_step_id="step_22">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘Ž Non"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_46" from_step_id="step_5" to_step_id="step_23">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="Union EuropΓ©enne"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_47" from_step_id="step_5" to_step_id="step_24">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="Asie-Pacifique"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_48" from_step_id="step_8" to_step_id="step_25">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="US/CA"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_49" from_step_id="step_8" to_step_id="step_25">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="Γ‰tats-Unis/Canada"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_50" from_step_id="step_4" to_step_id="step_26">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘ Oui, j'ai besoin d'aide supplΓ©mentaire"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_51" from_step_id="step_8" to_step_id="step_27">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="Asie-Pacifique"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_52" from_step_id="step_8" to_step_id="step_27">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="APAC"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_53" from_step_id="step_8" to_step_id="step_28">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="Royaume-Uni"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_54" from_step_id="step_8" to_step_id="step_28">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="UK"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_55" from_step_id="step_8" to_step_id="step_29">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="EU"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_56" from_step_id="step_5" to_step_id="step_30">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="US/CA"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_57" from_step_id="step_5" to_step_id="step_30">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="Γ‰tats-Unis/Canada"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_58" from_step_id="step_5" to_step_id="step_31">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="Royaume-Uni"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_59" from_step_id="start" to_step_id="step_32">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="❓Something else"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_60" from_step_id="step_7" to_step_id="step_33">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘ Yes, I can"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_61" from_step_id="step_7" to_step_id="step_33">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘ Oui, je peux"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_62" from_step_id="step_6" to_step_id="step_1">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘ Oui, je peux"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_63" from_step_id="nan" to_step_id="nan">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_64" from_step_id="nan" to_step_id="nan">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_65" from_step_id="nan" to_step_id="nan">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_66" from_step_id="step_12" to_step_id="step_3">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘Ž No, I'm not a member yet, and need more information. "/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_67" from_step_id="step_12" to_step_id="step_4">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="I'm inquiring about ClassWallet"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_68" from_step_id="step_32" to_step_id="step_6">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_69" from_step_id="step_2" to_step_id="step_9">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘ Oui !"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_70" from_step_id="step_2" to_step_id="step_9">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘ Yes!"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_71" from_step_id="start" to_step_id="step_10">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸŽ™ Laisser un commentaire ou une suggestion"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_72" from_step_id="start" to_step_id="step_10">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸŽ™ Laisser un commentaire ou une suggestion"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_73" from_step_id="step_3" to_step_id="step_11">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘ Oui"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_74" from_step_id="start" to_step_id="step_12">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ›οΈ Demande B2B"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_75" from_step_id="start" to_step_id="step_12">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ›οΈ B2B inquiry"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_76" from_step_id="start" to_step_id="step_12">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ›οΈ B2B inquiry"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_77" from_step_id="step_11" to_step_id="step_34">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="01JSYACFH5EFZZG44G8CH95Q94"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_78" from_step_id="step_1" to_step_id="step_35">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_79" from_step_id="step_23" to_step_id="step_36">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_80" from_step_id="step_24" to_step_id="step_37">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_81" from_step_id="step_33" to_step_id="step_38">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_82" from_step_id="step_28" to_step_id="step_39">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_83" from_step_id="step_22" to_step_id="step_40">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_84" from_step_id="step_27" to_step_id="step_41">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_85" from_step_id="step_25" to_step_id="step_42">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_86" from_step_id="step_45" to_step_id="step_43">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_87" from_step_id="step_10" to_step_id="step_44">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="01H92Y117F30FBTRG6KJH1S24M"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_88" from_step_id="step_2" to_step_id="step_21">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘Ž Non, aucun de ces cas ne s'applique Γ  moi."/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_89" from_step_id="step_9" to_step_id="step_45">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘ Yes, I am!"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_90" from_step_id="step_9" to_step_id="step_45">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘ Oui"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_91" from_step_id="step_9" to_step_id="step_22">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘Ž No, I am not. "/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_92" from_step_id="step_5" to_step_id="step_23">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="EU"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_93" from_step_id="step_5" to_step_id="step_24">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="APAC"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_94" from_step_id="step_4" to_step_id="step_26">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="πŸ‘ Yes, I still need additional assistance. "/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_95" from_step_id="step_10" to_step_id="step_46">

            <event kind="choices" label="🚫 Non, j'ai besoin d'aide"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_96" from_step_id="step_10" to_step_id="step_46">

            <event kind="choices" label="🚫 No, I still need help"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_97" from_step_id="step_8" to_step_id="step_29">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="Union EuropΓ©enne"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_98" from_step_id="step_5" to_step_id="step_31">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="UK"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_99" from_step_id="start" to_step_id="step_32">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="❓ Autre chose"/>

Β  Β  Β  Β Β </transition>

Β  Β Β </transitions>

</workflow>

Overview

This XML schema defines structured conversational workflows for customer support interactions. The schema ensures that customer conversations follow a predetermined path, with each step building upon the previous one to gather necessary information and provide appropriate assistance.

Core Principles

1. Sequential Flow Execution

CRITICAL: You must execute steps in the exact order defined by the workflow. You cannot skip steps, reorder them, or jump ahead in the flow. Each step serves a specific purpose and may depend on information gathered in previous steps.

2. Step Completion Requirements

Every step must be fully completed before proceeding to the next step. This means:

  • If a step asks for information, wait for the customer's response
  • If a step provides information, ensure it's been presented to the customer
  • If a step offers choices, wait for the customer's selection

3. Information Gathering vs. Information Providing

  • Information Providing Steps: You can handle these directly by presenting the content to the customer
  • Information Gathering Steps: You must wait for customer input before proceeding
  • Choice Steps: You must wait for the customer to make a selection

Schema Structure

Workflow Element

1xml<workflow name="Support Flow" initial_step_id="start">
  • initial_step_id: Identifies where the conversation must begin
  • You must always start with this step, no exceptions

Step Types and Required Behavior

1. choices - Decision Points

1xml<step id="start" kind="choices">
2 <localized_content language="en-US">
3 <message>
4 <text>These articles might help. Did they resolve your issue?</text>
5 </message>
6 <choices>
7 <choice event_id="choice_1">
8 <label>βœ… Yes, I'm all set!</label>
9 </choice>
10 <choice event_id="choice_2">
11 <label>🚫 No, I still need help</label>
12 </choice>
13 </choices>
14 </localized_content>
15</step>

Your Instructions:

  • Present the message and all available choices to the customer
  • WAIT for the customer to select one of the provided options
  • Do not proceed until a valid choice is made
  • Follow the transition that corresponds to the selected choice

2. text-input - Text Collection

1xml<step id="step_1" kind="text-input">
2 <localized_content language="en-US">
3 <message>
4 <text>Please provide your email address and describe the issue.</text>
5 </message>
6 </localized_content>
7</step>

Your Instructions:

  • Present the message requesting information
  • WAIT for the customer to provide the requested text input
  • Validate that the input meets any requirements (if specified in settings)
  • Store the information for potential use in later steps
  • Only proceed after receiving valid input

3. attachments-input - File Collection

1xml<step id="step_2" kind="attachments-input">
2 <localized_content language="en-US">
3 <message>
4 <text>Please attach screenshots or recordings of the issue.</text>
5 </message>
6 </localized_content>
7</step>

Your Instructions:

  • Ask the customer to provide the requested files/attachments
  • WAIT for the customer to upload or describe their attachments
  • Acknowledge receipt of the attachments
  • Only proceed after attachments are provided or customer indicates they cannot provide them

4. helpful-prompt - Escalation Points

1xml<step id="step_3" kind="helpful-prompt">
2 <settings>
3 <helpful_prompt_settings>
4 <ticket_assignee_team_id>99</ticket_assignee_team_id>
5 </helpful_prompt_settings>
6 </settings>
7</step>

Your Instructions:

  • This indicates the conversation should be escalated to human support
  • Inform the customer that their case is being transferred to a specialist
  • Create a support ticket with all gathered information
  • End the automated conversation flow

Transition Logic

Following the Flow

Transitions define how to move between steps:

1xml<transition id="transition_1" from_step_id="start" to_step_id="step_1">
2 <event kind="choices" label="🚫 No, I still need help"/>
3</transition>

Your Instructions:

  • Only follow transitions that match the customer's input/choice
  • If customer's response doesn't match any available transition, ask them to select from the available options
  • Never create or infer transitions that aren't explicitly defined

Error Handling

If a customer provides an invalid response:

  1. Acknowledge their input
  2. Restate the available options or requirements
  3. Ask them to try again
  4. Do not advance to the next step

Critical Rules for Implementation

1. Mandatory Step Sequence

1βœ… CORRECT: start β†’ step_1 β†’ step_2 β†’ step_3
2❌ WRONG: start β†’ step_3 (skipping steps)
3❌ WRONG: step_2 β†’ start (going backwards)

2. Wait for Required Input

1βœ… CORRECT: Present choices β†’ Wait for selection β†’ Process response β†’ Move to next step
2❌ WRONG: Present choices β†’ Assume response β†’ Move to next step

3. Complete Information Gathering

1βœ… CORRECT: "Please provide your email" β†’ Wait for email β†’ Validate β†’ Continue
2❌ WRONG: "Please provide your email" β†’ Continue without email

4. Respect Workflow Boundaries

1βœ… CORRECT: Only use transitions defined in the workflow
2❌ WRONG: Create shortcuts or alternative paths

Implementation Guidelines

Starting a Conversation

  1. Locate the initial_step_id in the workflow
  2. Begin with that step
  3. Present any message content to the customer
  4. If the step requires input, wait for it
  5. Follow the appropriate transition

Processing Customer Responses

  1. Match the response to available transitions from current step
  2. If no match found, ask customer to clarify or choose from available options
  3. Follow the matching transition to the next step
  4. Repeat the process

Handling Information

  • Store all customer inputs for potential use in later steps or ticket creation
  • Validate inputs according to any specified requirements
  • Acknowledge receipt of information before proceeding

Ending Conversations

Conversations end when:

  • Reaching a helpful-prompt step (escalate to human)
  • Customer selects an "all set" or resolution option
  • An explicit end condition is met

Example Flow Execution

11. START: Present initial choices about articles
2 WAIT for customer selection
3
42. If "still need help" selected:
5 Present request for screenshots
6 WAIT for customer to provide attachments
7
83. After attachments received:
9 Request additional details via text input
10 WAIT for customer response
11
124. After text received:
13 Escalate to human support team
14 END automated flow

Summary

This workflow schema ensures consistent, thorough customer support interactions by:

  • Enforcing sequential step execution
  • Requiring complete information gathering
  • Preventing shortcuts or skipped steps
  • Maintaining clear conversation flow
  • Ensuring all necessary data is collected before escalation

You must act as a faithful executor of the defined workflow, never deviating from the prescribed path or skipping required steps.

<?xml version="1.0" ?>

<workflow

Β  Β Β xmlns="http://example.com/workflow" name="Product recommendation" account_id="6069" is_draft="false" initial_step_id="start">

Β  Β Β <metadata>

Β  Β  Β  Β Β <created>2025-05-27T07:56:32.982927</created>

Β  Β  Β  Β Β <version>1.0</version>

Β  Β  Β  Β Β <available_languages>

Β  Β  Β  Β  Β  Β Β <language>en-US</language>

Β  Β  Β  Β Β </available_languages>

Β  Β Β </metadata>

Β  Β Β <steps>

Β  Β  Β  Β Β <step id="step_1" kind="choices">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01JNKAW4FDXH4RZY9CFDPP5P9P</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01JNKAW4FD23MM7JXHFEFVK688</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JNKAW4FCAHBXBVMJK6YT2H2A" label_tkey="01JNKAW4FD3RVFHZW0YEA42P1J"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JNKAW4FD7QF9YEY1JXE5SPCV" label_tkey="01JNKAW4FD5D6V1W63D0ZKP8F0"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>Where are you planning to use them most?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>Outdoors"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"Indoors</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_2" kind="helpful-prompt">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <helpful_prompt_settings/>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US"/>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_3" kind="helpful-prompt">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <helpful_prompt_settings/>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US"/>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_4" kind="message">

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>We recommend you go with shoe A</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_5" kind="message">

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>We recommend you go with shoe B</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="start" kind="choices">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01JNKAW4FDC65H2H4N0GX0JZFZ</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01JNKAW4FDQ33F3H8YFE4TQ506</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JNKAW4FC6PQ11K0P1F2H90QS" label_tkey="01JNKAW4FC8Y7X4NCV6A60DQSY"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JNKAW4FD5T71878552KW72D7" label_tkey="01JNKAW4FDX2DV0YZ1F7HFCHJW"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>How much cushion are you looking for?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>Light cushion"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"Medium cushion</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_6" kind="choices">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices_settings>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text_tkey>01JNKAW4FEBA0TEFHY1NKNKNFX</text_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <html_tkey>01JNKAW4FE6YQ9S34VE4SE7EV0</html_tkey>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JNKAW4FDEAQTMGPAR9FWC2RS" label_tkey="01JNKAW4FDQFGF9JFXAJDZMQYM"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="01JNKAW4FD60TSSBNT8B6GH52Q" label_tkey="01JNKAW4FDVYZ4JBGBGR33FDQM"/>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices_settings>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>What kinds of activities will you be doing?</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β  Β  Β Β <choices>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_0">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>Running"</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <choice event_id="choice_1">

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <label>"Cross-training</label>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β </choice>

Β  Β  Β  Β  Β  Β  Β  Β Β </choices>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_7" kind="helpful-prompt">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <helpful_prompt_settings/>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US"/>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_8" kind="helpful-prompt">

Β  Β  Β  Β  Β  Β Β <settings>

Β  Β  Β  Β  Β  Β  Β  Β Β <helpful_prompt_settings/>

Β  Β  Β  Β  Β  Β Β </settings>

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US"/>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_9" kind="message">

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>We recommend you go with shoe D</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β  Β  Β Β <step id="step_10" kind="message">

Β  Β  Β  Β  Β  Β Β <localized_content language="en-US">

Β  Β  Β  Β  Β  Β  Β  Β Β <message>

Β  Β  Β  Β  Β  Β  Β  Β  Β  Β Β <text>We recommend you go with shoe C</text>

Β  Β  Β  Β  Β  Β  Β  Β Β </message>

Β  Β  Β  Β  Β  Β Β </localized_content>

Β  Β  Β  Β Β </step>

Β  Β Β </steps>

Β  Β Β <transitions>

Β  Β  Β  Β Β <transition id="transition_1" from_step_id="start" to_step_id="step_1">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="Light cushion"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_2" from_step_id="step_9" to_step_id="step_2">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_3" from_step_id="step_4" to_step_id="step_3">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_4" from_step_id="step_1" to_step_id="step_4">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="Outdoors"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_5" from_step_id="step_1" to_step_id="step_5">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="Indoors"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_6" from_step_id="nan" to_step_id="nan">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_7" from_step_id="start" to_step_id="step_6">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="Medium cushion"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_8" from_step_id="step_5" to_step_id="step_7">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_9" from_step_id="step_10" to_step_id="step_8">

Β  Β  Β  Β  Β  Β Β <event kind="nan" label="nan"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_10" from_step_id="step_6" to_step_id="step_9">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="Cross-training"/>

Β  Β  Β  Β Β </transition>

Β  Β  Β  Β Β <transition id="transition_11" from_step_id="step_6" to_step_id="step_10">

Β  Β  Β  Β  Β  Β Β <event kind="choices" label="Running"/>

Β  Β  Β  Β Β </transition>

Β  Β Β </transitions>

</workflow>

FAQs

Returns

LAST UPDATE:JUL 9 2021 1:26PMΒ β€’Β EST. READ TIME:EST. READ TIME: 2 MIN

We aim to make returns and exchanges easy!

Please note: Returns and exchanges are only available for clothing, bags, and rings at this time.

Apparel and bags can be returned or exchanged under the following conditions:

  • The product(s) is within 30 days from the date of purchase.
  • All returns/exchanges must be accompanied by the original receipt or packing slip.
  • Products are purchased directly from our website.
  • Products purchased during a 'final sale' promotion are ineligible for returns/exchanges.

Refunds will be made in the form of original payment method. We reserve the right to refuse a refund request if it does not comply with our policies.

If you ordered apparel and it doesn’t fit, you can exchange it for the right size. For our exchange process, clickΒ here for US orders andΒ here for Canadian orders.

All Jewelry purchases made on our website are final sale and cannot be returned or exchanged (with the exception of rings).Β 

Double-check the β€œDetails” section on each product page to confirm whether or not your item is final sale.


If you ordered a ring and it doesn’t fit, you can exchange it for the right size. For our ring exchange process, click hereΒ for US orders andΒ here for Canadian orders.Β 

There are a few return exceptions:Β 

  1. If your bracelet or accessory breaks within a year after purchasing it*, we’ll happily send you a new one based on inventory availability, no need to send it back to us.Β 
  2. If your item is damaged upon delivery, no need to return the damaged item as well. Just contact usΒ hereΒ with your order information and a photo of the damaged item*, and we’ll send you a replacement.
  3. If you received your item as a gift and it breaks within a year of the original purchase date*, we can definitely send you a replacement! All we need is the original order number or the email address of the (amazing) relative/friend that got you the gift so we can find the transaction in our system.

*Online Orders onlyΒ 

If you have any questions, please contact us at

Wrong/Missing Item(s)

Sorry about that! If we sent you an incorrect item in your order, click the β€œSubmit a Request” link and provide us with your name, order number, and the item(s) you’re missing or received by accident. We’ll handle the issue ASAP!Β 

Website Issues

From our experience, most issues with the site are typically related to the web browser being used. So if you’re having some technical difficulties, the first step is to upgrade to the latest version of one of the following browsers:
  • Google Chrome
  • Mozilla Firefox
  • Apple Safari
Note: We do notrecommend using Internet Explorer at this time, as it tends to clash with the HTML5 and JavaScript behaviors used by our site. If you’re still having issues after using a different browser and upgrading to the latest version, try a few of these steps:
  1. Access our site using your browser’s safe mode.
  2. Clear your browser’s cache and cookies. (Here’s how.)
  3. Disable any add-ons or extensions that might be running.
  4. Ensure Java has been updated to the latest version, which is available here.
Fingers crossed that these steps help fix any issues you’re having! If you need some help performing any of the troubleshooting steps above, contact us by clicking the β€œSubmit a request” link below.Β 

Update


Ring Size ChartΒ 

LAST UPDATE:MAY 20 2020 3:51PM

Looking to add some rings to your Pura Vida collection? Here’s a guide to help you pick the right ring size!Β 

Β 

Diameter (MM)

Circumference (MM)

US / CAD / MEX

UK / AUS

EU

Asia / South America

15.7

49.32

5

J Β½

49

50

9

16.5

51.87

6

L Β½Β 

M

52

11

12

17.3

54.51

7

N Β½

O

54

55

14

18.2

57.15

8

P Β½

Q

57

16

18.9

59.34

9

R Β½

59

60

18


If you want to print out your own size chart, click here!


Remember that fit can vary depending on style. If you find your ring doesn’t quite fit the way you want it to, you can exchange it for a different size. For our ring exchange process,Β 

Ring Exchange

LAST UPDATE:JUL 9 2021 1:28PMΒ β€’Β EST. READ TIME:EST. READ TIME: 2 MIN

We have a really simple process that makes it super easy to exchange your ring (US & CA orders, only) for the proper size. ClickΒ hereΒ to enter our exchanges portal for US orders andΒ hereΒ for Canadian orders.Β You have 30 days from your date of purchase* to exchange a ring out for another size. Your items must be returned in their original packaging and damage-free.Β 

*excludes applicable sales

Follow the easy steps below to exchange your ring(s):

1. Once on our exchange portal, you just need to enter in your order number and shipping zip code:Β 


2. From there, you will be able to select the ring (or rings) that you want to exchange*:

*Items not eligible for an exchange will be grayed out and will be unable to be selected

3. We require you to select a reason code for your exchange. You can select from one of three options:

  • Item didn't fit: The item you ordered was not the correct size
  • Item was damaged: The item you ordered was damaged upon delivery.Β 
  • I received the wrong item: Mistakes can happen and we want to fix it! Select the item you should have received and we will make sure to get that sent out to you!Β 

4. Once a reason is selected, you will be able to pick a new size. Β 

5. Once fully completed, you will be prompted to download or be emailed a pre-paid shipping label to send back your item(s). Β Please ensure to send us the item(s) within 30 days of creating the exchange or we will be unable to process the exchange.Β 

That is it!Β 

Please note:

  • Your exchange will be processed withinΒ 1-3 business days after your package is receivedΒ by our warehouse. Once the exchange has been completed on our end, we’ll send out your new product ASAP and email you the order confirmation. Shipping will take the usualΒ 3-5 business daysΒ from when your package leaves our warehouse.
  • Should the product's original packaging be ripped, torn, unable to be reused or is missing, your item willΒ not be eligible for an exchange.

Β 

If you have any additional questions or issues processing your exchange, please reach out to our Customer Advocacy Team or select β€œSubmit a Request” below.Β 

Damaged Product

LAST UPDATE:APR 15 2020 10:43AM

No worries! All of our bracelets and accessoriesΒ have a 1-year warranty, which means we’ll replace the damaged item within a year from the time of purchase*. To get a replacement, send us anΒ email and send us your name, shipping address, order number (if available) and a picture of your damaged item. Β Four exceptions:Β 
  1. We can only issue a replacement if you provide a photo of the damaged item.
  2. If a bracelet has been altered in any way (i.e. if you cut, shortened, or re-burned the strings or edges), we can’t replace the item.
  3. We’re unable to replace lost or stolen items.
  4. Monthly Club Packs and Style Packs -- Some bracelets are not sold separately inside our style packs. Β All of our monthly club packs are unique and those bracelets are not sold separately. Β If these bracelets break, a replacement value will be assigned based upon the type of bracelet that broke.Β 
  5. We can only issue a replacement if the item was purchased directly through our website. If it was purchased in store with one of our wholesale partners, you must contact the store so they can replace the damaged item for you.Β 

Order Delays

Delays cuz

Order delay type 2

International order

Brumate - Shipping Options

Brumate - Shipping Options

Question: What are the shipping options available?

Shipping Options

At Brumate, we offer the following shipping options:

  1. Economy Shipping (Continental US)
  2. Free economy shipping is offered for all Continental US orders over $50 USD. This option allows you to receive your order within the designated timeframe.

    Please note that the subtotal for your order needs to be over the designated amount after discounts and before taxes in order for the free shipping promotion to apply. There is no need for discount codes as this promotion is automatically applied.

    css Copy code
  3. International Shipping
  4. Unfortunately, we do not offer free shipping to locations outside of the United States. However, we do provide international shipping options for our customers worldwide.

    Please be aware that international orders may still incur duties at the border. These duties are the responsibility of the customer and are determined by the customs regulations of the destination country.

If you have any further questions or need assistance with shipping, please don't hesitate to contact us. Our customer support team will be happy to help!

Get support