List projects under an organization
GET /api/v1/organizations/{orgId}/projects Select code sample Fetch cURL
const url = 'https://localhost:10001/api/v1/organizations/1/projects';const options = {method: 'GET', headers: {Authorization: '
'}}; 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://localhost:10001/api/v1/organizations/1/projects \ --header 'Authorization:
'
Retrieve all projects belonging to a specific organization
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” orgId required integerOrganization ID
Responses
Section titled “ Responses ”200
Section titled “200 ”Projects
Media type application/json Array