Getting Started • EP.Retail.PoBox.BackEnd.API EndPoints
Start your EP.Retail.PoBox.BackEnd.API EndPoints integration
Configure the base URL, authenticate, and make your first request.
Production Base URL
All API requests for EP.Retail.PoBox.BackEnd.API EndPoints should be targeted at
https://box-dev.emiratespost.ae/services/pobox unless testing in a local sandbox.Integration Steps
Configure the base URL
The primary server URL is taken from the first server entry in the OpenAPI specification.
API_BASE_URL=https://box-dev.emiratespost.ae/services/poboxAuthenticate
Use the authentication scheme defined by your OpenAPI file for protected requests.
API_TOKEN=your_access_tokenSend a request
Call one of the operations defined in the OpenAPI file.
curl "$API_BASE_URL/api/v1/Account/passwordLessToken" \
-X POST \
-H "Authorization: Bearer $API_TOKEN" \
-H "Content-Type: application/json"