All API Operations related with projects
Last updated 6 months ago
Retrieves all the projects
/v1/project
curl -L \ --url 'https://api.nuvio.io/v1/project' \ --header 'Authorization: YOUR_API_KEY'
{ "success": true, "errors": [ "text" ], "data": [ { "id": "123e4567-e89b-12d3-a456-426614174000", "name": "text", "budget": 1, "startDate": "text", "endDate": "text", "code": "text" } ] }
Retrieves a single product or service by its unique ID or user-generated project code.
/v1/project/{id}
curl -L \ --url 'https://api.nuvio.io/v1/project/{id}' \ --header 'Authorization: YOUR_API_KEY'
{ "success": true, "errors": [ "text" ], "data": { "id": "123e4567-e89b-12d3-a456-426614174000", "name": "text", "budget": 1, "startDate": "text", "endDate": "text", "code": "text" } }
Creates a new project
curl -L \ --request POST \ --url 'https://api.nuvio.io/v1/project' \ --header 'Authorization: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '{ "name": "text", "startDate": "text", "endDate": "text", "projectCode": "text", "budget": 1 }'
{ "success": true, "errors": [ "text" ], "data": { "id": "123e4567-e89b-12d3-a456-426614174000", "name": "text", "budget": 1, "startDate": "text", "endDate": "text" } }
Updates an existing project
curl -L \ --request PUT \ --url 'https://api.nuvio.io/v1/project/{id}' \ --header 'Authorization: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '{ "name": "text", "startDate": "text", "endDate": "text", "projectCode": "text", "budget": 1 }'