Batch delete

Description

Delete many stories.

Request

HTTP Method: DELETE

Parameter Description
ids The IDs of the stories to delete.
curl -X DELETE \
  https://<<META.tenant.domain>>/api/v1/stories/batch \
  -H 'content-type: application/json' \
  -H 'Authorization: Bearer <<CREDENTIAL.tines_api_key>>' \
  -d '{
        "ids": [3, 4, 5]
      }'

Response

A successful request will return an empty response with a 204 status code.

Was this helpful?