curl --request POST \ --url https://api.us.vartiq.com/projects \ --header 'Content-Type: application/json' \ --header 'x-api-key: <api-key>' \ --data '{ "name": "<string>", "description": "<string>" }'
{ "success": true, "message": "<string>", "data": { "id": "<string>", "name": "<string>", "description": "<string>", "createdAt": "<string>", "updatedAt": "<string>" } }
Name of the project
Optional description of the project
Indicates if the request was successful
A message describing the result of the operation
The created project object
Show Properties
Unique identifier for the project
Description of the project (if provided)
Timestamp when the project was created
Timestamp when the project was last updated
{ "success": true, "message": "Project created successfully", "data": { "id": "proj_01JTD1G189Y47YNPWNJDYRXW39", "name": "New Project", "createdAt": "2025-05-04T06:59:47.599Z", "updatedAt": "2025-05-04T06:59:47.599Z" } }