Retrieve a project by ID for a User within an Organization
GET/v1/organizations/:organizationId/projects/:projectId
Retrieve a project by ID for a User within an Organization
Request
Path Parameters
organizationId stringrequired
projectId stringrequired
Responses
- 200
- 404
- 412
Project retrieved successfully.
- application/json
- Schema
- Example (from schema)
Schema
id stringrequired
The unique identifier for the project.
name stringrequired
The name of the project.
platformType stringrequired
Possible values: [ANDROID
, IOS
, AMAZON
]
The platform type of the project.
{
"id": "abc123",
"name": "Project A",
"platformType": "ANDROID"
}
Project or organization not found.
Organization is not active.
Loading...