Receiving APIs
//Add Inbound Site
This operation used for generating Inbound Site Id.
Security
bearerAuth
One of:
- Sandbox Serverhttps://api-sandbox.sendpro360.pitneybowes.com/pitneytrack/api/v1/inboundsites
- Production Server (uses live data)https://api.sendpro360.pitneybowes.com/pitneytrack/api/v1/inboundsites
- AddInboundSiteDTOForSite
- AddInboundSiteDTOForOtherType
curl -i -X POST \
https://api-sandbox.sendpro360.pitneybowes.com/pitneytrack/api/v1/inboundsites \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "Site A",
"type": "site",
"locationId": "M0K9QbNMgob",
"defaultSite": true
}'Response
{ "inboundSiteId": "zADZNQ1VWvvA" }