action digitallocker_get_statistics_id { label: "Get Statistics" description: "Returns DigiLocker statistics such as the count of users, authentic documents, issuers and requesters as on a specific date." provider: digitallocker method: POST path: "/statistics/1/counts" encoding: json output: { type: "object" required: ["authentic_documents", "count", "count_as_on", "id", "issuers", "month", "monthwise_registations", "requestors", "users", "year", "yearwise_authentic_documents"] properties: { authentic_documents: { type: "string" description: "Count of authentic documents available through DigiLocker." } count_as_on: { type: "string" description: "The date on which this statistics is generated." } issuers: { type: "string" description: "Count of issuer organizations registered on DigiLocker." } monthwise_registations: { type: "object" description: "List of last 12 months cumulative user registrations" properties: { count: { type: "integer" description: "Count of cumulative user registrations in the given month." } details2: { type: "object" properties: { count: { type: "integer" description: "Count of cumulative user registrations in the given month." } id: { type: "integer" description: "Unique id of the list item." } month: { type: "integer" description: "Month of the year in numeric format with January as 1" } year: { type: "integer" description: "Year in YYYY format" } } } id: { type: "integer" description: "Unique id of the list item." } month: { type: "integer" description: "Month of the year in numeric format with January as 1" } year: { type: "integer" description: "Year in YYYY format" } } } requestors: { type: "string" description: "Count of requester organizations registered on DigiLocker." } users: { type: "string" description: "Count of registered users on DigiLocker." } yearwise_authentic_documents: { type: "object" description: "List of cumulative year-wise counts of authentic documents in DigiLocker." properties: { count: { type: "integer" description: "Count of cumulative user authentic documents in\n the given year." } details: { type: "object" properties: { count: { type: "integer" description: "Count of cumulative user authentic documents in the given year." } id: { type: "integer" description: "Unique id of the list item." } year: { type: "integer" description: "Year in YYYY format." } } } details1: { type: "object" properties: { count: { type: "integer" description: "Count of cumulative user authentic documents in the given year." } id: { type: "integer" description: "Unique id of the list item." } year: { type: "integer" description: "Year in YYYY format." } } } details2: { type: "object" properties: { count: { type: "integer" description: "Count of cumulative user authentic documents in the given year. " } id: { type: "integer" description: "Unique id of the list item." } year: { type: "integer" description: "Year in YYYY format." } } } id: { type: "integer" description: "Unique id of the list item." } year: { type: "integer" description: "Year in YYYY format." } } } } } }