Basic Authentication

The Basic Authentication method is used for REST services.

Username: Company_Code

Password: Authorization_Id

Note: Basic Authentication is not required on SOAP/XML services.

Example:
curl --request POST \ 
--url {url_to_endpoint} \
--header 'Authorization: Basic Q29tcGFueV9Db2RlOkF1dGhvcml6YXRpb25fSWQ=' \ 
--header 'Content-Type: application/json' \  
--data '{payload}'