Delete a post
DELETE
/posts/v1/projects/{projectId}/feeds/{feedId}/posts/{postId}Delete a post by ID
Authorization
Bearer Authorization<token>
In: header
Path Parameters
projectId*string
Project ID
feedId*string
Feed ID
postId*string
Post ID
Response Body
200application/json
OK
type: unknown
{
"$ref": "#/components/schemas/postsv1.DeleteResult",
"$ref-value": {
"properties": {
"deleted": {
"type": "boolean"
},
"id": {
"type": "string"
}
},
"type": "object"
}
}curl -X DELETE "https://api.rixl.com/posts/v1/projects/string/feeds/string/posts/string"OK
application/json
{
"$ref": "#/components/schemas/postsv1.DeleteResult",
"$ref-value": {
"properties": {
"deleted": {
"type": "boolean"
},
"id": {
"type": "string"
}
},
"type": "object"
}
}