Projects
All API Operations related with projects
READ Scope
List all Projects
Retrieves all the projects
GEThttps://api.nuvio.io/v1/project
Response
OK
Body
successboolean
errorsnullable array of string
dataarray of Projects
Request
Response
Get a Project by ID
Retrieves a single product or service by its unique ID or user-generated project code.
GEThttps://api.nuvio.io/v1/project/{id}
Path parameters
id*string
Response
OK
Body
successboolean
errorsnullable array of string
dataProject
Request
Response
WRITE Scope
Create a new Project
Creates a new project
POSThttps://api.nuvio.io/v1/project
Body
name*string
Name of the project
startDatestring
Starting date of the project. Should be in YYYY-MM-DD
format
endDatestring
Ending date of the project. Should be in YYYY-MM-DD
format
projectCodestring
Name of the project
budgetnullable number (double)
Total budget of the project.
Response
OK
Body
successboolean
errorsnullable array of string
dataProject
Request
Response
UPDATE Scope
Update Project
Updates an existing project
PUThttps://api.nuvio.io/v1/project/{id}
Path parameters
id*string (uuid)
Body
namestring
Name of the project
startDatestring
Starting date of the project. Should be in YYYY-MM-DD
format
endDatestring
Ending date of the project. Should be in YYYY-MM-DD
format
projectCodestring
Name of the project
budgetnullable number (double)
Total budget of the project.
Response
OK
Body
successboolean
errorsnullable array of string
dataProject
Request
Response
Last updated