Your ShipStream WMS instance base URL is always the website that you log into, but without a path. For example, if you log in at https://your-company.shipstream.app/admin/login, then your base URL would be https://your-company.shipstream.app. Examples:
  • https://your-company.shipstream.app for ShipStream subdomains
  • https://your.custom-domain.com for whitelabeled 3PLs
Therefore, the full url for your APIs would be:
  • Merchant API: https://your-company.shipstream.app/api/jsonrpc
  • Global API: https://your-company.shipstream.app/api/global/... where ... is the path the the specific endpoint such as v1/system/status
Full Global API example
https://your-company.shipstream.app/api/global/v1/system/status
The Global API OpenAPI spec is written such that the servers.url should already include /api/global and the endpoint paths then begin with /v1/....