Collections
HIVO API Key
HIVO User ID
Sort key. Allowed values are createdAt, -createdAt, lastModified, -lastModified, name, -name. Defaults to -createdAt.
-createdAtPossible values: Maximum number of collections to return (1–256). Defaults to 32.
32Number of collections to skip (pagination) (0–65536). Defaults to 0.
0Collection ID filter. May be repeated and/or provided as a comma‑separated list. Max 512 IDs.
["4abc234abc234abc2"]General search string (max 256 chars). Prefix‑matches collection name (case‑insensitive).
CampaignAdmin‑only. Client ID to filter within (ObjectId).
7abc234abc234abc2Created at (Unix seconds) lower bound.
1714521600Created at (Unix seconds) upper bound.
1717200000Last modified (Unix seconds) lower bound.
1714521600Last modified (Unix seconds) upper bound.
1717200000User ID who favorited the collection (ObjectId).
2abc234abc234abc2OK
Bad Request
Unauthorized
Forbidden
Too Many Requests
Internal Server Error
GET /api/rest/v1/collections HTTP/1.1
Host: app.hivo.com.au
X-Api-Key: YOUR_API_KEY
X-User-Id: YOUR_API_KEY
Accept: */*
{
"meta": {},
"links": {
"self": "https://example.com",
"first": "https://example.com",
"prev": "https://example.com",
"next": "https://example.com"
},
"data": [
{
"type": "collections",
"id": "text",
"attributes": {
"name": "text",
"createdAt": 1,
"lastModified": 1,
"createdBy": "text",
"lastModifiedBy": "text",
"clientId": "text",
"description": "text",
"thumbnailId": "text",
"thumbnailDescription": "text",
"path": "text",
"relatedIds": [
"text"
],
"favs": [
"text"
],
"tags": [
"text"
],
"status": "text",
"isPublicCollection": true,
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"links": {
"self": "https://example.com",
"thumbnail": {
"href": "https://example.com",
"meta": {
"version": "text",
"ANY_ADDITIONAL_PROPERTY": "anything"
}
},
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
]
}HIVO API Key
HIVO User ID
Collection ID
4abc234abc234abc2Admin‑only. Client ID to filter within (ObjectId).
7abc234abc234abc2OK
Bad Request
Unauthorized
Forbidden
Not Found
Too Many Requests
Internal Server Error
GET /api/rest/v1/collections/{collectionId} HTTP/1.1
Host: app.hivo.com.au
X-Api-Key: YOUR_API_KEY
X-User-Id: YOUR_API_KEY
Accept: */*
{
"meta": {},
"links": {
"self": "https://example.com",
"thumbnail": {
"href": "https://example.com",
"meta": {
"version": "text",
"ANY_ADDITIONAL_PROPERTY": "anything"
}
},
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"data": {
"type": "collections",
"id": "text",
"attributes": {
"name": "text",
"createdAt": 1,
"lastModified": 1,
"createdBy": "text",
"lastModifiedBy": "text",
"clientId": "text",
"description": "text",
"thumbnailId": "text",
"thumbnailDescription": "text",
"path": "text",
"relatedIds": [
"text"
],
"favs": [
"text"
],
"tags": [
"text"
],
"status": "text",
"isPublicCollection": true,
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"links": {
"self": "https://example.com",
"thumbnail": {
"href": "https://example.com",
"meta": {
"version": "text",
"ANY_ADDITIONAL_PROPERTY": "anything"
}
},
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
}Last updated