For authentication we use Basic autharrow-up-right. 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:
${MOVELLO_USER_ID}:${MOVELLO_API_KEY}
echo -n "${MOVELLO_USER_ID}:${MOVELLO_API_KEY}" | base64
Last updated 4 years ago