메인 콘텐츠로 건너뛰기
GET
/
admin
/
translations
/
{entityType}
/
{entityId}
번역 조회
curl --request GET \
  --url https://api.headlesscommerce.io/v1/admin/translations/{entityType}/{entityId} \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "entity_type": "<string>",
      "entity_id": "<string>",
      "locale": "<string>",
      "field": "<string>",
      "value": "<string>",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ]
}

인증

Authorization
string
header
필수

API Key. Example: sk_live_xxxxx or pk_live_xxxxx

경로 매개변수

entityType
string
필수

Example: product, category, collection

entityId
string
필수

쿼리 매개변수

locale
string

응답

200 - application/json

성공

data
object[]