S1 API Docs?
aschultz
Newbie ✭
Anybody else unable to open the S1 API Docs in the Management Console? I click on it and nothing happens. Trying to see what the URL to access the API is since we don't have a direct management URL with SentinelOne. Something like https://<???>.sentinelone.net/web/api/v2.1
Category: Capture Client
0
Answers
The direct link to the documentations is: https://captureclient-36.sonicwall.com/api/docs/
The URL to access the API is similarly: https://captureclient-36.sonicwall.com/api/
To authenticate you will need to create a user from within the Capture Client Management Console, since logging in via MySonicWall would require OAUTH.
Create User in CCMC:
Once you have the user account setup, the API call will be to: https://captureclient-36.sonicwall.com/api/login
From the API Documentation:
The authentication data has to be sent as JSON in the body of the request.
Here's an example of the request:
curl --location --request POST 'https://captureclient-36.sonicwall.com/api/login' \
--header 'Content-Type: application/json' \
--data-raw '{
"email": "example@gmail.com",
"password": "example.password"
}'