cURL
curl --request POST \ --url https://www.ruddr.io/api/workspace/project-types \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "invoiceItemId": "<string>", "isActive": true } '
200
Result
{ "id": "b5e2d8f1-3a47-4c90-b6e1-9f7c2a051d38", "name": "Internal Delivery", "isActive": true, "createdAt": "2025-09-18T14:25:35.149Z", "invoiceItem": { "id": "72761804-b01e-4c8f-8352-2fcde43261a8", "name": "Service" } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The name of the project type.
The unique identifier of the invoice item associated with this project type.
Whether the project type is active.
The unique identifier for the object.
The timestamp when the object was created.
The invoice item associated with this project type.
Show child attributes