Delete

Description

Delete a story owner for a story.

Request

HTTP Method: DELETE

Parameter Description
story_id The ID of the story in which the story owner should be deleted.
user_id The ID of the user that should be removed as a story owner. The user must be an existing story owner.
curl -X DELETE \
  https://<<META.tenant.domain>>/api/v1/stories/<<story_id>>/owners \
  -H 'content-type: application/json' \
  -H 'Authorization: Bearer <<CREDENTIAL.tines_api_key>>'  \
  -d '{
        "user_id": <<user_id>>
      }'

Response

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

Was this helpful?