> ## 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.

# Claim

> Always the same body whether or not the domain matches a brand, so the brand registry cannot be enumerated.

### Request body

`object`

<ParamField body="email" type="string" required>
  Work email; its domain is matched against registered brands
</ParamField>

### Response

`object`

<ResponseField name="accepted" type="boolean" required />

<ResponseField name="message" type="string" required />

### Status codes

| Code  | Meaning                                                                                                     |
| ----- | ----------------------------------------------------------------------------------------------------------- |
| `200` | Always the same body whether or not the domain matches a brand, so the brand registry cannot be enumerated. |
| `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/claim/start' \
    --header "x-api-key: $STATESET_TEMPORAL_API_KEY" \
    --header 'Content-Type: application/json' \
    --data '{
    "email": "ada.lovelace@example.com"
  }'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "accepted": true,
    "message": "Two-person tent, green — replacement for damaged pole set."
  }
  ```
</ResponseExample>
