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

# Update Partner Stages (Bulk)

> Update multiple partner stages in a single operation

## Authentication

<CodeGroup>
  ```bash cURL theme={null}
  curl -X PATCH "https://app.journeybee.io/api/v1/stages/partner-stages" \
    -H "Authorization: Bearer your-api-key-uuid" \
    -H "Content-Type: application/json" \
    -d '[{"id": 1, "label": "Updated Prospecting", "series": 1}, {"id": 2, "label": "Active Partnership", "series": 2}]'
  ```
</CodeGroup>

## Request Body Schema

<ParamField body="stages" type="array" required>
  Array of stage updates

  <Expandable title="Stage Update Object">
    <ParamField body="id" type="number" required>Stage ID to update</ParamField>
    <ParamField body="label" type="string">Updated stage label</ParamField>
    <ParamField body="series" type="number">Updated stage order</ParamField>
    <ParamField body="phase" type="string">Updated stage phase</ParamField>
  </Expandable>
</ParamField>

## Response Schema

<ResponseField name="updated" type="array">
  Array of updated stage IDs
</ResponseField>

## Notes

* Requires API key with `write_access` permission
* Bulk operation for reordering stages
