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
}Add or remove tags on multiple traces.
Auth: Bearer + X-Project-ID | X-API-Key + X-Project-Name
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
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
Response for bulk tag update (count of traces affected).