Skip to main content
POST
/
experiments
/
{exp_id}
/
confirm
Confirm experiment
curl --request POST \
  --url https://foundry-api-public.adaptyvbio.com/experiments/{exp_id}/confirm \
  --header 'Authorization: Bearer <token>'
{
  "confirmed_at": "<string>",
  "experiment_id": "<string>",
  "status": "<string>",
  "stripe_invoice_id": "<string>",
  "stripe_invoice_url": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

exp_id
string
required

Experiment identifier

Response

Experiment confirmed

Confirmation response returned after accepting a quote.

confirmed_at
string
required

Timestamp when confirmation completed

experiment_id
string
required

Experiment identifier

status
string
required

Experiment status after confirmation (e.g., "waiting_for_materials")

stripe_invoice_id
string | null

Stripe invoice identifier created during confirmation

stripe_invoice_url
string | null

Hosted invoice URL from Stripe (if available)