Skip to main content

Projects

Projects live inside organisations and represent an environment or application integration. Create and manage projects here, including settings like authentication configuration.

List projects

GET /api/v1/organisations/{organisationId}/projects

cURL

curl -s "$FREEQ_API_URL/api/v1/organisations/77/projects?showDeleted=false" \
-H "Authorization: Bearer $FREEQ_API_TOKEN"

Create project

POST /api/v1/organisations/{organisationId}/projects

cURL

curl -s -X POST "$FREEQ_API_URL/api/v1/organisations/77/projects" \
-H "Authorization: Bearer $FREEQ_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"name":"Mobile App","typeId":1,"authenticationId":2}'

Update / Delete / Undelete

POST /api/v1/organisations/{organisationId}/projects/{projectId}
DELETE /api/v1/organisations/{organisationId}/projects/{projectId}
POST /api/v1/organisations/{organisationId}/projects/{projectId}/undelete