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/
The unique identifier for the client. This value is provided by Coro support.
The secret for the client. This value is provided by Coro support.
https://docs.coro.net/_mock/api/api-docs/oauth/token
https://api.secure.coro.net/oauth/token
curl -i -X POST \
https://docs.coro.net/_mock/api/api-docs/oauth/token \
-H 'Content-Type: application/json' \
-d '{
"client_id": "2qDgzSrZxnUCs4jqmfdEP5MVkEmA3Uak",
"client_secret": "9c9Dabz5nQT65LXfYt_61wxb9UssT7tpzTM-gVB4RJZB9gKDf1_TjO6o3eLcBaba",
"audience": "https://secure.coro.net/api",
"grant_type": "client_credentials"
}'{ "access_token": "eyJz93a...k4laUWw", "token_type": "Bearer", "expires_in": 86400 }