Enterprise MM4 MO
Authentication
Callback requests to Aggregator shall support Authentication where a header with user password as provisioned for the specific application will be used when sending the POST request. See Examples page for Header syntax.
Authorization Header
Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=
Decoded Value
Base64: dXNlcm5hbWU6cGFzc3dvcmQ=
Decoded (UTF-8):
username:password
Explanation:
In HTTP Basic Authentication, the username and password are joined with a colon (:) and then base64-encoded.
In this example, the username is username and the password is password.