# Parsing Responses for Zapier

### Code Zap by Zapier

<figure><img src="https://728196400-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0Lugni2T5TewiPeYs1ka%2Fuploads%2FZQWBTa5wOkRIPHR6w0dq%2Fimage.png?alt=media&#x26;token=f0c746ed-c84c-4f86-84fd-47ab61aaa9bf" alt=""><figcaption></figcaption></figure>

<figure><img src="https://728196400-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0Lugni2T5TewiPeYs1ka%2Fuploads%2FjSTIOzuE2LUJdmuo4KeP%2Fimage.png?alt=media&#x26;token=9861935e-cd58-4473-9229-98f636397427" alt=""><figcaption></figcaption></figure>

You will have to set the `Input Data` to `RAW` and the Text will be the returned `raw_body` result from the webhook catch. For the code, we are adding a step manually for Zapier to parse the code.

```javascript
let PARSED = JSON.parse(inputData.RAW);

output = [{PARSED}];
```

<figure><img src="https://728196400-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F0Lugni2T5TewiPeYs1ka%2Fuploads%2F3IcwAsqOkbiW5bKFuhzf%2Fimage.png?alt=media&#x26;token=4aeb0e69-61ba-40d3-b76c-fe7ac35430f5" alt=""><figcaption></figcaption></figure>

Afterwards, you should now be able to retrieve the individually parsed sections of the webhook.
