curl --request POST \
--url 'https://api.nsr.stateset.com/api/v1/nsr/validation/cases' \
--header "X-API-Key: $STATESET_NSR_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"expected_valid": true,
"inquiry": "string",
"name": "Two-Person Tent",
"response": "string"
}'
{
"created_at": "2026-08-31T14:22:05Z",
"expected_valid": true,
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"inquiry": "string",
"name": "Two-Person Tent",
"response": "string"
}
Create a single validation case.
Required scope: write
POST
/
api
/
v1
/
nsr
/
validation
/
cases
curl --request POST \
--url 'https://api.nsr.stateset.com/api/v1/nsr/validation/cases' \
--header "X-API-Key: $STATESET_NSR_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"expected_valid": true,
"inquiry": "string",
"name": "Two-Person Tent",
"response": "string"
}'
{
"created_at": "2026-08-31T14:22:05Z",
"expected_valid": true,
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"inquiry": "string",
"name": "Two-Person Tent",
"response": "string"
}
Required scope:
write
Request body
NSRValidationCaseInput
boolean
string
required
string
required
string
required
Response
NSRValidationCase
string
required
boolean
string
required
string
required
string
required
string
required
Status codes
| Code | Meaning |
|---|---|
200 | Created case |
401 | Unauthorized — missing or invalid credentials |
403 | Forbidden — the key/token lacks the required scope |
429 | Rate limited — see Retry-After / X-RateLimit-Reset |
curl --request POST \
--url 'https://api.nsr.stateset.com/api/v1/nsr/validation/cases' \
--header "X-API-Key: $STATESET_NSR_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"expected_valid": true,
"inquiry": "string",
"name": "Two-Person Tent",
"response": "string"
}'
{
"created_at": "2026-08-31T14:22:05Z",
"expected_valid": true,
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"inquiry": "string",
"name": "Two-Person Tent",
"response": "string"
}
Last modified on August 31, 2026