Get all file metrics by time frame
get
/api/erp/integrations/resources/v1/{locale}/stats/fileCountSummary
Returns the count of files processed within a given time frame.
Request
Path Parameters
-
locale(required): string
The locale to which the file is being uploaded.Example:
en-us
Query Parameters
-
flowName: string
The name of the flow for which the service is being invoked.
-
time: string
The time frame for which the transaction metrics are fetched. Valid values are 1, 2, 3, and so on. The number indicates the number of days. For example, 1 indicates one day and 2 indicates two days.
There's no request body for this operation.
Back to TopResponse
Supported Media Types
- application/json
Default Response
Simple JSON containing aggregated file count for a particular timeframe
Root Schema : TotalFileCount
Type:
Show Source
object
-
errorFileCount: integer
(int64)
The count of files in error within the specfied upload time frame.
-
flowName: string
The name of the flow for which the service is being invoked.
-
inProgressFileCount: integer
(int64)
The count of files being processed currently within the specfied upload time frame.
-
invalidFileCount: integer
(int64)
The count of files that are invalid within the specfied upload time frame.
-
processedFileCount: integer
(int64)
The count of files that are successfully processed within the specfied upload time frame.
-
totalReceivedFileCount: integer
(int64)
The count of files that were uploaded within the specified time frame.
-
uploadedFrom: string
Indicates the start date and time of the time range within which the files are uploaded.
-
uploadedTo: string
Indicates the end date and time of the time range within which the files are uploaded.