Skip to main content

sandbox.get

Describe the sandbox this credential acts on

Request
GET/api/v1/sandbox
Scope required
sandbox:manage
Effect
Reads only. Safe to retry and safe for an agent to call unprompted.
Acts on
Acts on the account’s own job search.
MCP tool
sandbox_get
Environment
Sandbox only.
Request body
JSON.

What it does

Returns the synthetic tenant a sandbox credential acts as, when its sample data was planted, when it was last reset, and the earliest moment another reset will be accepted. Only sandbox credentials may call it; a live credential is refused with 403 `sandbox_only`. Seeding happens the first time a sandbox credential is used, so this answers even if nobody has reset anything yet. Throw the tenant away and plant a fresh one with `sandbox.reset`.

Response

canResetAt
string, required
lastResetAt
string or null, required
organizationSlug
string or null, required
seededAt
string, required
tenantEmail
string, required

Examples

A freshly seeded sandbox

A freshly seeded sandbox — request
curl -s https://www.jobapplicationtracking.com/api/v1/sandbox \
  -H "Authorization: Bearer $JAT_KEY"
A freshly seeded sandbox — response
{
  "tenantEmail": "sandbox-9f2c1a7b3d4e5f60@sandbox.invalid",
  "organizationSlug": "northwind-careers",
  "seededAt": "2026-02-11T17:05:00.000Z",
  "lastResetAt": null,
  "canResetAt": "2026-02-11T17:06:00.000Z"
}

Related operations