Get Project details
GET/api/v1/project/:projectIdentifier
Get Project details
Request
Path Parameters
Project identifier (ID or name)
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
Array [
]
Unique identifier of the project
Unique slug name of the project
Human-friendly name of the project (not unique)
Possible values: [product, application, lib, bundle, infra]
Status of the project (active, completed, on-hold)
Label name assigned to the project
Owner of the project
Platforms supported by the project
Number of members in the project
Number of versions available for the project
memberContext
object
Possible values: [project-owner, project-admin, project-member]
preferences
object
required
summary
object
latestRelease
object
Latest release of the project
upcomingRelease
object
Upcoming release of the project
members
object[]
Possible values: [project-owner, project-admin, project-member]
Possible values: [invited, active, inactive]
Default value: -1
tokens
object[]
Default value: false
Default value: true
Generated webhook URL for git integration
Git repository clone URL (HTTPS or SSH)
Whether an SSH private key is configured for git authentication
Interval in minutes for periodic git clone
Branch to clone (defaults to repository default branch)
Whether HTTPS username/password credentials are configured
Possible values: [ssh_key, https_credentials, none]
Git authentication method in use
Path to the .getapp file within the repository (defaults to repo root)
{
"id": 0,
"name": "string",
"projectName": "string",
"description": "string",
"projectType": "product",
"status": "string",
"label": "string",
"owner": "string",
"platforms": [
"string"
],
"numMembers": 0,
"versions": 5,
"memberContext": {
"role": "project-owner",
"preferences": {
"pinned": true
}
},
"summary": {
"latestRelease": {
"id": "string",
"version": "string",
"name": "string",
"requiredRegulationsCount": 0,
"compliantRegulationsCount": 0
},
"upcomingRelease": {
"id": "string",
"version": "string",
"name": "string",
"requiredRegulationsCount": 0,
"compliantRegulationsCount": 0
}
},
"createdAt": "2026-04-22T16:58:13.198Z",
"members": [
{
"id": 0,
"firstName": "string",
"lastName": "string",
"email": "string",
"role": "project-owner",
"status": "invited",
"defaultProject": -1
}
],
"tokens": [
{
"id": 0,
"name": "string",
"token": "string",
"expirationDate": "2026-04-22T16:58:13.198Z",
"neverExpires": false,
"isActive": true,
"createdAt": "2026-04-22T16:58:13.198Z"
}
],
"gitWebhookUrl": "string",
"gitCloneUrl": "string",
"gitSshKeyConfigured": true,
"gitCloneInterval": 0,
"gitBranch": "string",
"gitHttpsCredentialsConfigured": true,
"gitAuthMethod": "ssh_key",
"gitGetappFilePath": "string"
}