Skip to main content

Add collection

Create a new collection under user's account.

Request Body
    name string required

    The name of the new collection to be created.

Responses

Request has been handled successfully.


Schema
    success boolean
    data object
    id string required
    updatedAt date-time required
    name string required
POST /v1/collections/

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
{
"name": "Woman in Quran"
}
curl / cURL
curl -L -X POST 'https://apis-prelive.quran.foundation/auth/v1/collections/' \
-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 '{
"name": "Woman in Quran"
}'