---
title: "Verify an agent account email claim"
method: POST
path: "/agent/claim/verify"
tags: ["Agent"]
---

# Verify an agent account email claim

`POST /agent/claim/verify`

Confirms the verification code emailed by `/agent/claim/start` and
upgrades the account to the `developer` plan. The org id, API key, and
managed inbox all carry over; the send cap lifts. Authenticated by the
agent's own API key.

## Headers

- `Idempotency-Key` string

## Request body

- object
  - `verification_code` string, required — The verification code emailed by the claim start step.

## Response `200`

Claim verified; account upgraded to developer

- object
  - `success` true, required
  - `data` object, required
    - `org_id` string, uuid, required
    - `plan` 'developer', required
    - `email` string, email, required
    - `limits` object, required — Plan-derived quota limits for an account.
      - `storage_mb` number, required
      - `send_per_hour` number, required
      - `send_per_day` number, required
      - `api_per_minute` number, required
      - `webhooks_max_global` number, nullable, required
      - `webhooks_per_domain` boolean, required
      - `filters_per_domain` boolean, required
      - `spam_thresholds_per_domain` boolean, required

## Other responses

- `400` — Invalid request parameters
- `401` — Invalid or missing API key
- `404` — Resource not found
- `409` — The request conflicts with the current state of the resource
- `410` — Resource is no longer available.
- `429` — Rate limit exceeded

---

[API](https://skmtc.net/primitive/apis/primitive-api.md) · [All operations](https://skmtc.net/primitive/apis/primitive-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/primitive/primitive-api/versions/c2299d28022c/schema)
