This endpoint retrieves a summary of all collections in your Tallyfy Answers account. Collections are sorted by creation date in descending order (newest first), making it easy to find recently created collections.
API endpoint
GET /v1/collections
Query parameters
Parameter
Type
Required
Default
Description
limit
integer
No
20
Maximum number of collections to return (1-100)
offset
integer
No
0
Number of collections to skip (for pagination)
Response
A successful request returns a 200 OK status code and a JSON response containing:
{
"collections":[
{
"name":"products",
"description":"Collection of product information",
The GET endpoint retrieves detailed collection information including metadata schema and object counts by using a unique collection name while returning a JSON response with appropriate status codes and error handling.
Collections in Tallyfy Answers are organizational structures that function like database tables to group similar objects together with features for dynamic schema detection efficient organization searchability scalability and comprehensive management operations.
Collections in Tallyfy Answers are created through a POST API endpoint that requires a unique name and optional description while automatically detecting data types and supporting various naming conventions with proper error handling.
You can retrieve individual objects from Tallyfy Answers using a GET request to the API endpoint with the collection name and object ID which returns the complete object data with all properties including system fields like creation and update timestamps.