Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions crowdsec-docs/unversioned/console/api/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ curl -X 'GET' 'https://admin.api.crowdsec.net/v1/blocklists' -H 'accept: applica

The CrowdSec Service API reference is available at:

* [Swagger UI](https://admin.api.dev.crowdsec.net/v1/docs): The Swagger documentation for the CrowdSec Service API.
* [Redoc](https://admin.api.dev.crowdsec.net/v1/redoc): The ReDoc documentation for the CrowdSec Service API.
* [Swagger UI](https://admin.api.crowdsec.net/v1/docs): The Swagger documentation for the CrowdSec Service API.
* [Redoc](https://admin.api.crowdsec.net/v1/redoc): The ReDoc documentation for the CrowdSec Service API.

## SDKs

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Every product product has its way to handle external blocklists. We provide a si
Some providers have technical limits on the number of IPs they can pull at once. That's why we recommand to monitor the number of IPS returned by the integration and use the pagination feature if needed.
For this, you can use the page and page_size query parameters in the URL.

`https://admin.api.dev.crowdsec.net/v1/integrations/123/content?page=1&page_size=1500 `
`https://admin.api.crowdsec.net/v1/integrations/123/content?page=1&page_size=1500 `

You can then use the page parameter to get the next page of IPs.

Expand Down
4 changes: 2 additions & 2 deletions crowdsec-docs/unversioned/service_api/integrations.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ For some constructors, the integrations can generate vendor-specific format, see

| Constructor | Authentication | Multiple URLs | Constructor Doc | Format |
| ----------- | -------------- | ------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------ |
| CheckPoint | Basic Auth | Yes | [CheckPoint doc](https://support.checkpoint.com/results/sk/sk1) | `checkpoint` |
| CheckPoint | Basic Auth | Yes | [CheckPoint doc](https://support.checkpoint.com/results/sk/sk132193) | `checkpoint` |
| Cisco | Basic Auth | Yes | [Cisco doc](https://www.cisco.com/c/en/us/td/docs/security/secure-firewall/management-center/device-config/710/management-center-device-config-71/objects-object-mgmt.html#ID-2243-00000291) | `cisco` |
| F5 | Basic Auth | Yes | [F5 doc](https://techdocs.f5.com/kb/en-us/products/big-ip-afm/manuals/product/big-ip-network-firewall-policies-and-implementations-14-0-0/07.html ) | `f5` |
| Fortinet | Basic Auth | Yes | [Fortinet doc](https://docs.fortinet.com/document/fortigate/6.4.5/administration-guide/891236/external-blocklist-policy) | `fortigate` |
Expand All @@ -23,7 +23,7 @@ For all the other providers, the `plain_text` format consists of one ip per line

Some providers have technical limits on the number of IPs they can pull at once. That's why we recommand to monitor the number of IPS returned by the integration and use the pagination feature if needed. For this, you can use the page and page_size query parameters in the URL.

https://admin.api.dev.crowdsec.net/v1/integrations/123/content?page=1&page_size=1500
https://admin.api.crowdsec.net/v1/integrations/123/content?page=1&page_size=1500

You can then use the page parameter to get the next page of IPs.

Loading