Scenario Outline: I have an audit type <type>
    When a request is received
    """
    {
              "elements":{  
                 "type":<type>,
                 "id":"sku-1"
              }
    """
    Examples:
        |   type    |
        |   test1   |
        |   test2   |
        |   test3   |
How to solve the above problem to replace with the values given in Examples?
 
     
    