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"
}'
{
"accepted": true,
"message": "Two-person tent, green — replacement for damaged pole set."
}
Claim
Always the same body whether or not the domain matches a brand, so the brand registry cannot be enumerated.
POST
/
v1
/
claim
/
start
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"
}'
{
"accepted": true,
"message": "Two-person tent, green — replacement for damaged pole set."
}
Request body
object
string
required
Work email; its domain is matched against registered brands
Response
object
boolean
required
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 |
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"
}'
{
"accepted": true,
"message": "Two-person tent, green — replacement for damaged pole set."
}
Last modified on August 31, 2026