Skip to main content

Add a post

Add a post.

Request Body
    anyOf

    body string required

    The body of the post.

    roomId integer

    The Id of the room the post will be posted in.

    isPrivate boolean

    Default value: false

    Whether the post should be posted as a private note.

    tagIds integer[]

    The Ids of the tags the post is attached to

    references object[]

    The Surahs/Ayahs the post relates to.

  • Array [
  • surahId integer required

    Possible values: >= 1 and <= 114

    The Surah number

    fromAyah integer nullable

    Possible values: >= 1 and <= 286

    The start of the range of Ayah(s) in a Surah that the post relates to.

    If it's a single Ayah,fromAyah and toAyah should have the same value.

    If the post belongs to the entire Surah, fromAyah and toAyah should be left empty

    toAyah integer nullable

    Possible values: >= 1 and <= 286

    The end of the range of Ayah(s) in a Surah that the post relates to.

    If it's a single Ayah,fromAyah and toAyah should have the same value.

    If the post belongs to the entire Surah, fromAyah and toAyah should be left empty

    isSurah boolean

    Default value: false

    Whether the post belongs to the entire Surah.

  • ]
Responses

Request has been handled successfully.


Schema
    success boolean
    data object
    message

    Possible values: [Post created successfully]

    postId

    Possible values: [1235]

POST /v1/posts/

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
Body
{
"body": "I love Allah and his messenger.",
"roomId": 123,
"isPrivate": false,
"tagIds": [
432
],
"references": [
{
"surahId": 2
},
{
"surahId": 5,
"fromAyah": 6,
"toAyah": 8
},
{
"surahId": 114,
"fromAyah": 2,
"toAyah": 2
}
]
}
curl / cURL
curl -L -X POST 'https://apis-prelive.quran.foundation/auth/v1/posts/' \
-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 '{
"body": "I love Allah and his messenger.",
"roomId": 123,
"isPrivate": false,
"tagIds": [
432
],
"references": [
{
"surahId": 2
},
{
"surahId": 5,
"fromAyah": 6,
"toAyah": 8
},
{
"surahId": 114,
"fromAyah": 2,
"toAyah": 2
}
]
}'