Fetch All Collections
POST
/api/collections/fetch-allLast modified:Â 4 months ago
You can fetch all collections that are present in a Database that you have created:
curl --location 'https://api.worqhat.com/api/collections/fetch-all' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>'
This will fetch all the active collections in your Database.
Request
None
Request samples
Responses
OK(200)
HTTP Code:Â 200
Content Type :Â JSONapplication/json
Data Schema
data
objectÂ
required
collection 1
objectÂ
required
collection 2
objectÂ
required
processingTime
numberÂ
required
processingId
stringÂ
required
Example
{
"data": {
"collection 1": {
"data 1": "deserunt amet eu sunt cillum",
"data 2": "sunt dolore exercitation est"
},
"collection 2": {
"data 1": "ex pariatur",
"data 2": "non esse commodo"
}
},
"processingTime": 63393171.79228768,
"processingId": "cillum nostrud ut"
}
Last modified: 4 months ago