Open with AI
List projects
const url = 'https://proficient-seahorse-829.eu-west-1.convex.site/v1/projects?limit=20&team_id=team_jn7fw41m8n5jtht7hxsy69tzg97gvef8&search=campaign&order=asc';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://proficient-seahorse-829.eu-west-1.convex.site/v1/projects?limit=20&team_id=team_jn7fw41m8n5jtht7hxsy69tzg97gvef8&search=campaign&order=asc' \ --header 'Authorization: Bearer <token>'Lists a team’s projects, newest first.
Authorizations
Section titled “Authorizations”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters”How many to return. 1–60, 20 by default.
Example
20How many to return. 1–60, 20 by default.
The next_cursor of the previous page. Omit for the first page.
The next_cursor of the previous page. Omit for the first page.
The team whose projects to list.
Example
team_jn7fw41m8n5jtht7hxsy69tzg97gvef8The team whose projects to list.
Filter by name. Matches are returned by relevance rather than by date.
Example
campaignFilter by name. Matches are returned by relevance rather than by date.
Oldest or newest first. Newest by default, and ignored when search is set.
Example
descOldest or newest first. Newest by default, and ignored when search is set.
Responses
Section titled “ Responses ”A page of projects
object
object
object
A signed, time-limited still of the project. Null until one has been rendered.
Whether another page follows.
Pass as cursor to read the next page. Null on the last page.
Example
{ "data": [ { "id": "proj_jd71dcg41pjy7rax1v2h4pvcmd7gtar9", "name": "Summer campaign", "team": { "id": "team_jn7fw41m8n5jtht7hxsy69tzg97gvef8", "name": "Brand team" }, "created_by": "user_k970b359khfwwny0q8fjah1hc97gtcwm", "created_at": 1748875980, "updated_at": 1748875986 } ], "has_more": false}Team not found
object
Example
{ "error": "Render not found"}