All API Operations related with projects
Last updated 8 months ago
Retrieves all the projects
GET /v1/project HTTP/1.1 Host: api.nuvio.io Authorization: YOUR_API_KEY Accept: */*
OK
{ "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.
GET /v1/project/{id} HTTP/1.1 Host: api.nuvio.io Authorization: YOUR_API_KEY Accept: */*
{ "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
POST /v1/project HTTP/1.1 Host: api.nuvio.io Authorization: YOUR_API_KEY Content-Type: application/json Accept: */* Content-Length: 83 { "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
PUT /v1/project/{id} HTTP/1.1 Host: api.nuvio.io Authorization: YOUR_API_KEY Content-Type: application/json Accept: */* Content-Length: 83 { "name": "text", "startDate": "text", "endDate": "text", "projectCode": "text", "budget": 1 }