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

Questions

What is still unknown about the brand.

On this page
  • questions.list · Open questions
  • questions.ask · Ask the brand
  • questions.answer · Answer a question

Updated on January 1, 1970

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

In this section

  • Permissions and roles
  • Brand
  • Genome
  • Brand Kit
  • Library
  • Works
  • Calendar
  • Connections
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

  • questions.list · Open questions
  • questions.ask · Ask the brand
  • questions.answer · Answer a question

questions.list · Open questions

Questions the brand still has to answer, for the Genome, the Kit or a work. Read-only: it never syncs or rewrites anything.

FieldValue
KindRead
HTTP methodPOST /api/v1/questions.list
MCP toolquestions_list
Scopequestions.read
Minimum roleViewer
Human confirmationNo
DoorsNödo, Voice, MCP, API
StatusPlanned
Widgetchoice

Input

{
  scope?: "genome" | "brand_kit" | "work" | "all"  // default "all"
  cursor?: string  // ≤ 512 · Opaque cursor from a previous `nextCursor`.
  limit?: integer  // 1–50 · default 20
}

Output

{
  items: Array<{
    id: string  // uuid
    question: string
    scope: string
    options: string[]
    revision: integer  // -9007199254740991–9007199254740991
  }>
  nextCursor: string | null
}

questions.ask · Ask the brand

Asks the brand up to 5 questions with options plus a free answer when information is missing. Use it instead of guessing.

FieldValue
KindWrite
HTTP methodPOST /api/v1/questions.ask
MCP toolquestions_ask
Scopequestions.write
Minimum roleMember
Human confirmationNo
DoorsNödo, MCP, API
StatusAvailable
Widgetchoice

Input

{
  questions: Array<{
    key: string  // ≤ 80
    question: string  // ≤ 300
    options: string[]  // ≤ 6 items
    scope: "genome" | "brand_kit" | "work"
  }>  // ≤ 5 items
}

Output

{
  ok: true
  ids: string[]
}

questions.answer · Answer a question

Answers, defers or dismisses one question. An answer becomes an accepted brand declaration in memory.

FieldValue
KindWrite
HTTP methodPOST /api/v1/questions.answer
MCP toolquestions_answer
Scopequestions.write
Minimum roleMember
Human confirmationNo
DoorsNödo, MCP, API
StatusPlanned
Widgetchoice

Input

{
  questionId: string  // uuid
  expectedRevision: integer  // -9007199254740991–9007199254740991
  action: "answer" | "defer" | "dismiss"
  answer?: string  // ≤ 2000
  idempotencyKey: string  // ≤ 80
}

Output

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