curl --request POST \
--url https://api.pandaprobe.com/traces/batch/delete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"trace_ids": [
"a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"b2c3d4e5-f6a7-8901-bcde-f12345678901"
]
}
'{
"deleted": 123
}Delete multiple traces at once.
Auth: Bearer + X-Project-ID | X-API-Key + X-Project-Name
curl --request POST \
--url https://api.pandaprobe.com/traces/batch/delete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"trace_ids": [
"a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"b2c3d4e5-f6a7-8901-bcde-f12345678901"
]
}
'{
"deleted": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Request body for bulk trace deletion.
1 - 500 elementsSuccessful Response
Response for bulk trace deletion (count removed).