> ## Documentation Index
> Fetch the complete documentation index at: https://developers.octaviatech.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Next Form

> Get Next Form.



## OpenAPI

````yaml GET /forms/getNextById/{id}
openapi: 3.1.0
info:
  title: Blog API
  version: 1.0.0
servers:
  - url: https://api.octaviatech.app/cms
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Tags
    description: Tag management endpoints
paths:
  /forms/getNextById/{id}:
    get:
      tags:
        - Forms
      summary: Get next form by current form id
      description: >-
        Public endpoint for multi-step flows. Returns `nextForm=null` if no next
        form is configured.
      parameters:
        - in: path
          name: id
          required: true
          schema:
            type: string
            pattern: ^[a-fA-F0-9]{24}$
            example: '{{objectId}}'
          description: Current form id.
      responses:
        '200':
          description: OK
        '404':
          description: Form not found / next form not found
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````