# Create aggregated api metrics report Create a report of aggregated api request metrics for a given time range and list of organisations. Endpoint: POST /aggregated-api-request-metrics-reports Version: 0.0.1 Security: o_auth ## Request fields (application/json): - `clientIds` (array) A list of IDs of the clients to fetch the data for. - `endDate` (string) It is the upper bound of the date range for which to return data. The endDate is non-inclusive; i.e, the returned data will be for dates from startDate to endDate-1 - `startDate` (string) It is the lower bound of the date range for which to return data. The startDate is inclusive; i.e, the returned data will be for dates from startDate to endDate-1 ## Response 200 fields (application/json): - `clientID` (string) - `dailyAPICallCount` (integer,null) - `dailyActiveUser` (integer,null) - `organisationID` (string) - `time` (string) ## Response 400 fields (application/json): - `code` (integer) - `message` (string) ## Response 401 fields (application/json): - `code` (integer) - `message` (string) ## Response 403 fields (application/json): - `code` (integer) - `message` (string) ## Response 422 fields (application/json): - `code` (integer) - `message` (string) ## Response 500 fields