curl --request POST \
--url https://app.azalt.co/api/v1/activities/remove \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"activityIds": [
"<string>"
]
}
'{
"success": true,
"count": 123
}Delete multiple activities in one request:
Parameters:
activityIds: Array of activity IDs to removePermanently removes the activities and all calculation data. This action cannot be undone.
curl --request POST \
--url https://app.azalt.co/api/v1/activities/remove \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"activityIds": [
"<string>"
]
}
'{
"success": true,
"count": 123
}