> For the complete documentation index, see [llms.txt](https://docs.sonoransoftware.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sonoransoftware.com/cms/developer-api-documentation/api-integration/api-endpoints-v2/forms/change-stage.md).

# Change Form Stage

<mark style="color:green;">`PATCH`</mark> `https://api.sonorancms.com/v2/community/forms/1/stage`

> **Rate limit:** `27 requests per minute`

> Authenticated v2 endpoints are rate limited per credential rather than per IP address.

Move a form submission to a new stage.

## Route Parameters

\| Name | Type | Required | Description |

\| --- | --- | --- | --- |

\| `formId` | number | Yes | Target formId. |

## Request Body

\| Name | Type | Required | Description |

\| --- | --- | --- | --- |

\| `accId` | string | Yes | See example request for the shape. |

\| `newStageId` | string | Yes | See example request for the shape. |

\| `optionalReason` | string | Yes | See example request for the shape. |

## Example Request

{% tabs %}
{% tab title="Sonoran.lua" %}

```lua
local Sonoran = require("sonoran")

local sonoran = Sonoran.createClient({
  product = Sonoran.productEnums.CMS,
  apiKey = "YOUR_API_KEY",
  communityId = "YOUR_COMMUNITY_ID",
  defaultServerId = 1,
  timeoutMs = 30000,
})

local formId = 1
local payload = {
  ["accId"] = "00000000-0000-0000-0000-000000000000",
  ["newStageId"] = "review",
  ["optionalReason"] = "Reviewed manually."
}

local response = sonoran.cms:changeFormStageV2(formId, payload)

if response.success then
  print(response.data)
else
  print(response.reason)
end
```

{% endtab %}

{% tab title="Sonoran.js" %}

```javascript
const Sonoran = require("sonoran.js");

const instance = Sonoran.instance({
  apiKey: "YOUR_API_KEY",
  communityId: "YOUR_COMMUNITY_ID",
  product: Sonoran.productEnums.CMS,
  serverId: 1,
});

async function main() {
  const formId = 1;
  const payload = {
  "accId": "00000000-0000-0000-0000-000000000000",
  "newStageId": "review",
  "optionalReason": "Reviewed manually."
};

  const response = await instance.cms.changeFormStageV2(formId, payload);

  if (response.success) {
    console.log(response.data);
  } else {
    console.error(response.reason);
  }
}

main().catch((error) => {
  console.error(error);
});
```

{% endtab %}

{% tab title="Sonoran.py" %}

```python
from sonoran import Instance, productEnums

instance = Instance(
    apiKey="YOUR_API_KEY",
    communityId="YOUR_COMMUNITY_ID",
    product=productEnums.CMS,
    serverId=1,
)

formId = 1
payload = {
  "accId": "00000000-0000-0000-0000-000000000000",
  "newStageId": "review",
  "optionalReason": "Reviewed manually."
}

response = instance.cms.changeFormStageV2(formId, payload)

if response.success:
    print(response.data)
else:
    print(response.reason)
```

{% endtab %}

{% tab title="Sonoran.Net" %}

```csharp
using Sonoran;
using System.Text.Json;

using var sonoran = new SonoranClient(new SonoranClientOptions
{
    product = SonoranProduct.CMS,
    apiKey = "YOUR_API_KEY",
    communityId = "YOUR_COMMUNITY_ID",
    defaultServerId = 1
});

var formId = 1;
var payload = new {
  accId = "00000000-0000-0000-0000-000000000000",
  newStageId = "review",
  optionalReason = "Reviewed manually."
};

var response = await sonoran.Cms.changeFormStageV2(formId, payload);

if (response.success)
{
    Console.WriteLine(JsonSerializer.Serialize(response.data));
}
else
{
    Console.WriteLine(response.reason);
}
```

{% endtab %}

{% tab title="OpenAPI" %}

```yaml
openapi: "3.0.3"

info:

  title: "Sonoran CMS v2 - Change Stage"

  version: "1.0.0"

  description: "Move a form submission to a new stage."

servers:

  -

    url: "https://api.sonorancms.com"

paths:

  /v2/community/forms/{formId}/stage:

    patch:

      summary: "Change Stage"

      operationId: "changeFormStage"

      parameters:

        -

          description: "Target form id."

          name: "formId"

          in: "path"

          schema:

            type: "integer"

          required: true

      requestBody:

        required: true

        content:

          application/json:

            schema:

              type: "object"

      security:

        -

          bearerAuth: []

      responses:

        "200":

          description: "Successful response"

          content:

            application/json:

              schema:

                type: "object"

              example:

                success: true

                data:

                  authorized: true

                  failed: false

                  data:

                    form:

                      formId: 42

                      sysStatus: true

                      submissionTime: "2026-04-15T00:00:00.000Z"

                      lastActionTime: "2026-04-15T00:00:00.000Z"

                      formSubmitter: "00000000-0000-0000-0000-000000000000"

                      formContextUser: null

                      relatedUsers: []

                      formStructure:

                        _label: "Example Form Submission"

                        fields: []

                      formComments:

                        comments: []

                      stageId: "22222222-2222-2222-2222-222222222222"

                      stageGroupId: "11111111-1111-1111-1111-111111111111"

                      stageInfoBackup:

                        stages: []

                        groups: []

                      formTemplateId: 100

                      formType: 0

                      formReplySettings:

                        locked: false

                        submitter: true

                        rankIds: []

                      showInProfile: false

                      stages: []

                    newStage:

                      id: "33333333-3333-3333-3333-333333333333"

                      label: "Interview"

                    availableStages:

                      -

                        id: "44444444-4444-4444-4444-444444444444"

                        label: "Training"

                meta:

                  timestamp: "2026-04-15T00:00:00.000Z"

                  path: "/v2/community/forms/1/stage"

components:

  securitySchemes:

    bearerAuth:

      type: "http"

      scheme: "bearer"

      bearerFormat: "JWT"
```

{% endtab %}

{% tab title="cURL" %}

```bash
curl --request PATCH \

  --url "https://api.sonorancms.com/v2/community/forms/1/stage" \

  --header "Authorization: Bearer YOUR_API_KEY" \

  --header "Accept: application/json" \

  --data '{"accId":"00000000-0000-0000-0000-000000000000","newStageId":"review","optionalReason":"Reviewed manually."}'
```

{% endtab %}
{% endtabs %}

## Response

The `data` object includes the saved form, the chosen stage, and the remaining available stages. The outer service contract also carries `authorized` and `failed` flags.

```json

{

  "success": true,

  "data": {

    "authorized": true,

    "failed": false,

    "data": {

      "form": {

        "formId": 42,

        "sysStatus": true,

        "submissionTime": "2026-04-15T00:00:00.000Z",

        "lastActionTime": "2026-04-15T00:00:00.000Z",

        "formSubmitter": "00000000-0000-0000-0000-000000000000",

        "formContextUser": null,

        "relatedUsers": [],

        "formStructure": {

          "_label": "Example Form Submission",

          "fields": []

        },

        "formComments": {

          "comments": []

        },

        "stageId": "22222222-2222-2222-2222-222222222222",

        "stageGroupId": "11111111-1111-1111-1111-111111111111",

        "stageInfoBackup": {

          "stages": [],

          "groups": []

        },

        "formTemplateId": 100,

        "formType": 0,

        "formReplySettings": {

          "locked": false,

          "submitter": true,

          "rankIds": []

        },

        "showInProfile": false,

        "stages": []

      },

      "newStage": {

        "id": "33333333-3333-3333-3333-333333333333",

        "label": "Interview"

      },

      "availableStages": [

        {

          "id": "44444444-4444-4444-4444-444444444444",

          "label": "Training"

        }

      ]

    }

  },

  "meta": {

    "timestamp": "2026-04-15T00:00:00.000Z",

    "path": "/v2/community/forms/1/stage"

  }

}

```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.sonoransoftware.com/cms/developer-api-documentation/api-integration/api-endpoints-v2/forms/change-stage.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
