GET api/meetnet/projects

Retrieves the list of projects belongs to the user.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Returns an `IHttpActionResult`

ClientProjectResponse
NameDescriptionTypeAdditional information
clientname

Gets the name of the client.

string

None.

Projects

Gets the list of projects.

Collection of ProjectMaster

None.

Response Formats

application/json, text/json

Sample:
{
  "clientname": "sample string 1",
  "projects": [
    {
      "projectNo": "sample string 1",
      "description": "sample string 2",
      "location": "sample string 3",
      "startDate": "2025-10-26T08:24:07.6918938+01:00",
      "endDate": "2025-10-26T08:24:07.6918938+01:00"
    },
    {
      "projectNo": "sample string 1",
      "description": "sample string 2",
      "location": "sample string 3",
      "startDate": "2025-10-26T08:24:07.6918938+01:00",
      "endDate": "2025-10-26T08:24:07.6918938+01:00"
    }
  ]
}