Each API request needs two values
- API Version within the path:
POST api/v{'{version}'}/jobs/quantities -> POST api/v1/jobs/quantities
- An XCustomer header value that matches the Pipeline LBM Tenant value:
https://lb.pipelinebt.app/lbmsales -> "lbmsales" is the X-Customer value- Here is an example CURL request to the Jobs endpoint that includes the API Version and the XCustomer value:
curl -X 'GET' \
'https://293-app-prod-pipeline-public-api.azurewebsites.net/api/v1/jobs' \
-H 'accept: application/json' \
-H 'X-Customer: lbmsales' \
-H 'Authorization: Bearer <token>'