Birdeye · Schema

Update Custom Card Request

Reputation ManagementReviewsCustomer ExperienceSurveysMessagingMulti-LocationAI

Properties

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

JSON Schema

update-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/update-custom-card-request.json",
  "title": "Update Custom Card Request",
  "type": "object",
  "properties": {
    "cardId": {
      "type": "number"
    },
    "title": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "imageURL": {
      "type": "string"
    },
    "imagePosition": {
      "type": "string"
    },
    "isVisible": {
      "type": "number"
    },
    "isPinOnTop": {
      "type": "number"
    },
    "clickURL": {
      "type": "string"
    },
    "linkText": {
      "type": "string"
    },
    "type": {
      "type": "string"
    }
  },
  "required": [
    "cardId",
    "title"
  ]
}