action bungie_app_get_application_api_usage { label: "App.GetApplicationApiUsage" description: "Get API usage by application for time frame specified. You can go as far back as 30 days ago, and can ask for up to a 48 hour window of time in a single request. You must be authenticated with at least the ReadUserData permission to access this endpoint." provider: bungie method: GET path: "/App/ApiUsage/{applicationId}/" encoding: json input: { type: "object" properties: { applicationId: { type: "integer" format: "int32" } end: { type: "string" format: "date-time" } start: { type: "string" format: "date-time" } } required: ["applicationId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }