action unicourt_get_daily_usage_by_date { label: "Get API usage for a requested Date." description: "An endpoint to obtain information on API usage for a specific day." provider: unicourt method: GET path: "/dailyUsage/{date}" encoding: json output: { type: "object" required: ["apiCallsBillable", "apiCallsCredited", "apiCallsMade", "apiUsage", "object", "usageEndTime", "usageStartTime"] properties: { apiCallsBillable: { type: "object" description: "Total number of API calls billed for the billing cycle." required: ["count", "lastUpdated"] properties: { count: { type: "integer" description: "Total API calls billed for the billing cycle" } lastUpdated: { type: "string" description: "Last Updated date and time for the field apiCallsBillable" } } } apiCallsCredited: { type: "object" description: "Total number of callbackFailures including caseUpdate, caseDocumentOrder and caseExport for the billing cycle." required: ["count", "lastUpdated"] properties: { count: { type: "integer" description: "Total API calls credited back for the billing cycle" } lastUpdated: { type: "string" description: "Last Updated date and time for the field apiCallsCredited" } } } apiCallsMade: { type: "object" description: "Total API calls made for the billing cycle." required: ["count", "lastUpdated"] properties: { count: { type: "integer" description: "Total API calls made for the billing cycle" } lastUpdated: { type: "string" description: "Last Updated date and time for the field apiCallsMade" } } } apiUsage: { type: "object" description: "StartDate and endDate of the billing cycle." } object: { type: "string" description: "Name of the object." } usageEndTime: { type: "string" format: "date" description: "End time of the usage." } usageStartTime: { type: "string" format: "date" description: "Start time of the usage." } } } }