This document is for an older version of Kazoo (version 4.3) that is no longer supported. You should upgrade and read the current documentation.
Basic Auth
As an alternative for generated Tokens, you can make request with HTTP Basic Auth using your account ID and user name and password.
Basic Auth Username
Should be set to account_id
of the authorizing account.
Basic Password Password
Should be set to MD5 hash of your username:password
PASSWORD=`echo -n username:password | md5sum | awk '{print $1}'`
Sample cURL Requests
curl -v \
--basic --user {AUTH_ACCOUNT_ID}:$PASSWORD \
http://server.com:8000/v2/accounts/{ACCOUNT_ID}/devices
This is useful for reseller to execute requests against a their sub-account quickly.