Get all the needed information for faqs page of the shop

GET /v2/public/shops/{shopId}/faqs

Path parameters

  • shopId integer(int64) Required

Query parameters

  • key string

Responses

  • Page Info

    Hide response attributes Show response attributes object
    • data object

      Additional properties are NOT allowed.

      Hide data attribute Show data attribute object
      • faqs array[object] | null
        Hide faqs attributes Show faqs attributes object
        • id integer(int64)
        • question string | null
        • answer string | null
        • position integer(int64)
    • message string | null
    • errors array[string] | null
    • log string | null
    Hide response attributes Show response attributes object
    • data object

      Additional properties are NOT allowed.

      Hide data attribute Show data attribute object
      • faqs array[object] | null
        Hide faqs attributes Show faqs attributes object
        • id integer(int64)
        • question string | null
        • answer string | null
        • position integer(int64)
    • message string | null
    • errors array[string] | null
    • log string | null
    Hide response attributes Show response attributes object
    • data object

      Additional properties are NOT allowed.

      Hide data attribute Show data attribute object
      • faqs array[object] | null
        Hide faqs attributes Show faqs attributes object
        • id integer(int64)
        • question string | null
        • answer string | null
        • position integer(int64)
    • message string | null
    • errors array[string] | null
    • log string | null
  • 404

    Shop Not Found

GET /v2/public/shops/{shopId}/faqs
curl \
 --request GET 'https://dev.sellpass.io/v2/public/shops/{shopId}/faqs' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "data": {
    "faqs": [
      {
        "id": 42,
        "question": "string",
        "answer": "string",
        "position": 42
      }
    ]
  },
  "message": "string",
  "errors": [
    "string"
  ],
  "log": "string"
}
Response examples (200)
{
  "data": {
    "faqs": [
      {
        "id": 42,
        "question": "string",
        "answer": "string",
        "position": 42
      }
    ]
  },
  "message": "string",
  "errors": [
    "string"
  ],
  "log": "string"
}