POST
/
experiments
curl --request POST \
  --url https://kq5jp7qj7wdqklhsxmovkzn4l40obksv.lambda-url.eu-central-1.on.aws/experiments \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "description": "<string>",
  "n_replicates": 1,
  "name": "<string>",
  "parameters": "<any>",
  "sequences": [
    {
      "fasta": "<string>"
    }
  ],
  "target_id": "<string>"
}'
{
  "created": true,
  "id": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Request payload for creating a new experiment.

Defines all required information to initiate an experiment design. Created experiments start in Draft status for review before confirmation.

Response

201
application/json

Experiment created successfully

Response confirming experiment creation.