How to get events to show up in calendar?

Noob question here. I binded my asset array to the calendar hoping to display the assets in the calendar as events

Not sure why it isn’t showing up? How do I bind it properly? :slight_smile:



hi @raelyn we have the same issue, here an another post with the same problem Calendar events mapping issues

Oh! So it’s a bug? Is there a workaround haha

no yet! we still waiting :frowning:

I reported a bug. Waiting for response…

Hi guys, I don’t think it’s a bug. Can you please ensure you are passing the proper bindings as per Calendar | Documentation ?

Here is an example:

[
  {
    "id": "event-201",
    "title": "Launch",
    "start": "2025-05-02T09:00:00Z",
    "end": "2025-05-02T11:00:00Z",
    "allDay": false,
    "backgroundColor": "#3788d8",
    "borderColor": "#2C5F9E",
    "textColor": "#FFFFFF",
    "content": "Launch event for the new product line",
    "groupId": "launch-events",
    "data": {
      "roomId": "B101",
      "priority": "high",
      "requiredAttendees": ["alice", "bob", "carol"]
    }
  },
  {
    "id": "event-202",
    "title": "Design Review",
    "start": "2025-05-05T13:30:00Z",
    "end": "2025-05-05T15:00:00Z",
    "allDay": false,
    "backgroundColor": "#f39c12",
    "borderColor": "#d35400",
    "textColor": "#000000",
    "content": "Review of the new UI mockups",
    "groupId": "design-reviews",
    "data": {
      "roomId": "C202",
      "priority": "medium",
      "requiredAttendees": ["dave", "eve"]
    }
  },
  {
    "id": "event-203",
    "title": "Team Meeting",
    "start": "2025-05-12T16:00:00Z",
    "end": "2025-05-12T17:30:00Z",
    "allDay": false,
    "backgroundColor": "#27ae60",
    "borderColor": "#1e8449",
    "textColor": "#FFFFFF",
    "content": "Company-wide monthly update",
    "groupId": "company-meetings",
    "data": {
      "roomId": "MainHall",
      "priority": "high",
      "requiredAttendees": ["all"]
    }
  },
  {
    "id": "event-204",
    "title": "UX Workshop",
    "start": "2025-05-20T10:00:00Z",
    "end": "2025-05-20T12:30:00Z",
    "allDay": false,
    "backgroundColor": "#8e44ad",
    "borderColor": "#6c3483",
    "textColor": "#FFFFFF",
    "content": "Interactive UX design thinking session",
    "groupId": "workshops",
    "data": {
      "roomId": "D303",
      "priority": "low",
      "requiredAttendees": ["frank", "grace"]
    }
  },
  {
    "id": "event-205",
    "title": "Sprint Planning",
    "start": "2025-06-01T08:30:00Z",
    "end": "2025-06-01T10:00:00Z",
    "allDay": false,
    "backgroundColor": "#c0392b",
    "borderColor": "#922b21",
    "textColor": "#FFFFFF",
    "content": "Plan tasks for the next sprint",
    "groupId": "agile-meetings",
    "data": {
      "roomId": "E404",
      "priority": "high",
      "requiredAttendees": ["heidi", "ivan", "judy"]
    }
  },
  {
    "id": "event-206",
    "title": "Client Demo",
    "start": "2025-06-10T14:00:00Z",
    "end": "2025-06-10T15:30:00Z",
    "allDay": false,
    "backgroundColor": "#2980b9",
    "borderColor": "#1f618d",
    "textColor": "#FFFFFF",
    "content": "Demonstration of product features to client",
    "groupId": "client-engagements",
    "data": {
      "roomId": "F505",
      "priority": "medium",
      "requiredAttendees": ["kate", "leo"]
    }
  },
  {
    "id": "event-207",
    "title": "Marketing Sync",
    "start": "2025-06-18T11:00:00Z",
    "end": "2025-06-18T12:00:00Z",
    "allDay": false,
    "backgroundColor": "#16a085",
    "borderColor": "#117a65",
    "textColor": "#FFFFFF",
    "content": "Weekly alignment with marketing team",
    "groupId": "marketing-meetings",
    "data": {
      "roomId": "G606",
      "priority": "medium",
      "requiredAttendees": ["mallory", "nick"]
    }
  },
  {
    "id": "event-208",
    "title": "Board Review",
    "start": "2025-07-02T17:00:00Z",
    "end": "2025-07-02T19:00:00Z",
    "allDay": false,
    "backgroundColor": "#d35400",
    "borderColor": "#ba4a00",
    "textColor": "#FFFFFF",
    "content": "Quarterly board meeting",
    "groupId": "board-meetings",
    "data": {
      "roomId": "H707",
      "priority": "high",
      "requiredAttendees": ["board", "ceo"]
    }
  },
  {
    "id": "event-209",
    "title": "Engineering Hackathon",
    "start": "2025-07-15T09:00:00Z",
    "end": "2025-07-15T17:00:00Z",
    "allDay": false,
    "backgroundColor": "#7f8c8d",
    "borderColor": "#606060",
    "textColor": "#FFFFFF",
    "content": "24-hour hackathon for new feature prototyping",
    "groupId": "hackathons",
    "data": {
      "roomId": "Lab1",
      "priority": "low",
      "requiredAttendees": ["dev-team"]
    }
  },
  {
    "id": "event-210",
    "title": "Company Retreat",
    "start": "2025-08-05T00:00:00Z",
    "end": "2025-08-05T23:59:59Z",
    "allDay": true,
    "backgroundColor": "#2ecc71",
    "borderColor": "#27ae60",
    "textColor": "#FFFFFF",
    "content": "Annual offsite team-building retreat",
    "groupId": "retreats",
    "data": {
      "roomId": "Offsite",
      "priority": "medium",
      "requiredAttendees": ["all"]
    }
  }
]

Does it accept start and end values like this? “2025-05-27”? Or must we change it to that format? If so, how do we change it to that format?

Also, I don’t have a groupID and roomID. what if you don’t have those things like roomID, can you just leave the other irrelevant keys as “”?

The issue has been resolved. It works now.
Yes, you can provide dates as YYYY-MM-DD.
You do not need to provide group or room ids.

1 Like

Yes, for that use case, we pushed a fix today :slight_smile: is it all good @raelyn and @Guillenius ?

1 Like

@DanielL it works, thanks a lot dude!