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

# Ingest warranty webhook

> Success

### Path parameters

<ParamField path="brand_slug" type="string (string)" required />

### Request body

`WarrantyWebhookPayload`

<ParamField body="ticket_id" type="string" required />

<ParamField body="subject" type="string" />

<ParamField body="message_body" type="string" />

<ParamField body="ticket_type" type="string" />

<ParamField body="first_name" type="string" />

<ParamField body="last_name" type="string" />

<ParamField body="address1" type="string" />

<ParamField body="city" type="string" />

<ParamField body="state" type="string" />

<ParamField body="zipCode" type="string" />

<ParamField body="country" type="string" />

<ParamField body="customer_email" type="string" />

<ParamField body="phone" type="string" />

<ParamField body="product" type="string" />

<ParamField body="osprey_product" type="string" />

<ParamField body="osprey_color" type="string" />

<ParamField body="color" type="string" />

<ParamField body="volume" type="string" />

<ParamField body="quantity" type="string" />

<ParamField body="tags" type="string" />

### Response

Returns `GenericObject`.

<Note>
  The spec this page is generated from declares this response as an untyped object — the server
  returns JSON, but its shape is not published. Read a live response to see the fields; treat any
  field you find as unversioned until the spec names it.
</Note>

### Status codes

| Code  | Meaning          |
| ----- | ---------------- |
| `200` | Success          |
| `400` | Validation error |
| `401` | Unauthorized     |
| `404` | Not found        |
| `429` | Rate limited     |
| `500` | Internal error   |

<RequestExample>
  ```bash cURL theme={null}
  curl --request POST \
    --url 'https://api.workstream.stateset.com/v1/brands/{brand_slug}/warranty/inbound' \
    --header 'Authorization: Bearer YOUR_API_KEY' \
    --header 'Content-Type: application/json' \
    --data '{
    "ticket_id": "string",
    "subject": "string",
    "message_body": "string",
    "ticket_type": "string",
    "first_name": "string",
    "last_name": "string",
    "address1": "string",
    "city": "string",
    "state": "string",
    "zipCode": "string",
    "country": "string",
    "customer_email": "string",
    "phone": "string",
    "product": "string",
    "osprey_product": "string",
    "osprey_color": "string",
    "color": "string",
    "volume": "string",
    "quantity": "string",
    "tags": "string"
  }'
  ```
</RequestExample>
