Birdeye · Schema

Post Request

Reputation ManagementReviewsCustomer ExperienceSurveysMessagingMulti-LocationAI

Properties

Name Type Description
page number
size number
searchStr string
sortBy string
orderBy string
View JSON Schema on GitHub

JSON Schema

post-request.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/birdeye/refs/heads/main/json-schema/post-request.json",
  "title": "Post Request",
  "type": "object",
  "properties": {
    "page": {
      "type": "number"
    },
    "size": {
      "type": "number"
    },
    "searchStr": {
      "type": "string"
    },
    "sortBy": {
      "type": "string"
    },
    "orderBy": {
      "type": "string"
    }
  },
  "required": [
    "page",
    "size"
  ]
}