Skip to main content

Admin credentials

These are the credentials you use to login to the Beebox user interface. The credentials procure unrestricted access to all Beebox projects and all data.

You can use your admin credentials for the Beebox API and get unlimited access. Although, you should always use standard or advanced credentials unless these are too limited.

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 creating a session.

CODE
http://localhost:8089/api/connect?project=f167bce4-66d8-4bc1-8ed6-4c9086ae7a46&login=myadmin&pwd=adminpassword

 

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
http://localhost:8089/api/connect?project=&login=myadmin&pwd=adminpassword

 

This returns 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.

In order to manipulate a specific project during your session, you need to append the project ID to the token and use this with your project specific API calls.

CODE
{token}*{project id}

For example:

CODE
localhost:8089/api/files/file?token=611b27e4-9d09-40ba-b7a8-794aaeff4b07*f167bce4-66d8-4bc1-8ed6-4c9086ae7a46&filename=  .....

 

Next steps: Read about connecting to the Beebox to acces project data in the API reference.

 

 


JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.