...
The credentials are the same you use when logging into the Beebox UI:
...
Never disclose your admin credentials to third parties.
Create API session to access a specific project
If you want to work with content and data of one specific project, do include the project ID when connectingcreating a session.
Code Block |
---|
http://localhost:8089/api/connect?project=f167bce4-66d8-4bc1-8ed6-4c9086ae7a46&login=myadmin&pwd=adminpassword |
Since we specified the project key, the session allows access to data of this project only.
The method returns the session token. You can type this into a web browser to see the token.
We specify the admin login, the admin password and the project key. With the obtained session key, all API methods will relate to that project.
Create API session to access any project and for administration
For unlimited access to all projects and administrative API calls, omit the project ID in the url:
Code Block |
---|
http://localhost:8089/api/connect?project=&login=myadmin&pwd=adminpassword |
This returns your a project independent session token:
This token can be used for creating new projects, deleting projects, access the Beebox log and any other project independent operation.
...