# Parsing Responses for Zapier

### Code Zap by Zapier

<figure><img src="/files/flrqYgz5zZwqkecgoRYD" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/g20Ktcf4fSSP5eTmGvQz" 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="/files/h6iVQUceAwsS77cbcCAl" alt=""><figcaption></figcaption></figure>

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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://manual.formwise.ai/formwise/integrations/formwise-api/form-completion-webhooks/parsing-responses-for-zapier.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
