EaserixDocs
DevelopersAPI referenceFormsProjects

List projects

Projects the caller can read: their own (active-org-scoped; legacy rows without org_id stay visible) plus any shared with the organization by a teammate. formCount counts only the forms that caller can read. created_at descending, limit 500.

View as Markdown
GET
/v1/projects
AuthorizationBearer <token>

In: header

Query Parameters

scope?string

all (default) — everything readable · mine — only the caller's own · shared — only teammates' org-shared projects (excludes own).

Value in

  • "all"
  • "mine"
  • "shared"

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/v1/projects"
{  "projects": [    {      "id": "string",      "name": "string",      "color": "string",      "formCount": 0,      "visibility": "string",      "ownerId": "string",      "created": "2019-08-24T14:15:22Z",      "updated": "2019-08-24T14:15:22Z"    }  ]}