Authenticate to obtain an access token + refresh token to use the API.
POST
/authentication/token
curl \
-X POST https://cloud.sierraonetech.com/skyvision/integrations/v1/authentication/token \
-H "Content-Type: application/json" \
-d '{"username":"user@example.com","password":"pass123"}'
Request example
{
"username": "user@example.com",
"password": "pass123"
}
Request examples
{
"username": "user@example.com",
"password": "pass123"
}
Response examples (200)
{
"access": "eyJhbGciOiJIUzI1...",
"refresh": "eyJhbGciOiJIUzI1..."
}
Response examples (200)
{
"access": "eyJhbGciOiJIUzI1...",
"refresh": "eyJhbGciOiJIUzI1..."
}