For the complete documentation index, see llms.txt. This page is also available as Markdown.

Projects

All API Operations related with projects

READ Scope

List all Projects

get

Retrieves all the projects

Authorizations
AuthorizationstringRequired

API Key Authentication

Responses
200

OK

application/json
successbooleanOptional
errorsstring[] · nullableOptional
get
/v1/project
200

OK

Get a Project by ID

get

Retrieves a single product or service by its unique ID or user-generated project code.

Authorizations
AuthorizationstringRequired

API Key Authentication

Path parameters
idstringRequired
Responses
200

OK

application/json
successbooleanOptional
errorsstring[] · nullableOptional
get
/v1/project/{id}
200

OK

WRITE Scope

Create a new Project

post

Creates a new project

Authorizations
AuthorizationstringRequired

API Key Authentication

Body
namestring · min: 1Required

Name of the project

startDatestringOptional

Starting date of the project. Should be in YYYY-MM-DD format

endDatestringOptional

Ending date of the project. Should be in YYYY-MM-DD format

projectCodestringOptional

Name of the project

budgetnumber · double · nullableOptional

Total budget of the project.

Responses
200

OK

application/json
successbooleanOptional
errorsstring[] · nullableOptional
post
/v1/project
200

OK

UPDATE Scope

Update Project

put

Updates an existing project

Authorizations
AuthorizationstringRequired

API Key Authentication

Path parameters
idstring · uuidRequired
Body
namestringOptional

Name of the project

startDatestringOptional

Starting date of the project. Should be in YYYY-MM-DD format

endDatestringOptional

Ending date of the project. Should be in YYYY-MM-DD format

projectCodestringOptional

Name of the project

budgetnumber · double · nullableOptional

Total budget of the project.

Responses
200

OK

application/json
successbooleanOptional
errorsstring[] · nullableOptional
put
/v1/project/{id}
200

OK

Last updated