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

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

Unique experiment identifier to modify

Body

application/json

Request payload for modifying an existing experiment.

All fields are optional - only provided fields will be updated. Note: Some modifications may be restricted based on experiment status.

Response

200
application/json

Experiment modified successfully

Response confirming experiment modification.