curl --request GET \
--url https://api.example.com/api/v1/collections/org/{org_id}/page/{page}/limit/{limit}{
"id": 123,
"collection_uuid": "<string>",
"name": "<string>",
"description": "<string>",
"public": true,
"courses": [
{}
],
"creation_date": "<string>",
"update_date": "<string>"
}curl --request GET \
--url https://api.example.com/api/v1/collections/org/{org_id}/page/{page}/limit/{limit}{
"id": 123,
"collection_uuid": "<string>",
"name": "<string>",
"description": "<string>",
"public": true,
"courses": [
{}
],
"creation_date": "<string>",
"update_date": "<string>"
}curl -X GET "https://api.learnhouse.app/api/v1/collections/org/123/page/1/limit/10" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
[
{
"id": 1,
"collection_uuid": "550e8400-e29b-41d4-a716-446655440000",
"name": "Introduction to Programming",
"description": "Essential programming courses for beginners",
"public": true,
"courses": [101, 102, 103],
"creation_date": "2024-01-15T10:30:00Z",
"update_date": "2024-02-20T14:45:00Z"
},
{
"id": 2,
"collection_uuid": "660e8400-e29b-41d4-a716-446655440001",
"name": "Advanced Web Development",
"description": "Advanced courses for experienced developers",
"public": true,
"courses": [201, 202, 203, 204],
"creation_date": "2024-02-01T09:15:00Z",
"update_date": "2024-03-10T16:20:00Z"
}
]