Basic Authentication
The Basic Authentication method is used for REST services.
Username: Company_Code
Password: Authorization_Id
curl --request POST \
--url {url_to_endpoint} \
--header 'Authorization: Basic Q29tcGFueV9Db2RlOkF1dGhvcml6YXRpb25fSWQ=' \
--header 'Content-Type: application/json' \
--data '{payload}'