Inngest · Capability

Inngest REST API — Account

Inngest Account. Fetch the authenticated account and (for partners) list and create sub-accounts.

Inngest REST API — Account is a Naftiko capability published by Inngest, one of 9 capabilities the APIs.io network indexes for this provider. It bundles 3 operations across the GET and POST methods.

The capability includes 2 read-only operations and 1 state-changing operation. Lead operation: Get the authenticated Inngest account. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Inngest, Account, Platform, and Partner.

Run with Naftiko InngestAccountPlatformPartner

What You Can Do

GET
V2fetchaccount — Get account.
/v1/account
GET
V2fetchpartneraccounts — List partner sub-accounts.
/v1/partner/accounts
POST
V2createpartneraccount — Create a partner sub-account.
/v1/partner/accounts

MCP Tools

get-account

Get the authenticated Inngest account.

read-only idempotent
list-partner-accounts

List partner sub-accounts.

read-only idempotent
create-partner-account

Create a partner sub-account.

Capability Spec

inngest-account.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Inngest REST API — Account
  description: 'Inngest Account. Fetch the authenticated account and (for partners) list and create sub-accounts.'
  tags:
  - Inngest
  - Account
  - Platform
  - Partner
  created: '2026-05-22'
  modified: '2026-05-22'
binds:
- namespace: env
  keys:
    INNGEST_SIGNING_KEY: INNGEST_SIGNING_KEY
capability:
  consumes:
  - type: http
    namespace: inngest-account
    baseUri: https://api.inngest.com/v2
    description: Inngest Account management surface (v2), including partner sub-account flows.
    resources:
    - name: account
      path: /account
      operations:
      - name: v2FetchAccount
        method: GET
        description: Get the account for the authenticated user.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: partner-accounts
      path: /partner/accounts
      operations:
      - name: v2FetchPartnerAccounts
        method: GET
        description: List partner sub-accounts (requires partner access).
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: v2CreatePartnerAccount
        method: POST
        description: Create a partner sub-account (requires partner access).
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          required: true
    authentication:
      type: bearer
      token: '{{env.INNGEST_SIGNING_KEY}}'
  exposes:
  - type: rest
    namespace: inngest-account-rest
    port: 8080
    description: REST adapter for Inngest Account.
    resources:
    - path: /v1/account
      name: account
      description: Fetch the authenticated account.
      operations:
      - method: GET
        name: v2FetchAccount
        description: Get account.
        call: inngest-account.v2FetchAccount
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/partner/accounts
      name: partner-accounts
      description: List and create partner sub-accounts.
      operations:
      - method: GET
        name: v2FetchPartnerAccounts
        description: List partner sub-accounts.
        call: inngest-account.v2FetchPartnerAccounts
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: v2CreatePartnerAccount
        description: Create a partner sub-account.
        call: inngest-account.v2CreatePartnerAccount
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: inngest-account-mcp
    port: 9090
    transport: http
    description: MCP adapter for Inngest Account.
    tools:
    - name: get-account
      description: Get the authenticated Inngest account.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: inngest-account.v2FetchAccount
      outputParameters:
      - type: object
        mapping: $.
    - name: list-partner-accounts
      description: List partner sub-accounts.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: inngest-account.v2FetchPartnerAccounts
      outputParameters:
      - type: object
        mapping: $.
    - name: create-partner-account
      description: Create a partner sub-account.
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: inngest-account.v2CreatePartnerAccount
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.