Skip to main content

Report a post

Report a post.

Path Parameters
    postId string required

    The id of the post.

Request Body
    abuse string required

    Possible values: [Offensive language, Inappropriate content, Other]

    The report abuse type

    comment string required

    Report description/details.

Responses

Request has been handled successfully.


Schema
    success boolean
    data object
    message

    Possible values: [Post was reported successfully]

POST /v1/posts/report/:postId

Authorization

name: x-auth-tokentype: apiKeyin: headerdescription: The JWT access token required for accessing the endpoints.
name: x-client-idtype: apiKeyin: headerdescription: Your client id

Request

Base URL
https://apis-prelive.quran.foundation/auth
x-auth-token
x-client-id
postId — path required
Body
{
"abuse": "Inappropriate content",
"comment": "Very inappropriate!"
}
curl / cURL
curl -L -X POST 'https://apis-prelive.quran.foundation/auth/v1/posts/report/:postId' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'x-auth-token: <API_KEY_VALUE>' \
-H 'x-client-id: <API_KEY_VALUE>' \
--data-raw '{
"abuse": "Inappropriate content",
"comment": "Very inappropriate!"
}'