This is the Coro Cybersecurity platform API specification reference.
This section provides a complete reference listing for the Coro Cybersecurity REST API resource model.
This reference lists all the resources available through the Coro REST API.
Each section relates to a specific resource and provides its name, description, unique URI path, and the list of operations you can perform on it.
For each operation, you can find:
The portal also provides code samples and examples for making requests in a number of programming languages, together with samples of the possible response bodies.
In addition to this, Coro provides a Try It feature where you can interact with the API directly through the portal. To use Try It, you'll need to first obtain Client ID and Secret credentials; for more information, see Authentication.
https://docs.coro.net/_mock/api/api-docs/
https://api.secure.coro.net/
Filter by whether the log was part of a remediation action.
API responses use pagination to reduce loading time. Return a maximum of this many items per page. Used only for the very first request subsequent request should use cursor value
A base64-encoded pagination cursor used to retrieve a specific page of results. This value should be taken from the nextPage or prevPage field in a previous response. If omitted, the API returns the first page of results. Use this parameter to navigate forward or backward through paginated data.
https://docs.coro.net/_mock/api/api-docs/v1/audit-logs/search
https://api.secure.coro.net/v1/audit-logs/search
curl -i -X GET \
'https://docs.coro.net/_mock/api/api-docs/v1/audit-logs/search?autoGenerated=true&cursor=eyJzIjoxLCJwIjowfQ%3D%3D&fromTime=1754047435131&pageSize=50&remediation=true&subTypes=markAsUnprocessed&ticketIds=GYDU-1212&toTime=1754047575801&types=detectionLogs' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Workspace: string'{ "items": [ { … } ], "totalElements": 20, "nextPage": "eyJzIjoxLCJwIjowfQ==", "prevPage": "eyJzIjoxLCJwIjowfQ==" }