cURL
curl --request GET \ --url https://{defaultHost}/v1/shipping_profiles \ --header 'Authorization: Bearer <token>'
{ "object": "list", "pagination": { "count": 1, "limit": 20, "page": 1, "url": "/v1/shipping_profiles" }, "data": [ { "id": "929f57d3-9530-4da6-ac2f-c959c6bed2d8", "object": "shipping_profile", "default": false, "name": "General", "fallback_shipping_zone": null, "created_at": 1776176581, "updated_at": 1776176581 } ] }
Returns a list of your shipping profiles.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Success
A string describing the object type returned.
Show child attributes
An array of objects.
Was this page helpful?