Get started
Authentication
Each operation declares its supported security scheme in the API reference. Seller Shipping Labels accepts either a bearer token in the Authorization header or an authenticated accessToken cookie.
Use credentials issued for the Gearment team that owns the seller account. API access is evaluated against that authenticated team.
REST endpoints
Seller Shipping Labels uses JSON over HTTPS at the POD API server. Use the public resource paths in the API reference; no Connect protocol headers are required.
GET /pod/v1/vendor/shipping-labels/services HTTP/1.1
Host: apiv2.gearment.com
Authorization: Bearer YOUR_ACCESS_TOKEN
Accept: application/json
Integration checklist
- Authenticate as the intended Gearment seller team.
- Call
GET /v1/vendor/shipping-labels/servicesto confirm the team's available carriers and services. - Create a rate quote with
POST /v1/vendor/shipping-labels/ratesbefore requesting a purchase. - Use a unique
requestIdwhen purchasing a label so retries remain idempotent. - Store the returned label identifier and retrieve the label from Gearment when it is needed by your workflow.