Privacy and analytics

We use necessary technical cookies and, only with your consent, analytics and marketing pixels to improve the website and measure campaigns.

Privacy policyCookie policy
Docs
English
EspañolEnglishFrançaisDeutschItalianoPortuguês

Getting started

  • What is Nömad?
  • Getting started with Nömad
  • Create your brand and complete the Genome
  • Invite your team
  • Glossary

Brand OS

  • What is inside Brand OS
  • What is the Genome?
  • Who is Nödo?
  • What does a Brand Manager do?
  • Brand Kit and Library
  • Posts and calendar
  • Connections
  • Meetings

Work

  • Work and tasks
  • Ordering work
  • Following, reviewing and approving deliveries
  • Custom quotes
  • Yes, there are humans behind it

Account and billing

  • Plans and pricing
  • Billing and payments
  • Roles and permissions
  • Workspaces and multiple brands
  • Languages, apps and data

Help

  • How to get help

API

  • Brand API
    • Permissions and roles
    • Brand
    • Genome
    • Brand Kit
    • Library
    • Works
    • Calendar
    • Connections
    • Publishing
    • Inbox
    • Team
    • Conversation
    • Memory
    • Questions
    • Media
    • Store
    • Plan
    • Orders
    • Activity

MCP

  • MCP server

Connectors

  • Brand connectors

Nödo and agents

  • Nödo in the brand
API/Brand API
Reference1 min read

Calendar

Deliveries, posts, meetings and dates.

On this page
  • calendar.window · View the calendar
  • calendar.dates.save · Mark a date

Updated on January 1, 1970

Previous
Русский
한국어
日本語
中文
हिन्दी
Open the app
Works
NextConnections

In this section

  • Permissions and roles
  • Brand
  • Genome
  • Brand Kit
  • Library
  • Works
  • Connections
  • Publishing
Can't find what you need? Write to usWrite to usGo to the app
© 2026 Nömad · Nömad documentationLinkedInInstagramFacebookTikTokYouTubeX
Go to nomad.oooBack to top

On this page

  • calendar.window · View the calendar
  • calendar.dates.save · Mark a date

calendar.window · View the calendar

Deliveries, tasks, campaigns, social posts, meetings and marked dates between two dates, at most 62 days apart, in the caller time zone.

FieldValue
KindRead
HTTP methodPOST /api/v1/calendar.window
MCP toolcalendar_window
Scopecalendar.read
Minimum roleViewer
Human confirmationNo
DoorsNödo, Voice, MCP, API
StatusPlanned
Widgetcalendar_week

Input

{
  from: string
  to: string
  kinds?: Array<"delivery" | "task" | "campaign" | "social" | "meeting" | "marked_date">
  timeZone?: string  // ≤ 64 · default "Europe/Madrid"
}

Output

{
  events: Array<{
    id: string
    kind: "delivery" | "task" | "campaign" | "social" | "meeting" | "marked_date"
    title: string
    start: string
    end: string | null
    allDay: boolean
    link: string | null
  }>
}

calendar.dates.save · Mark a date

Creates, changes or deletes a marked date (launch, event, holiday) that the whole brand team sees.

FieldValue
KindWrite
HTTP methodPOST /api/v1/calendar.dates.save
MCP toolcalendar_dates_save
Scopecalendar.write
Minimum roleMember
Human confirmationYes
DoorsNödo, MCP, API
StatusPlanned
Widgetconfirm

Input

{
  op: "upsert"
  id?: string  // uuid
  title: string  // ≤ 120
  date: string
  endDate?: string
  note?: string  // ≤ 500
}
| {
  op: "delete"
  id: string  // uuid
}

Output

{
  ok: true
  id?: string
  revision?: integer  // -9007199254740991–9007199254740991
}