Skip to main content
POST
/
traces
/
batch
/
tags
Batch Tags
curl --request POST \
  --url https://api.pandaprobe.com/traces/batch/tags \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "trace_ids": [
    "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
  ]
}
'
{
  "updated": 123
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Request body for bulk tag manipulation on traces.

trace_ids
string<uuid>[]
required
Required array length: 1 - 500 elements
add_tags
string[]
remove_tags
string[]

Response

Successful Response

Response for bulk tag update (count of traces affected).

updated
integer
required