PUT
/
session
/
{session_id}
/
tags
curl --request PUT \
  --url https://api.devin.ai/v1/session/{session_id}/tags \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "tags": [
    "production",
    "api",
    "documentation"
  ]
}'
{
  "detail": "Tags updated successfully"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

session_id
string
required

The session ID

Body

application/json

Request body for updating session tags

tags
string[]
required

List of tags for the session

Response

200
application/json
Tags updated successfully
detail
string
Example:

"Tags updated successfully"