Projects API
List Projects
Returns all projects within an organization.
GET /project?OrganizationId={organizationId}
Authorization: Bearer {jwt}Query Parameters:
| Parameter | Required | Description |
|---|---|---|
OrganizationId | Yes | The organization ID |
Response: 200 OK
[
{
"id": 10,
"name": "checkout-platform"
}
]Create Project
Creates a new project within an organization.
POST /project?OrganizationId={organizationId}
Authorization: Bearer {jwt}
Content-Type: application/json
"checkout-platform"Note: The request body is a raw JSON string (not an object). This is the existing API contract.
Query Parameters:
| Parameter | Required | Description |
|---|---|---|
OrganizationId | Yes | The organization ID |
Response: 200 OK
{
"id": 10,
"name": "checkout-platform"
}Last updated on