API Object
The API
class is the main interface for interacting with the Odin API. It provides authentication, session management, and access to various entities within the API.
Initialization
Constructor
Parameters:
base_url
(str
): The base URL of your Odin instance API.username
(str
): The username used for authentication.password
(str
): The password used for authentication.rate_limit
(bool
): Enables (True) or disables (False) rate limiting to 5 calls per second. Defaults toTrue
.
Attributes
base_url
: The base URL of the API.username
: The username used for authentication.rate_limit
: Indicates if rate limiting is enabled.authorised
: Boolean indicating if the API is authenticated.token
: The token string returned from the Odin API upon successful authentication.
Rate Limiting
The API
class includes built-in rate limiting functionality to ensure compliance with API usage policies and prevent overloading the server. By default, the rate limit is set to 5 calls per second.
Enabling or Disabling Rate Limiting
The rate_limit
functionality can be controlled through the rate_limit
parameter when initializing the API
class or by updating the configuration later.
Enable Rate Limiting
To enable rate limiting (default behavior):
Methods
1. _authenticate
_authenticate
Private method that authenticates the session with the provided username
and password
.
Raises:
OSApiAuthenticationFail
: If authentication fails.
Returns:
bool
:True
if authentication is successful.
2. refresh_authorisation
refresh_authorisation
Re-authenticates the session to refresh the API token.
Raises:
OSSessionRefreshFail
: If re-authentication fails.
Returns:
bool
:True
if re-authentication is successful.
3. get_auth_details
get_auth_details
Retrieves the current session details.
Raises:
OSFailedToLocateSession
: If session details cannot be retrieved.
Returns:
dict
: The session details.
4. update_api
update_api
Updates the API instance with new configuration details.
Parameters:
base_url
(str
, optional): The new base URL.username
(str
, optional): The new username.password
(str
, optional): The new password.rate_limit
(bool
, optional): The new rate limit setting.rate_limit
(object
, optional): The new logger object.
Example Usage
Initializing the API:
Authenticating:
Updating API Configuration:
Notes
Ensure your credentials and API endpoint are correct before initializing the
API
object.Use the provided methods to interact with various entities like users, call records, and administrators.
Last updated
Was this helpful?