Skip to main content
PUT
/
test-sets
/
{test_set_id}
/
requests
/
{request_id}
/
tags
Update test set request tags
curl --request PUT \
  --url https://api.trymaitai.ai/api/v1/test-sets/{test_set_id}/requests/{request_id}/tags \
  --header 'Content-Type: application/json' \
  --header 'X-Maitai-Api-Key: <api-key>' \
  --data '
{
  "tags": [
    "regression",
    "edge-case"
  ]
}
'
{
  "data": {
    "status": "success"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.trymaitai.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Maitai-Api-Key
string
header
required

Your Maitai API key from the Portal.

Path Parameters

test_set_id
integer
required
request_id
string
required

Body

application/json
tags
string[]
required

Replacement tag list for this test-set request.

Response

200 - application/json

Update test set request tags.

data
any