POST /agent/claim-verify
Verify the emailed code and convert the anonymous trial to a local account.
REST API overview · OpenAPI JSON · OpenAPI YAML
| Stability | Authentication | Cost | Operation ID |
|---|---|---|---|
| Published | None | Free | agent_claim_verify_api_v1_agent_claim_verify_post |
This operation has no path or query parameters.
Schema: AgentClaimVerifyRequest
| Name | Required | Type | Description |
|---|---|---|---|
claim_code | Yes | string | — |
email | Yes | string | — |
code | Yes | string | — |
curl --request POST \
--url "https://qveris.ai/api/v1/agent/claim-verify" \
--header 'Content-Type: application/json' \
--data '{
"claim_code": "claim-code-123456",
"email": "operator@example.com",
"code": "123456"
}'
const response = await fetch("https://qveris.ai/api/v1/agent/claim-verify", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
"claim_code": "claim-code-123456",
"email": "operator@example.com",
"code": "123456"
}),
})
if (!response.ok) throw new Error(`QVeris request failed: ${response.status}`)
console.log(await response.json())
import json
import requests
response = requests.request(
"POST",
"https://qveris.ai/api/v1/agent/claim-verify",
json=json.loads(r'''{
"claim_code": "claim-code-123456",
"email": "operator@example.com",
"code": "123456"
}'''),
timeout=30,
)
response.raise_for_status()
print(response.json())
| Status | Meaning | Schema |
|---|---|---|
200 | Successful Response | APIResponse_AgentClaimVerifyResponse_ |
422 | Validation Error | HTTPValidationError |
429 | Too Many Requests | PublicApiError |
{
"status": "success",
"message": "Anonymous trial bound to this email. The existing API key remains active; reset your password if you want to sign in to the dashboard.",
"status_code": 0,
"data": {
"email": "operator@example.com",
"user_id": "3c0b2d6e-4f6a-4f4a-8b4b-5c5d6e7f8a9b"
}
}
POST Discover capabilities · POST Inspect capabilities · POST Probe a capability · POST Call a capability
Was this page helpful?