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çaisDeutschItaliano

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

Connections

Connected networks, website and analytics.

On this page
  • connections.list · List connections
  • connections.connect · Connect an account
  • connections.disconnect · Disconnect

Updated on January 1, 1970

Português
Русский
한국어
日本語
中文
हिन्दी
Open the app
Previous
Calendar
NextPublishing

In this section

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

  • connections.list · List connections
  • connections.connect · Connect an account
  • connections.disconnect · Disconnect

connections.list · List connections

Brand integrations (social networks, website, analytics) with their status, plus the providers available to connect.

FieldValue
KindRead
HTTP methodPOST /api/v1/connections.list
MCP toolconnections_list
Scopeconnections.read
Minimum roleAdmin
Human confirmationNo
DoorsNödo, Voice, MCP, API
StatusPlanned
Widgetlist

Input

{
  includeCatalog?: boolean  // default false
}

Output

{
  items: Array<{
    id: string  // uuid
    provider: string  // Provider key, e.g. instagram, wordpress, google_analytics.
    account: string | null
    status: "connected" | "needs_attention" | "disconnected" | "pending_setup"
    connectedAt: string | null
  }>
  catalog?: Array<{
    provider: string
    name: string
    available: boolean
  }>
}

connections.connect · Connect an account

Returns the provider authorization link for a person to open. Credentials are never requested or accepted in the conversation.

FieldValue
KindWrite
HTTP methodPOST /api/v1/connections.connect
MCP toolconnections_connect
Scopeconnections.write
Minimum roleAdmin
Human confirmationNo
DoorsNödo, MCP, API
StatusPlanned
Widgetaction_link

Input

{
  provider: string  // ≤ 60
}

Output

{
  authorizationUrl: string  // uri
  expiresAt: string
}

connections.disconnect · Disconnect

Disconnects one integration and revokes its grant. Scheduled posts on that account stop publishing.

FieldValue
KindWrite
HTTP methodPOST /api/v1/connections.disconnect
MCP toolconnections_disconnect
Scopeconnections.write
Minimum roleAdmin
Human confirmationYes
DoorsNödo, MCP, API
StatusPlanned
Widgetconfirm

Input

{
  connectionId: string  // uuid
}

Output

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