List projects for an organization
List projects for an organization with pagination, filtering, and sorting.
Filter parameters support Supabase filter operators, per the field's declared policy:
- Text fields (name, description): use ilike.%value% for partial match
- Date fields: use gte.value, lte.value, etc.
- Date range: use created_at_gt and created_at_lt for between queries
There is no created_by_email filter: the projects table records no creator, so there is nothing to match against.
get/projects
Query parameters
limitinteger
offsetinteger
namestring nullable
descriptionstring nullable
created_atstring nullable
created_at_gtstring nullable
created_at_ltstring nullable
updated_atstring nullable
updated_at_gtstring nullable
updated_at_ltstring nullable
order_by'name' | 'created_at' | 'updated_at'
order'asc' | 'desc'
Response
Successful Response
Changes
No recorded changes to this endpoint across all 1 revision of this API.