Skip to content

Get Project Statistics

Request

Returns the requested statistics for the given projects that match at least one of the given identifiers.

Security
bearer-key
Path
orgUuidstringrequired

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

Query
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, <= 10000

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

Default:"50"
Bodyapplication/jsonrequired
applicationUuidsArray of strings(Application UUIDs)
Example:
[ "123e4567-e89b-12d3-a456-426655440000" ]
projectUuidsArray of strings(Project UUIDs)
Example:
[ "123e4567-e89b-12d3-a456-426655440000" ]
POST
/api/v3.0/orgs/{orgUuid}/projects/summaries
{ "applicationUuids": [ "123e4567-e89b-12d3-a456-426655440000" ], "projectUuids": [ "123e4567-e89b-12d3-a456-426655440000" ] }

Responses

OK

Bodyapplication/json
additionalDataobject(Provides insights into endpoint-supported pagination information.)
  • totalItems: The total count of data points returned in an API response.
Example:
{ "totalItems": "422", "next": "http://someUrl?cursor=3", "cursor": 3 }
supportTokenstring(Support Token)
Example:"1171c60d"
responseArray of objects(ProjectSummaryDTOV3)
Response
{ "additionalData": { "totalItems": "422", "next": "http://someUrl?cursor=3", "cursor": 3 }, "supportToken": "1171c60d", "response": [ {} ] }