curl --request DELETE \
--url https://apix.us.amity.co/api/v3/posts/{postId} \
--header 'Authorization: Bearer <token>'
{
"status": "<string>",
"data": {
"success": true
}
}
Delete a post
curl --request DELETE \
--url https://apix.us.amity.co/api/v3/posts/{postId} \
--header 'Authorization: Bearer <token>'
{
"status": "<string>",
"data": {
"success": true
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
900
post information
The response is of type object
.