API Authorization

In order to make protected API calls you must authenticate as a Boxbrownie.com member. You can obtain an access token by logging in to your BoxBrownie.com account and click on the 'API Credentials' link located in the menu.

Once you have generated the token you can then use your token or give it to a trusted source to make API calls.

Your token should be included as part of the Authorization header when making API calls, below is an example of how you would include your token as part of a request.

  	curl -X POST https://api.boxbrownie.com/job \
  	-H "Authorization: $accessToken" \
  	-H "Content-Type: application/xml" \