Skip to content

List projects in an organization

GET
/organizations/{org_id}/projects
curl --request GET \
--url https://api.perstat.io/organizations/example/projects \
--header 'Authorization: Bearer <token>'

Returns all projects of an organization visible to the calling member, in their configured order.

org_id
required
string
Media typeapplication/json
Array<object>
object
id
required
string
name
required
string
organization_id
required
string
slug
required
string
Examplegenerated
[
{
"id": "example",
"name": "example",
"organization_id": "example",
"slug": "example"
}
]