Birdeye · Schema

Create Custom Card Request

Reputation ManagementReviewsCustomer ExperienceSurveysMessagingMulti-LocationAI

Properties

Name Type Description
title string
description string
imageURL string
imagePosition number
isVisible number
isPinOnTop number
clickURL string
View JSON Schema on GitHub

JSON Schema

create-custom-card-request.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/birdeye/refs/heads/main/json-schema/create-custom-card-request.json",
  "title": "Create Custom Card Request",
  "type": "object",
  "properties": {
    "title": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "imageURL": {
      "type": "string"
    },
    "imagePosition": {
      "type": "number"
    },
    "isVisible": {
      "type": "number"
    },
    "isPinOnTop": {
      "type": "number"
    },
    "clickURL": {
      "type": "string"
    }
  },
  "required": [
    "title"
  ]
}