🛠️ Setting up your environment
Credentials
Before you can start using the Carrier Connect API, you need a user and a password. If you do not have your own client yet, you can use the following credentials to test the API:
Parameter | Value |
---|---|
Client | APITEST |
User | API_TEST |
Password | API_TEST2024 |
Use it like this in the API Reference:
The client "APITEST" is intended for basic connectivity testing and is used by different users. Don't use it with sensitive data.
REST (OpenApi)
https://rz3.aeb.de/demo1cai/rest/openapi.json
SOAP
https://rz3.aeb.de/demo1cai/servlet/bf/DLCarrierBF?WSDL
https://rz3.aeb.de/demo1cai/servlet/bf/doc/DLCarrierBF/de/aeb/xnsg/dl/bf/IDLCarrierBF.html
The API is only available via Secure Socket Layer (SSL).
Authentication
Authentication data must be provided for every call. It is expected as an HTTP authentication (HTTP basic protocol). The user and client login data is transmitted in the format USER@CLIENT:PASSWORT
.
The login data must be base 64–encoded. The password is written out, so this is why we require using HTTPS encryption and the data cannot be intercepted by unauthorized parties.
Example:
The string "API_TEST@APITEST:API_TEST2024", when encoded in base 64, yields “QVBJX1RFU1RAQVBJVEVTVDpBUElfVEVTVDIwMjQ=".
The following line would therefore be added to the HTTP header:
Authorization: Basic QVBJX1RFU1RAQVBJVEVTVDpBUElfVEVTVDIwMjQ=
Updated 5 months ago