v1

latestOpenAPI 3.0.12026-08-06151265417.9 KB
Projects

Get Organization Projects

Returns a list of all projects accessible to the current user

get/api/v3.0/orgs/{orgUuid}/projects

Path parameters

orgUuidstring required

org UUID (from the Mend App: Administration General > Organization UUID).

Query parameters

cursorstring

Parameter indicates the starting point for retrieving results, the first call doesn't include a cursor parameter in the request, the API response includes the first set of results along with a cursor pointing to the last item retrieved.

limitstring

Specifies the maximum number of items to be returned in the response.

populateApplicationsstring

Add populateApplications=false to receive a slimmer response containing only the project UUID and name.

excludeInactiveProjectsstring

Add excludeInactiveProjects=false to retrieve all projects, including inactive ones.

Response

OK

additionalDataobject
  • totalItems: The total count of data points returned in an API response.
supportTokenstring

Example response

{
  "additionalData": {
    "totalItems": "422",
    "next": "http://someUrl?cursor=3",
    "cursor": 3
  },
  "supportToken": "1171c60d",
  "response": [
    {
      "uuid": "123e4567-e89b-12d3-a456-426655440000",
      "name": "My Project",
      "path": "My Application",
      "applicationName": "My Application",
      "applicationUuid": "123e4567-e89b-12d3-a456-426655440000"
    }
  ]
}