Create API Object
Last updated
Was this helpful?
Last updated
Was this helpful?
The API object is the core object of the package, all functionality is accessed through this object. The first step is to create the object and pass it the base URL of the API, your username, and password.
Once you have built the object the next step is to authenticate it, this authorizes the object to interact with the Odin API it is the equivalent of you logging in through the web portal. To authenticate this call the .authenticate() method on the object.
This method can raise an OAApiAuthenticationFail error, which means that the API has failed to authenticate and it will give you some details on potential issues. If this does not raise an error the API object is authenticated and now authorized to use all other methods.