Create a new project for a User within an Organization
POST/v1/organizations/:organizationId/projects
Create a new project for a User within an Organization
Request
Path Parameters
organizationId stringrequired
- application/json
Body
required
name stringrequired
Possible values: <= 50 characters
The name of the project
platformType stringrequired
Possible values: [ANDROID
, IOS
, AMAZON
]
The platform type
Responses
- 200
- 201
- 400
Project created 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"
}
- 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"
}
Bad request.
Loading...