What is my authentication token?

For authentication we use Basic auth. Your dedicated technical support contact will provide you with your user id and API key. To create your basic auth token, base64 encode the string ${MOVELLO_USER_ID}:${MOVELLO_API_KEY} like so:

echo -n "${MOVELLO_USER_ID}:${MOVELLO_API_KEY}" | base64

Last updated

Was this helpful?