Authentication
Authenticate by sending an HTTPS POST request to https://api.prod.firemon.cloud/authenticate
The body of the request should be in the following format:
{
"username": "",
"password": ""
}
providing your username and password.
An example using cURL
curl --request POST \
--url https://api.prod.firemon.cloud/authenticate \
--header 'Content-Type: application/json' \
--data '{ "username": "", "password": "" }'
The response will be in JSON format with the following data:
{
"expiration": 1755549613,
"idToken": "...",
"refreshToken": "..."
}
The value of idToken
will be used to make authenticated requests.