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 |
JSON Schema
{
"$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"
]
}