List Projects By User
GET/api/v1/organizations/{organization_id}/users/{user_id}/projects
List all projects for a user in an organization.
List Projects By User
curl https://api.cloud.llamaindex.ai/api/v1/organizations/$ORGANIZATION_ID/users/$USER_ID/projects \
-H "Authorization: Bearer $LLAMA_CLOUD_API_KEY"[
{
"id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"name": "x",
"organization_id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"created_at": "2019-12-27T18:11:19.117Z",
"is_default": true,
"updated_at": "2019-12-27T18:11:19.117Z"
}
]Returns Examples
[
{
"id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"name": "x",
"organization_id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"created_at": "2019-12-27T18:11:19.117Z",
"is_default": true,
"updated_at": "2019-12-27T18:11:19.117Z"
}
]