메인 콘텐츠로 건너뛰기
GET
/
storefront
/
shipping-methods
사용 가능한 배송 방법 조회
curl --request GET \
  --url https://api.headlesscommerce.io/v1/storefront/shipping-methods \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "price": {
        "amount": 123,
        "currency": "<string>"
      },
      "free_shipping_threshold": {
        "amount": 123,
        "currency": "<string>"
      },
      "is_active": true,
      "position": 123
    }
  ]
}

인증

Authorization
string
header
필수

API Key. Example: sk_live_xxxxx or pk_live_xxxxx

응답

200 - application/json

성공

data
object[]