Legacy Dev Forum Posts

 View Only

Sign Up

  • 1.  Archy questions

    Posted 06-05-2025 18:49

    Becky_Powell | 2020-02-03 14:29:14 UTC | #1

    Questions from @chunkeat26:

    1. can we edit Processing Prompt in YAML?
    2. can we edit suggested timeout?
    3. How to we map the Success Output, in this case, it's 'id', into Flow.id?
    4. How do we define the next step of Data Action output, ie 'Success', 'Failure', 'Timeout'?

    jon.vansteen | 2020-02-03 16:44:02 UTC | #2

    Hi @Becky_Powell and @chunkeat26,

    You can see a list of all configurable properties by setting up the Visual Studio Code integration and hitting Ctrl + Space in the editor. See the guide to learn more about setting that up.

    Once you've done that, you'll be able to see the following available properties in your YAML file when hitting Ctrl + Space:

    - callData:
        processingPrompt:          <- (1) this property here is how you can set the processing prompt on a Call Data Action
          lit:
            name: Prompt.MyPrompt
        timeout:                   <- (2) this property here is how you can set the timeout setting on a Call Data Action
          lit:
            minutes: 3
        category:                  <- (3) this section shows how you can set the Success Outputs below. These are just placeholders and dont reflect what you will see in your organization.
          MY_DATA_ACTION_CATEGORY:
            dataAction:
              MY_DATA_ACTION:
                successOutputs:
                  my_data_action_success_output_id:
                    var: Flow.id
        outputs:                   <- (4) this shows how to configure the output paths found on a Call Data Action to configure the actions
          success:
            actions:
              - disconnect:
                  name: Disconnect Success
          failure:
            actions:
              - disconnect:
                  name: Disconnect Failure
          timeout:
            actions:
              - disconnect:
                  name: Disconnect

    Thanks, Jon


    chunkeat26 | 2020-02-03 21:15:08 UTC | #3

    Hi Jon,

    Thank you. this is working now. appreciate your quick response!

    Regards, CK


    Becky_Powell | 2020-03-04 21:25:29 UTC | #4

    This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.


    This post was migrated from the old Developer Forum.

    ref: 7056