Skip to main content

Update collection

Update an existing collection.

Path Parameters
    collectionId string required

    The Id of the collection to be updated.

Request Body
    name string required

    The new name of the collection to be updated.

Responses

Request has been handled successfully.


Schema
    success boolean
    data object
    message

    Possible values: [collection renamed]

POST /v1/collections/:collectionId

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
collectionId — path required
Body
{
"name": "string"
}
curl / cURL
curl -L -X POST 'https://apis-prelive.quran.foundation/auth/v1/collections/:collectionId' \
-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": "string"
}'