action nativeads_get_publisher_reports_daily { label: "get_publisher_reports_daily" description: "Returns publisher statistics split by date" provider: nativeads method: GET path: "/publisher/reports/daily" encoding: json input: { type: "object" properties: { endDate: { type: "string" } limit: { type: "string" } page: { type: "string" } startDate: { type: "string" } token: { type: "string" } } required: ["endDate", "limit", "page", "startDate", "token"] additionalProperties: false } output: { type: "object" additionalProperties: true } }