DELETE
/
posts
/
{post_id}
/
tags
/
{tag_id}
Detach a tag from a post
curl --request DELETE \
  --url http://localhost:3001/portal-api/posts/{post_id}/tags/{tag_id} \
  --header 'Authorization: <api-key>'
{
  "status": "ok"
}

Authorizations

Authorization
string
header
required

Path Parameters

post_id
integer
required

UID of a post

Example:

1

tag_id
integer
required

UID of a tag

Example:

1

Response

OK

status
string

Status of the operation

Example:

"ok"