Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions source/includes/welcome.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,17 @@ when you are proxying through ZAP, or via the host and port ZAP is listening on,
By default only the machine ZAP is running on is able to access the APIs. You can [allow other machines](https://www.zaproxy.org/faq/how-can-i-connect-to-zap-remotely/),
that are able to use ZAP as a proxy, access to the API.

### Using the ZAP API with curl

When interacting with the ZAP API using curl, keep the following points in mind:

- All parameter values must be URL-encoded.
- Some boolean parameters (for example `enabled`) may need to be explicitly provided when deviating from default values.

```bash
curl "http://zap/<format>/<component>/<operation>/<operation-name>/?param1=value1&param2=value2"
```

### Client SDKs
Comment on lines 109 to 111
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add a blank line between the code fence and heading.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@kingthorin
Fixed, thanks!

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@kingthorin
Fixed, thanks!


API clients are available for the following languages:
Expand Down