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

# status.created

> Occurs when a new pipeline status is created

<ResponseExample>
  ```json Example payload theme={null}
  {
    "id": "ck9v2m5nj0xp4wq7ybftrae8",
    "seq": 88,
    "teamId": "hzcai5t59nn9vsck3rbuepyg",
    "type": "status.created",
    "timestamp": "2025-01-15T11:00:00.000Z",
    "version": "1.0",
    "data": {
      "status": {
        "id": "n5xr8yk0wr6q3cwohgeufqmz",
        "name": "Qualified",
        "color": "#10b981",
        "createdAt": "2025-01-15T11:00:00.000Z"
      }
    }
  }
  ```
</ResponseExample>

## When it fires

A new pipeline status is created in the workspace through the Inbox UI. Statuses represent stages in your sales pipeline (e.g., "New Lead", "Warm", "Qualified", "Closed Won").

## Payload

<ResponseField name="status" type="Status" required>
  The status object.

  <Expandable title="properties">
    <ResponseField name="id" type="string">
      Unique identifier for the status.
    </ResponseField>

    <ResponseField name="name" type="string">
      The display name of the status (e.g., "New Lead", "Qualified", "Closed Won").
    </ResponseField>

    <ResponseField name="color" type="string | null">
      Hex color code for the status (e.g., `#10b981`). Null if no color is set.
    </ResponseField>

    <ResponseField name="createdAt" type="string">
      ISO 8601 timestamp of when the status was created.
    </ResponseField>
  </Expandable>
</ResponseField>
