Basic information

GET /{shopId}/legal

Returns hyperlinks of legal information for a shop.

Authorisation

OAuth 2.0 Token required with scopes:

legal_read

URI parameters

Name Type Description
shopId string

The unique identifier of the shop.

Required: true
Example: DemoShop

Query parameters

Name Type Description
locale string

Represents the language code according to ISO 639-1 and the country code according to ISO 3166-1. If not provided, the shop’s default language is used. We recommend to always send this parameter with your request. If the default language had been changed in the administration, it might take up to 1 day until this change affects the shop.

Required: false
Example: en_US

Response attributes

Name Type Description

object of contentPageSummary

Response

HTTP 200

Media type application/json

{
  "contactInformation": {
    "name": "Contact information"
  },
  "privacyPolicy": {
    "name": "Privacy policy"
  },
  "termsAndConditions": {
    "name": "Terms and Conditions"
  },
  "rightsOfWithdrawal": {
    "name": "Right of withdrawal"
  },
  "shippingInformation": {
    "name": "Shipping terms"
  },
  "cookiePolicy": {
    "name": "Cookie policy"
  },

  "links": [
    {
      "rel": "contact",
      "href": "https://pm.epages.com/rs/shops/apidocu/legal/contact-information"
    },
    {
      "rel": "privacy",
      "href": "https://pm.epages.com/rs/shops/apidocu/legal/privacy-policy"
    },
    {
      "rel": "tac",
      "href": "https://pm.epages.com/rs/shops/apidocu/legal/terms-and-conditions"
    },
    {
      "rel": "withdrawal",
      "href": "https://pm.epages.com/rs/shops/apidocu/legal/rights-of-withdrawal"
    },
    {
      "rel": "shipping",
      "href": "https://pm.epages.com/rs/shops/apidocu/legal/shipping-information"
    },
    {
      "rel": "cookie",
      "href": "https://pm.epages.com/rs/shops/apidocu/legal/cookie-policy"
    }
  ]
}