VendorShipping Methods
List Shipping Methods
List Shipping Methods — vendor REST API endpoint.
GET
/vendor/me/shipping-methodsVendor bearer token requiredList Shipping Methods
List all shipping methods configured for your vendor.
What this means in plain English
Returns the shipping methods available for your vendor store.
When to use this
- Reviewing configured shipping options.
- Selecting a method when creating shipments.
Request example
curl -X GET 'https://api.next.gcommerce.glass/api/v1/vendor/me/shipping-methods'Response examples
200Success
[{
"id": "550e8400-e29b-41d4-a716-446655440060",
"name": "Standard Shipping",
"isActive": true,
"pricingType": "FLAT_RATE",
"weightLimitMin": null,
"weightLimitMax": null,
"currency": "USD",
"description": "5-7 business days",
"countryRates": [
{
"id": "550e8400-e29b-41d4-a716-446655440061",
"methodId": "550e8400-e29b-41d4-a716-446655440060",
"countryCode": "US",
"flatRate": "9.99",
"baseRate": null,
"weightTiers": []
}
],
"createdAt": "2025-03-01T10:00:00.000Z",
"updatedAt": "2025-03-01T10:00:00.000Z"
}]Status codes
200
OK
Request succeeded.
401
Unauthorized
Missing or invalid bearer token.
403
Forbidden
Insufficient permissions for this action.
400
Bad Request
Validation failed or invalid parameters.
404
Not Found
Resource not found.
429
Too Many Requests
Global rate limit exceeded (10,000 requests per 10 minutes per IP).
500
Internal Server Error
Unexpected server error.
403
Forbidden
No vendor membership, or insufficient vendor role (requires OWNER, ADMIN, or EDITOR for write operations).
Try it
Uses your saved session from login. Edit values and send a live request, or copy the cURL command.