Obtaining authorization header value by Client ID and Client Secret

For testing purposes you could the client ID 78KYzeX5wS8r0FYz9KdvNt9xHMRA61PJK80IHwNj.

If you plan to deploy your client or integration, please contact someone@ezeep.com to get your unique client ID for your purpose. Please keep in mind, that the client ID mentioned here must not be used for production code and will be changed in future at any time without prior comment.

You need to base64-encode it ("78KYzeX5wS8r0FYz9KdvNt9xHMRA61PJK80IHwNj:") to get the authorization header value:

Authorization: Basic NzhLWXplWDV3UzhyMEZZejlLZHZOdDl4SE1SQTYxUEpLODBJSHdOajo=

You can use a online base64 encoding tool or in a Linux/Mac/WSL/WSL2 shell

echo -n "78KYzeX5wS8r0FYz9KdvNt9xHMRA61PJK80IHwNj:"|base64

Important: The length of base64 encoded string needs to be a multiple of 4, fill up with = if needed.

Obtaining Through Client Secret

You need to base64-encode it ("<client_id>:<client_secret>") to get the authorization header value:

Authorization: Basic NzhLWXplWDV3UzhyMEZZejlLZHZOdDl4SE1SQTYxUEpLODBJSHdOajo3UzhyMEZZejlLZHZOdDl4SE1SQTYxUEpLODBJSHdOaj==