In case you missed the announcement: The Alteryx One Fall Release is here! Learn more about the new features and capabilities here
ACT NOW: The Alteryx team will be retiring support for Community account recovery and Community email-change requests Early 2026. Make sure to check your account preferences in my.alteryx.com to make sure you have filled out your security questions. Learn more here
Start Free Trial

Alteryx Designer Cloud Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Cloud.
SOLVED

Parsing JSON from Rest API in alteryx Cloud

Steve_InterWorks
5 - Atom

Hello

 

In desktop designer I've relied on the JSON Parse tool however in cloud that isn't available. I have a JSON response from an API with the following structure, what's the best way to parse the key value pairs from the 'items' array into columns within the alteryx cloud environment? I've failed using the create dataset from SQL option most likely with the wrong logic.

 

 

{ 
  "@context" : "value" ,
  "items" : [ { 
    "key1" : "value1" ,
    "key2" : "value2" ,
    "key3" : "value3" 
  }
  , { 
    "key1" : "value1" ,
    "key2" : "value2" ,
    "key3" : "value3"
  }
}

 

 

 Thanks!

1 REPLY 1
Steve_InterWorks
5 - Atom

Turns out JSON Parse is in preview which I don't have as I'm on a trial version so this question isn't relevant anymore.