central-admin.http 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503
  1. ### register
  2. POST {{host}}/central/admin/v1/admin/user/register
  3. Content-Type: application/json
  4. Authorization: BgeNpi3y9pkjyWJocDpsCjuuwJxYhNta
  5. {
  6. "account": "cws",
  7. "nickname": "陈伟生",
  8. "remark": ""
  9. }
  10. ### login
  11. POST {{host}}/central/admin/v1/admin/user/login
  12. Content-Type: application/json
  13. {
  14. "account": "cws",
  15. "password": "123456"
  16. }
  17. ### reset password
  18. POST {{host}}/central/admin/v1/admin/user/password/reset
  19. Content-Type: application/json
  20. Authorization: {{Authorization}}
  21. {
  22. "account": "wjj",
  23. "originalPassword": "666666",
  24. "password": "123456"
  25. }
  26. ### organ trees
  27. POST {{host}}/central/admin/v1/admin/organ/trees
  28. Content-Type: application/json
  29. Authorization: {{Authorization}}
  30. {
  31. }
  32. ### query organ page
  33. POST {{host}}/central/admin/v1/admin/organ/page
  34. Content-Type: application/json
  35. Authorization: {{Authorization}}
  36. {
  37. }
  38. ### create organ
  39. POST {{host}}/central/admin/v1/admin/organ/create
  40. Content-Type: application/json
  41. Authorization: {{Authorization}}
  42. {
  43. "name": "投放部",
  44. "parentId": 1
  45. }
  46. ### update organ
  47. POST {{host}}/central/admin/v1/admin/organ/update
  48. Content-Type: application/json
  49. Authorization: {{Authorization}}
  50. {
  51. "id": 3,
  52. "name": "投放部"
  53. }
  54. ### query user page
  55. POST {{host}}/central/admin/v1/admin/user/page
  56. Content-Type: application/json
  57. Authorization: {{Authorization}}
  58. {
  59. }
  60. ### update user
  61. POST {{host}}/central/admin/v1/admin/user/update
  62. Content-Type: application/json
  63. Authorization: {{Authorization}}
  64. {
  65. "id": 3,
  66. "organId": 2
  67. }
  68. ### query role page
  69. POST {{host}}/central/admin/v1/admin/role/page
  70. Content-Type: application/json
  71. Authorization: {{Authorization}}
  72. {
  73. }
  74. ### my role list
  75. POST {{host}}/central/admin/v1/admin/role/my
  76. Content-Type: application/json
  77. Authorization: {{Authorization}}
  78. {
  79. }
  80. ### role list
  81. POST {{host}}/central/admin/v1/admin/role/list
  82. Content-Type: application/json
  83. Authorization: {{Authorization}}
  84. {
  85. }
  86. ### auth data list
  87. POST {{host}}/central/admin/v1/admin/auth/data/list
  88. Content-Type: application/json
  89. Authorization: {{Authorization}}
  90. {
  91. "roleId": 1
  92. }
  93. ### auth data allocate
  94. POST {{host}}/central/admin/v1/admin/auth/data/allocate
  95. Content-Type: application/json
  96. Authorization: {{Authorization}}
  97. {
  98. "roleId": 1,
  99. "list": [
  100. {
  101. "funcCode": "promotion_manage",
  102. "authType": 2
  103. }
  104. ]
  105. }
  106. ### auth trees
  107. POST {{host}}/central/admin/v1/admin/auth/trees
  108. Content-Type: application/json
  109. Authorization: {{Authorization}}
  110. {
  111. "system": "central"
  112. }
  113. ### auth ids
  114. POST {{host}}/central/admin/v1/admin/auth/ids
  115. Content-Type: application/json
  116. Authorization: {{Authorization}}
  117. {
  118. "roleId": 1
  119. }
  120. ### auth my
  121. POST {{host}}/central/admin/v1/admin/auth/my
  122. Content-Type: application/json
  123. Authorization: {{Authorization}}
  124. {
  125. "system": "central"
  126. }
  127. ### auth menu
  128. POST {{host}}/central/admin/v1/admin/auth/menu
  129. Content-Type: application/json
  130. Authorization: {{Authorization}}
  131. {
  132. "system": "central"
  133. }
  134. ### app page
  135. POST {{host}}/central/admin/v1/app/page
  136. Content-Type: application/json
  137. Authorization: {{Authorization}}
  138. {
  139. }
  140. ### app my
  141. POST {{host}}/central/admin/v1/app/my
  142. Content-Type: application/json
  143. Authorization: {{Authorization}}
  144. {
  145. "system": "central"
  146. }
  147. ### app create
  148. POST {{host}}/central/admin/v1/app/create
  149. Content-Type: application/json
  150. Authorization: {{Authorization}}
  151. {
  152. "name": "测试-酱香充电",
  153. "appPlatform": 1,
  154. "packageName": "com.chargebattery.jiangxiang6",
  155. "remark": "测试",
  156. "projectCode": "project_playlet",
  157. "productCode": "com.chargebattery.jiangxiang3"
  158. }
  159. ### app allocate
  160. POST {{host}}/central/admin/v1/app/allocate
  161. Content-Type: application/json
  162. Authorization: {{Authorization}}
  163. {
  164. "userId": 9,
  165. "appIds": [
  166. 1
  167. ]
  168. }
  169. ### getProjectPage
  170. POST {{host}}/central/admin/v1/project/page
  171. Content-Type: application/json
  172. Authorization: {{Authorization}}
  173. {
  174. "packageName": "com.chargebattery.jiangxiang",
  175. "projectCode": "project_playlet",
  176. "confCode": "daily_withdraw_task"
  177. }
  178. ### getChannelPage
  179. POST {{host}}/central/admin/v1/channel/page
  180. Content-Type: application/json
  181. Authorization: {{Authorization}}
  182. {
  183. "packageName": "com.chargebattery.jiangxiang",
  184. "projectCode": "project_playlet",
  185. "confCode": "daily_withdraw_task"
  186. }
  187. ### getPackagePage
  188. POST {{host}}/central/admin/v1/package/page
  189. Content-Type: application/json
  190. Authorization: {{Authorization}}
  191. {
  192. "packageName": "com.chargebattery.jiangxiang",
  193. "projectCode": "project_playlet",
  194. "confCode": "daily_withdraw_task"
  195. }
  196. ### pay config page
  197. POST {{host}}/central/admin/v1/pay/config/page
  198. Content-Type: application/json
  199. Authorization: {{Authorization}}
  200. {
  201. }
  202. ### pay item page
  203. POST {{host}}/central/admin/v1/pay/item/page
  204. Content-Type: application/json
  205. Authorization: {{Authorization}}
  206. {
  207. }
  208. ### pay option page
  209. POST {{host}}/central/admin/v1/pay/option/page
  210. Content-Type: application/json
  211. Authorization: {{Authorization}}
  212. {
  213. }
  214. ### pay order page
  215. POST {{host}}/central/admin/v1/pay/order/page
  216. Content-Type: application/json
  217. Authorization: {{Authorization}}
  218. {
  219. }
  220. ### pay order statistics
  221. POST {{host}}/central/admin/v1/pay/order/statistics
  222. Content-Type: application/json
  223. Authorization: {{Authorization}}
  224. {
  225. "phone": 13713873750,
  226. "page": 1,
  227. "pageSize": 50,
  228. "createTimeBegin": 1706889600000,
  229. "createTimeEnd": 1706975999999
  230. }
  231. ### pay transfer page
  232. POST {{host}}/central/admin/v1/pay/transfer/page
  233. Content-Type: application/json
  234. Authorization: {{Authorization}}
  235. {
  236. "packageName": "com.chargebattery.jiangxiang",
  237. "appPlatform": 1,
  238. "deviceId": "d3814d60a1b1451589ce0e2520d6ab49",
  239. "ssid": "c7d32b1674654f6f90acfdc454526bb7",
  240. "payMethod": 1,
  241. "outTransferNo": "231201928043024205103104",
  242. "page": 1,
  243. "pageSize": 50
  244. }
  245. ### pay transfer statistics
  246. POST {{host}}/central/admin/v1/pay/transfer/statistics
  247. Content-Type: application/json
  248. Authorization: {{Authorization}}
  249. {
  250. "packageName": "com.chargebattery.jiangxiang",
  251. "appPlatform": 1,
  252. "deviceId": "d3814d60a1b1451589ce0e2520d6ab49",
  253. "ssid": "c7d32b1674654f6f90acfdc454526bb7",
  254. "payMethod": 1,
  255. "outTransferNo": "231201928043024205103104",
  256. "page": 1,
  257. "pageSize": 50
  258. }
  259. ### user page
  260. POST {{host}}/central/admin/v1/user/page
  261. Content-Type: application/json
  262. Authorization: {{Authorization}}
  263. {
  264. "userId": "fe897d503bc9477da8a01972183d55bd",
  265. "ssid": "39ca7ddd0ae24a4f9917b828f96cff80",
  266. "packageName": "cn.com.devotiondigital.xiyuejia",
  267. "channelName": "",
  268. "phone": "11223344551",
  269. "page": 1,
  270. "pageSize": 50
  271. }
  272. ### device detail page
  273. POST {{host}}/central/admin/v1/device/detail/page
  274. Content-Type: application/json
  275. Authorization: {{Authorization}}
  276. {
  277. "packageName": "cn.com.devotiondigital.xiyuejia",
  278. "appPlatform": 4,
  279. "page": 1,
  280. "pageSize": 50
  281. }
  282. ### sms code query
  283. POST {{host}}/central/admin/v1/auth/sms/code/query
  284. Content-Type: application/json
  285. Authorization: {{Authorization}}
  286. {
  287. "phone": "11223344551"
  288. }
  289. ### alipay config page
  290. POST {{host}}/central/admin/v1/auth/alipay/config/page
  291. Content-Type: application/json
  292. Authorization: {{Authorization}}
  293. {
  294. "appId": "2021004130614038",
  295. "packageName": "com.redredshortplay.hhhdj",
  296. "appPlatform": 1,
  297. "status": 0
  298. }
  299. ### wechat config page
  300. POST {{host}}/central/admin/v1/auth/wechat/config/page
  301. Content-Type: application/json
  302. Authorization: {{Authorization}}
  303. {
  304. "appid": "wxc4f4aa2759b25db4",
  305. "packageName": "com.redredshortplay.hhhdj",
  306. "appPlatform": 1,
  307. "status": 0
  308. }
  309. ### 微信投诉订单列表
  310. POST {{host}}/central/admin/v1/pay/complaint/wechat/page
  311. Content-Type: application/json
  312. Authorization: {{Authorization}}
  313. {
  314. "merchantId": 1,
  315. "createTimeBegin": 1709827200000,
  316. "createTimeEnd": 1712332800000,
  317. "page": 1,
  318. "pageSize": 10,
  319. "transactionId2": "4200002200202403263951599100",
  320. "complaintState2": "PROCESSED",
  321. "problemType2": "OTHERS",
  322. "incomingUserResponse2": false,
  323. "userComplaintTimes2": 1,
  324. "timeoutStatus2": "NOT_HANDLED_COMPLETELY",
  325. "aboutTimeoutStatus2": "PENDING"
  326. }
  327. ### 微信投诉订单统计
  328. POST {{host}}/central/admin/v1/pay/complaint/wechat/statistics
  329. Content-Type: application/json
  330. Authorization: {{Authorization}}
  331. {
  332. }
  333. ### 微信投诉订单详情
  334. POST {{host}}/central/admin/v1/pay/complaint/wechat/getComplaint
  335. Content-Type: application/json
  336. Authorization: {{Authorization}}
  337. {
  338. "merchantId": 1,
  339. "complaintId": "200000020240327200162188465"
  340. }
  341. ### 微信投诉订单协商历史
  342. POST {{host}}/central/admin/v1/pay/complaint/wechat/queryNegotiationHistorys
  343. Content-Type: application/json
  344. Authorization: {{Authorization}}
  345. {
  346. "merchantId": 1,
  347. "complaintId": "200000020240327200162188465"
  348. }
  349. ### 微信投诉订单回复用户
  350. POST {{host}}/central/admin/v1/pay/complaint/wechat/submitResponse
  351. Content-Type: application/json
  352. Authorization: {{Authorization}}
  353. {
  354. "merchantId": 1,
  355. "complaintId": "200000020240327200162188465",
  356. "responseContent": "测试",
  357. "responseImages": [
  358. "1"
  359. ],
  360. "jumpUrlText": "1",
  361. "jumpUrl": "1"
  362. }
  363. ### 微信投诉订单图片上传
  364. POST {{host}}/central/admin/v1/pay/complaint/wechat/uploadResponseImage
  365. Content-Type: application/json
  366. Authorization: {{Authorization}}
  367. {
  368. "merchantId": 1,
  369. "complaintId": "200000020240327200162188465"
  370. }
  371. ### 微信投诉订单处理完成
  372. POST {{host}}/central/admin/v1/pay/complaint/wechat/complete
  373. Content-Type: application/json
  374. Authorization: {{Authorization}}
  375. {
  376. "merchantId": 1,
  377. "complaintId": "200000020240327200162188465"
  378. }
  379. ### 微信投诉订单审批拒绝退款
  380. POST {{host}}/central/admin/v1/pay/complaint/wechat/rejectRefund
  381. Content-Type: application/json
  382. Authorization: {{Authorization}}
  383. {
  384. "merchantId": 1,
  385. "complaintId": "200000020240327200162188465",
  386. "rejectReason": "退款驳回",
  387. "rejectMediaList": [
  388. "1"
  389. ],
  390. "remark": "测试"
  391. }
  392. ### 支付宝投诉订单列表
  393. POST {{host}}/central/admin/v1/pay/complaint/ali/page
  394. Content-Type: application/json
  395. Authorization: {{Authorization}}
  396. {
  397. "merchantId": 10,
  398. "createTimeBegin": 1715184000000,
  399. "createTimeEnd": 1715875199999,
  400. "page": 1,
  401. "pageSize": 3,
  402. "status2": "PROCESSING"
  403. }
  404. ### 支付宝投诉订单详情
  405. POST {{host}}/central/admin/v1/pay/complaint/ali/getComplaint
  406. Content-Type: application/json
  407. Authorization: {{Authorization}}
  408. {
  409. "merchantId": 21,
  410. "complainId": 115608652
  411. }
  412. ### 支付宝投诉订单图片上传
  413. POST {{host}}/central/admin/v1/pay/complaint/ali/uploadResponseImage
  414. Content-Type: application/json
  415. Authorization: {{Authorization}}
  416. {
  417. "merchantId": 9
  418. }
  419. ### 支付宝投诉订单处理
  420. POST {{host}}/central/admin/v1/pay/complaint/ali/submitResponse
  421. Content-Type: application/json
  422. Authorization: {{Authorization}}
  423. {
  424. "merchantId": 10,
  425. "complainId": 122317250,
  426. "processCode": "ORTHER",
  427. "remark": "亲,您遇到了什么问题呢,可以提供截图,描述下具体问题吗",
  428. "imgFileList": [],
  429. "imgFileList2": [
  430. {
  431. "imgUrl": "http://mdn.alipayobjects.com/security_fraudmng/afts/img/A*IxoLRaE5hOIAAAAAAAAAAAAADsJ2AA/original?t=X-v0LHsnpE4zxklG0rClM1Xv0x84tLoz-WY5arjmesMDAAAAZAAAdsIAAAAA",
  432. "imgUrlKey": "A*IxoLRaE5hOIAAAAAAAAAAAAADsJ2AA"
  433. }
  434. ]
  435. }
  436. ### 支付宝投诉订单统计
  437. POST {{host}}/central/admin/v1/pay/complaint/ali/statistics
  438. Content-Type: application/json
  439. Authorization: {{Authorization}}
  440. {
  441. }
  442. ### deprecate device
  443. POST {{host}}/central/admin/v1/device/deprecate
  444. Content-Type: application/json
  445. Authorization: {{Authorization}}
  446. {
  447. "deviceId": "9ffe7eb637a54fbcb35b1f312c319f09"
  448. }
  449. ### deprecate user
  450. POST {{host}}/central/admin/v1/user/deprecate
  451. Content-Type: application/json
  452. Authorization: {{Authorization}}
  453. {
  454. "id": "8a783ddcdb7d49fc9f9fd196bd822810"
  455. }
  456. ### dy config page
  457. POST {{host}}/central/admin/v1/auth/dy/config/page
  458. Content-Type: application/json
  459. Authorization: {{Authorization}}
  460. {
  461. "page": 1,
  462. "pageSize": 10,
  463. "appid": "tteb6c9dd1745d882801",
  464. "packageName": "com.xingchat.muse",
  465. "appPlatform": 8,
  466. "status": 0
  467. }
  468. ### dy config create
  469. POST {{host}}/central/admin/v1/auth/dy/config/create
  470. Content-Type: application/json
  471. Authorization: {{Authorization}}
  472. {
  473. "appid": "tteb6c9dd1745d882801",
  474. "packageName": "com.xingchat.muse",
  475. "appPlatform": 8,
  476. "secret": 1,
  477. "status": 0
  478. }
  479. ### dy config update
  480. POST {{host}}/central/admin/v1/auth/dy/config/update
  481. Content-Type: application/json
  482. Authorization: {{Authorization}}
  483. {
  484. "id": 1,
  485. "appid": "tteb6c9dd1745d882801",
  486. "packageName": "com.xingchat.muse",
  487. "appPlatform": 8,
  488. "secret": 1,
  489. "status": 0
  490. }
  491. ### 退款
  492. POST {{host}}/central/admin/v1/pay/refund
  493. Content-Type: application/json
  494. Authorization: {{Authorization}}
  495. {
  496. "outTradeNo": "2407191011756026131197952"
  497. }
  498. ### generate promotion link
  499. POST {{host}}/central/admin/v1/promotion/link/generate
  500. Content-Type: application/json
  501. Authorization: {{Authorization}}
  502. {
  503. "appId": 36,
  504. "originGravityEngineLink": "https://backend.gravity-engine.com/event_center/api/v1/event/click/?app_id=18537206&channel=base_channel&track_id=vrneJf9bGPXoeADw&company=zhihu&aid=__CAMPAIGN__&cid=__CREATIVE__&imei_md5=__IMEI__&oaid=__OAID__&android_id_md5=__ANDROIDID__&ts=__TS__&ip=__IP__&ua=__UA__&callback=__CALLBACK__&zhs2s=1"
  505. }
  506. ### generate promotion link options v8
  507. POST {{host}}/central/admin/v8/promotion/link/options
  508. Content-Type: application/json
  509. Authorization: {{Authorization}}
  510. {
  511. }
  512. ### generate promotion link v8
  513. POST {{host}}/central/admin/v8/promotion/link/generate
  514. Content-Type: application/json
  515. Authorization: {{Authorization}}
  516. {
  517. "appId": 36,
  518. "company": "baidu",
  519. "v8AppId": "0"
  520. }
  521. ### opt user ids
  522. POST {{host}}/central/admin/v1/promotion/manage/opt/user/ids
  523. Content-Type: application/json
  524. Authorization: {{Authorization}}
  525. {
  526. }
  527. ### opt users
  528. POST {{host}}/central/admin/v1/promotion/manage/opt/users
  529. Content-Type: application/json
  530. Authorization: {{Authorization}}
  531. {
  532. }
  533. ### promotion advertiser page
  534. POST {{host}}/central/admin/v1/promotion/advertiser/page
  535. Content-Type: application/json
  536. Authorization: {{Authorization}}
  537. {
  538. }
  539. ### promotion advertiser update
  540. POST {{host}}/central/admin/v1/promotion/advertiser/update
  541. Content-Type: application/json
  542. Authorization: {{Authorization}}
  543. {
  544. "advertiserId": "1670994481382414",
  545. "rebate": 1.1,
  546. "remark": "remark",
  547. "appCode": "",
  548. "optUserId": 0
  549. }
  550. ### document agreement page
  551. POST {{host}}/central/admin/v1/document/agreement/page
  552. Content-Type: application/json
  553. Authorization: {{Authorization}}
  554. {
  555. }
  556. ### document agreement create
  557. POST {{host}}/central/admin/v1/document/agreement/create
  558. Content-Type: application/json
  559. Authorization: {{Authorization}}
  560. {
  561. "name": "王者换肤-安卓-星檬-隐私政策",
  562. "productName": "王者换肤",
  563. "appPlatform": 1,
  564. "subjectName": "星檬",
  565. "agreementType": "隐私政策",
  566. "content": ""
  567. }
  568. ### document agreement update
  569. POST {{host}}/central/admin/v1/document/agreement/update
  570. Content-Type: application/json
  571. Authorization: {{Authorization}}
  572. {
  573. }
  574. ### document agreement types
  575. POST {{host}}/central/admin/v1/document/agreement/types
  576. Content-Type: application/json
  577. Authorization: {{Authorization}}
  578. {
  579. }
  580. ### agreement product names
  581. POST {{host}}/central/admin/v1/document/agreement/product/names
  582. Content-Type: application/json
  583. Authorization: {{Authorization}}
  584. {
  585. }
  586. ### subject page
  587. POST {{host}}/central/admin/v1/subject/page
  588. Content-Type: application/json
  589. Authorization: {{Authorization}}
  590. {
  591. }
  592. ### subject create
  593. POST {{host}}/central/admin/v1/subject/create
  594. Content-Type: application/json
  595. Authorization: {{Authorization}}
  596. {
  597. "name": "星檬",
  598. "host": "http://doc.atmob.com"
  599. }
  600. ### subject update
  601. POST {{host}}/central/admin/v1/subject/update
  602. Content-Type: application/json
  603. Authorization: {{Authorization}}
  604. {
  605. "id": 1,
  606. "name": "星檬",
  607. "host": "http://doc.atmob.com",
  608. "remark": ""
  609. }
  610. ### promotion grant app page
  611. POST {{host}}/central/admin/v1/promotion/grant/app/page
  612. Content-Type: application/json
  613. Authorization: {{Authorization}}
  614. {
  615. }
  616. ### promotion grant account page
  617. POST {{host}}/central/admin/v1/promotion/grant/account/page
  618. Content-Type: application/json
  619. Authorization: {{Authorization}}
  620. {
  621. }
  622. ### promotion grant link
  623. POST {{host}}/central/admin/v1/promotion/grant/link
  624. Content-Type: application/json
  625. Authorization: {{Authorization}}
  626. {
  627. "company": "tencent",
  628. "grantAppId": "1112025613"
  629. }
  630. ### pay renew page
  631. POST {{host}}/central/admin/v1/pay/renew/page
  632. Content-Type: application/json
  633. Authorization: {{Authorization}}
  634. {
  635. "page": 1,
  636. "pageSize": 10,
  637. "packageNames": [
  638. "com.xingchat.muse"
  639. ],
  640. "orderType": 1
  641. }
  642. ### pay renew statistics
  643. POST {{host}}/central/admin/v1/pay/renew/statistics
  644. Content-Type: application/json
  645. Authorization: {{Authorization}}
  646. {
  647. "page": 1,
  648. "pageSize": 50,
  649. "createTimeBegin": 1728316800000,
  650. "createTimeEnd": 1728576000000,
  651. "orderType": 0
  652. }
  653. ### promotion report page
  654. POST {{host}}/central/admin/v1/promotion/report/page
  655. Content-Type: application/json
  656. Authorization: {{Authorization}}
  657. {
  658. "page": 1,
  659. "pageSize": 20,
  660. "appCode": "com.quqiang.pifu_1",
  661. "optAppGroupId": null,
  662. "groupByAppCode": false,
  663. "dimensions": [
  664. "company",
  665. "advertiser_id",
  666. "gid",
  667. "aid",
  668. "cid"
  669. ],
  670. "endDate": "2025-03-03 23:59:59",
  671. "startDate": "2025-02-20 00:00:00",
  672. "timeGranularity": "DAILY"
  673. }
  674. ### promotion advertiser manager page
  675. POST {{host}}/central/admin/v1/promotion/advertiser/manager/page
  676. Content-Type: application/json
  677. Authorization: {{Authorization}}
  678. {
  679. "page": 1,
  680. "pageSize": 20,
  681. "appCode": null,
  682. "dimension": "cid",
  683. "endDate": "2025-03-03 23:59:59",
  684. "startDate": "2025-02-20 00:00:00",
  685. "timeGranularity": "DAILY",
  686. "company": "kuaishou"
  687. }
  688. ### promotion report field templates
  689. POST {{host}}/central/admin/v1/promotion/report/field/templates
  690. Content-Type: application/json
  691. Authorization: {{Authorization}}
  692. {
  693. }
  694. ### promotion report dimensions
  695. POST {{host}}/central/admin/v1/promotion/report/dimensions
  696. Content-Type: application/json
  697. Authorization: {{Authorization}}
  698. {
  699. }
  700. ### promotion opt app group page
  701. POST {{host}}/central/admin/v1/promotion/opt/app/group/page
  702. Content-Type: application/json
  703. Authorization: {{Authorization}}
  704. {
  705. }
  706. ### promotion opt app group create
  707. POST {{host}}/central/admin/v1/promotion/opt/app/group/create
  708. Content-Type: application/json
  709. Authorization: {{Authorization}}
  710. {
  711. "name": "全部"
  712. }
  713. ### promotion opt app group update
  714. POST {{host}}/central/admin/v1/promotion/opt/app/group/update
  715. Content-Type: application/json
  716. Authorization: {{Authorization}}
  717. {
  718. "id": 1,
  719. "optUserId": 2,
  720. "appCodeList": [
  721. "com.xingchat.muse_1"
  722. ]
  723. }
  724. ### promotion opt app group list
  725. POST {{host}}/central/admin/v1/promotion/opt/app/group/list
  726. Content-Type: application/json
  727. Authorization: {{Authorization}}
  728. {
  729. }
  730. ### netease config page
  731. POST {{host}}/central/admin/v1/auth/netease/config/page
  732. Content-Type: application/json
  733. Authorization: {{Authorization}}
  734. {
  735. "page": 1,
  736. "pageSize": 10,
  737. "status": 0
  738. }
  739. ### netease config create
  740. POST {{host}}/central/admin/v1/auth/netease/config/create
  741. Content-Type: application/json
  742. Authorization: {{Authorization}}
  743. {
  744. "packageName": "com.xingchat.muse",
  745. "appPlatform": 2,
  746. "secretId": "5299ec9603d78d53e10fdddb127c9ca3",
  747. "businessId": "c6b5dc09a5e445d28366ba23657274fc",
  748. "secretKey": "3a11e7637cc993bbe868b3e52728ed72",
  749. "version": "v1",
  750. "status": 0
  751. }
  752. ### netease config update
  753. POST {{host}}/central/admin/v1/auth/netease/config/update
  754. Content-Type: application/json
  755. Authorization: {{Authorization}}
  756. {
  757. "id": 3,
  758. "packageName": "com.xingchat.muse",
  759. "appPlatform": 2,
  760. "secretId": "5299ec9603d78d53e10fdddb127c9ca3",
  761. "businessId": "c6b5dc09a5e445d28366ba23657274fc",
  762. "secretKey": "3a11e7637cc993bbe868b3e52728ed72",
  763. "version": "v1",
  764. "status": 0
  765. }
  766. ### advertisement event info page
  767. POST {{host}}/central/admin/v1/advertisement/v1/event/info/page
  768. Content-Type: application/json
  769. Authorization: {{Authorization}}
  770. {
  771. "status": 0,
  772. "pageSize": 100,
  773. "tables": [
  774. {
  775. "filters": [
  776. {
  777. "column": "$app_code",
  778. "operator": "EQUALS",
  779. "value": "com.manbu.gaoqingditu_1"
  780. },
  781. {
  782. "column": "$time",
  783. "operator": "RANGE_IN",
  784. "start": "2023-12-31 00:00:00",
  785. "end": "2025-12-31 23:59:59",
  786. "toUnixTimestamp": true
  787. },
  788. {
  789. "column": "$reg_time",
  790. "operator": "RANGE_IN",
  791. "start": "2023-12-31 00:00:00",
  792. "end": "2025-12-31 23:59:59"
  793. }
  794. ]
  795. }
  796. ]
  797. }
  798. ### advertisement event info statistics
  799. POST {{host}}/central/admin/v1/advertisement/v1/event/info/statistics
  800. Content-Type: application/json
  801. Authorization: {{Authorization}}
  802. {
  803. "id": 3,
  804. "packageName": "com.xingchat.muse",
  805. "appPlatform": 2,
  806. "secretId": "5299ec9603d78d53e10fdddb127c9ca3",
  807. "businessId": "c6b5dc09a5e445d28366ba23657274fc",
  808. "secretKey": "3a11e7637cc993bbe868b3e52728ed72",
  809. "version": "v1",
  810. "status": 0,
  811. "pageSize": 100,
  812. "tables": [
  813. {
  814. "filters": [
  815. {
  816. "column": "$time",
  817. "operator": "RANGE_IN",
  818. "start": "2024-12-31 00:00:00",
  819. "end": "2024-12-31 23:59:59",
  820. "toUnixTimestamp": true
  821. }
  822. ]
  823. }
  824. ]
  825. }
  826. ### advertisement event user page
  827. POST {{host}}/central/admin/v1/advertisement/v1/event/user/page
  828. Content-Type: application/json
  829. Authorization: {{Authorization}}
  830. {
  831. "page": 1,
  832. "pageSize": 50,
  833. "projectCode": "project_playlet",
  834. "tables": [
  835. {
  836. "filters": [
  837. {
  838. "column": "$app_platform",
  839. "operator": "EQUALS",
  840. "value": "1"
  841. },
  842. {
  843. "column": "$time",
  844. "operator": "RANGE_IN",
  845. "start": "2025-02-06 00:00:00",
  846. "end": "2025-02-06 23:59:59",
  847. "toUnixTimestamp": true
  848. },
  849. {
  850. "column": "$reg_time",
  851. "operator": "RANGE_IN",
  852. "start": "2025-02-06 00:00:00",
  853. "end": "2025-02-06 23:59:59"
  854. }
  855. ],
  856. "havingFields": [],
  857. "orderByFields": [
  858. {
  859. "column": "reg_time_max",
  860. "desc": true
  861. }
  862. ]
  863. },
  864. {
  865. "filters": [
  866. {
  867. "column": "$app_platform",
  868. "operator": "EQUALS",
  869. "value": "1"
  870. },
  871. {
  872. "column": "$time",
  873. "operator": "RANGE_IN",
  874. "start": "2025-02-06 00:00:00",
  875. "end": "2025-02-06 23:59:59",
  876. "toUnixTimestamp": true
  877. },
  878. {
  879. "column": "$reg_time",
  880. "operator": "RANGE_IN",
  881. "start": "2025-02-06 00:00:00",
  882. "end": "2025-02-06 23:59:59"
  883. }
  884. ],
  885. "havingFields": [],
  886. "orderByFields": []
  887. }
  888. ]
  889. }
  890. ### advertisement event user statistics
  891. POST {{host}}/central/admin/v1/advertisement/v1/event/user/statistics
  892. Content-Type: application/json
  893. Authorization: {{Authorization}}
  894. {
  895. "projectCode": "project_playlet",
  896. "tables": [
  897. {
  898. "filters": [
  899. {
  900. "column": "$app_platform",
  901. "operator": "EQUALS",
  902. "value": "1"
  903. },
  904. {
  905. "column": "$time",
  906. "operator": "RANGE_IN",
  907. "start": "2025-02-06 00:00:00",
  908. "end": "2025-02-06 23:59:59",
  909. "toUnixTimestamp": true
  910. },
  911. {
  912. "column": "$reg_time",
  913. "operator": "RANGE_IN",
  914. "start": "2025-02-06 00:00:00",
  915. "end": "2025-02-06 23:59:59"
  916. }
  917. ],
  918. "havingFields": []
  919. },
  920. {
  921. "filters": [
  922. {
  923. "column": "$app_platform",
  924. "operator": "EQUALS",
  925. "value": "1"
  926. },
  927. {
  928. "column": "$time",
  929. "operator": "RANGE_IN",
  930. "start": "2025-02-06 00:00:00",
  931. "end": "2025-02-06 23:59:59",
  932. "toUnixTimestamp": true
  933. },
  934. {
  935. "column": "$reg_time",
  936. "operator": "RANGE_IN",
  937. "start": "2025-02-06 00:00:00",
  938. "end": "2025-02-06 23:59:59"
  939. }
  940. ],
  941. "havingFields": []
  942. }
  943. ]
  944. }
  945. ### advertisement event meta prop page
  946. POST {{host}}/central/admin/v1/event/meta/prop/page
  947. Content-Type: application/json
  948. Authorization: {{Authorization}}
  949. {
  950. "page": 1,
  951. "pageSize": 1,
  952. "projectCode": "project_playlet"
  953. }
  954. ### advertisement event meta info page
  955. POST {{host}}/central/admin/v1/event/meta/info/page
  956. Content-Type: application/json
  957. Authorization: {{Authorization}}
  958. {
  959. "page": 1,
  960. "pageSize": 1000,
  961. "projectCode": "common-project"
  962. }
  963. ### advertisement event meta info create
  964. POST {{host}}/central/admin/v1/event/meta/info/create
  965. Content-Type: application/json
  966. Authorization: {{Authorization}}
  967. {
  968. "projectCode": "project_playlet",
  969. "alias": "$ad_shown",
  970. "name": "广告展示",
  971. "productId": "46",
  972. "eventType": "example_event_type",
  973. "accept": true,
  974. "description": "Example description for the event"
  975. }
  976. ### advertisement event meta info update
  977. POST {{host}}/central/admin/v1/event/meta/info/update
  978. Content-Type: application/json
  979. Authorization: {{Authorization}}
  980. {
  981. "id": 123,
  982. "projectCode": "updated_project_code",
  983. "alias": "updated_alias",
  984. "name": "Updated Event Name",
  985. "productId": "project_playlet",
  986. "eventType": "updated_event_type",
  987. "accept": false,
  988. "description": "Updated description for the event",
  989. "createTime": "2024-01-01T00:00:00",
  990. "updateTime": "2024-01-01T00:00:00",
  991. "status": 1
  992. }
  993. ### advertisement event query_sql
  994. POST {{host}}/central/admin/v1/advertisement/v1/event/sql/query
  995. Content-Type: application/json
  996. Authorization: {{Authorization}}
  997. {
  998. "projectCode": "project_playlet",
  999. "query_item_list": [
  1000. {
  1001. "event_name": "$SceneLoaded",
  1002. "event_label": "Unity场景加载",
  1003. "custom_name": "Unity场景加载.总次数",
  1004. "target": {
  1005. "name": "PresetAllCount",
  1006. "field": "PresetAllCount"
  1007. },
  1008. "conditions": [],
  1009. "cond_logic": "AND",
  1010. "event_index": 1
  1011. }
  1012. ],
  1013. "custom_query_item_list": [
  1014. {
  1015. "custom_name": "自定义指标",
  1016. "formula": "x/x/ 100000 + (1+2)",
  1017. "query_item_list": [
  1018. {
  1019. "projectCode": "ad_event",
  1020. "event_name": "$ad_shown",
  1021. "event_label": "广告展示",
  1022. "custom_name": "广告展示.总预计收益",
  1023. "target": {
  1024. "name": "SUMIF",
  1025. "field": "$adEcpm"
  1026. },
  1027. "conditions": [
  1028. {
  1029. "operator": "IN",
  1030. "field": "$event",
  1031. "type": "user",
  1032. "value": [
  1033. "$transfer"
  1034. ]
  1035. },
  1036. {
  1037. "operator": "GREATER",
  1038. "field": "$adEcpm",
  1039. "type": "user",
  1040. "value": [
  1041. 100
  1042. ]
  1043. }
  1044. ],
  1045. "cond_logic": "OR"
  1046. },
  1047. {
  1048. "projectCode": "ad_event",
  1049. "event_name": "$ad_shown",
  1050. "event_label": "展示次数",
  1051. "custom_name": "事件.展示次数",
  1052. "target": {
  1053. "name": "COUNTIF",
  1054. "field": "$event"
  1055. },
  1056. "conditions": [],
  1057. "cond_logic": "AND"
  1058. }
  1059. ],
  1060. "decimal_point": "two_point",
  1061. "event_index": 0
  1062. },
  1063. {
  1064. "custom_name": "提现次数",
  1065. "formula": "x",
  1066. "query_item_list": [
  1067. {
  1068. "projectCode": "project_playlet",
  1069. "event_name": "$transfer",
  1070. "event_label": "提现次数",
  1071. "custom_name": "事件.提现次数",
  1072. "target": {
  1073. "name": "PresetUserAvg",
  1074. "field": "PresetUserAvg"
  1075. },
  1076. "conditions": [],
  1077. "cond_logic": "AND"
  1078. }
  1079. ],
  1080. "decimal_point": "two_point",
  1081. "event_index": 2
  1082. }
  1083. ],
  1084. "group_by_list": [
  1085. {
  1086. "projectCode": "project_playlet",
  1087. "field": "$app_version_code",
  1088. "custom_name": "测试3"
  1089. }
  1090. ],
  1091. "global_conditions": [
  1092. {
  1093. "field": "$app_code",
  1094. "value": [
  1095. "com.xm.jvjingcai_1"
  1096. ],
  1097. "operator": "EQUALS",
  1098. "projectCode": "project_playlet"
  1099. },
  1100. {
  1101. "field": "$app_code",
  1102. "value": [
  1103. "com.xm.jvjingcai_1"
  1104. ],
  1105. "operator": "EQUALS",
  1106. "projectCode": "ad_event"
  1107. }
  1108. ],
  1109. "global_cond_logic": "AND",
  1110. "date_list": [
  1111. {
  1112. "start_date": "2024-12-30 00:00:00",
  1113. "end_date": "2024-12-31 23:59:59"
  1114. }
  1115. ],
  1116. "return_hierarchy_list": true,
  1117. "calc_layer_y": true
  1118. }
  1119. ### advertisement event analysis user retention
  1120. POST {{host}}/central/admin/v1/advertisement/v1/event/analysis/user/retention
  1121. Content-Type: application/json
  1122. Authorization: {{Authorization}}
  1123. {
  1124. "projectCode": "project_playlet",
  1125. "offset": 7,
  1126. "query_item_list": [
  1127. {
  1128. "projectCode": "ad_event",
  1129. "event_name": "$ad_clicked",
  1130. "custom_name": "广告加载.用户数",
  1131. "target": {
  1132. "name": "PresetAllCount",
  1133. "field": "PresetAllCount"
  1134. },
  1135. "conditions": [
  1136. ],
  1137. "cond_logic": "AND"
  1138. },
  1139. {
  1140. "projectCode": "project_playlet",
  1141. "event_name": "$attribution",
  1142. "custom_name": "App 启动",
  1143. "target": {
  1144. "name": "PresetAllCount",
  1145. "field": "PresetAllCount"
  1146. },
  1147. "conditions": [],
  1148. "cond_logic": "AND"
  1149. }
  1150. ],
  1151. "group_by_list": [
  1152. ],
  1153. "global_conditions": [
  1154. ],
  1155. "global_cond_logic": "AND",
  1156. "date_list": [
  1157. {
  1158. "start_date": "2025-01-09 00:00:00",
  1159. "end_date": "2025-01-16 23:59:59"
  1160. }
  1161. ],
  1162. "return_hierarchy_list": true,
  1163. "calc_layer_y": true
  1164. }
  1165. ### advertisement event analysis template get
  1166. POST {{host}}/central/admin/v1/event/analysis/template/get
  1167. Content-Type: application/json
  1168. Authorization: {{Authorization}}
  1169. {
  1170. "id": "4"
  1171. }
  1172. ### advertisement event analysis template page
  1173. POST {{host}}/central/admin/v1/event/analysis/template/page
  1174. Content-Type: application/json
  1175. Authorization: {{Authorization}}
  1176. {
  1177. "page": 1,
  1178. "pageSize": 10,
  1179. "source": "presets",
  1180. "status": 0
  1181. }
  1182. ### advertisement event analysis template create
  1183. POST {{host}}/central/admin/v1/event/analysis/template/create
  1184. Content-Type: application/json
  1185. Authorization: {{Authorization}}
  1186. {
  1187. "name": "test3",
  1188. "type": "event",
  1189. "source": "customize",
  1190. "sourceId": "12",
  1191. "remark": "This is an example template.",
  1192. "content": "{\"projectCode\":\"project_playlet\",\"query_item_list\":[{\"event_name\":\"$SceneLoaded\",\"event_label\":\"Unity场景加载\",\"custom_name\":\"Unity场景加载.总次数\",\"target\":{\"name\":\"PresetAllCount\",\"field\":\"PresetAllCount\"},\"conditions\":[],\"cond_logic\":\"AND\",\"event_index\":1}],\"custom_query_item_list\":[{\"custom_name\":\"自定义指标\",\"formula\":\"x/x/ 100000\",\"query_item_list\":[{\"projectCode\":\"ad_event\",\"event_name\":\"$ad_shown\",\"event_label\":\"广告展示\",\"custom_name\":\"广告展示.总预计收益\",\"target\":{\"name\":\"SUMIF\",\"field\":\"$adEcpm\"},\"conditions\":[{\"operator\":\"IN\",\"field\":\"$event\",\"type\":\"user\",\"value\":[\"$transfer\",\"$transfer\"]},{\"operator\":\"GREATER\",\"field\":\"$adEcpm\",\"type\":\"user\",\"value\":[100]}],\"cond_logic\":\"OR\"},{\"projectCode\":\"ad_event\",\"event_name\":\"$ad_shown\",\"event_label\":\"展示次数\",\"custom_name\":\"事件.展示次数\",\"target\":{\"name\":\"COUNTIF\",\"field\":\"$event\"},\"conditions\":[],\"cond_logic\":\"AND\"}],\"decimal_point\":\"two_point\",\"event_index\":0},{\"custom_name\":\"提现次数\",\"formula\":\"x\",\"query_item_list\":[{\"projectCode\":\"project_playlet\",\"event_name\":\"$transfer\",\"event_label\":\"提现次数\",\"custom_name\":\"事件.提现次数\",\"target\":{\"name\":\"PresetUserAvg\",\"field\":\"PresetUserAvg\"},\"conditions\":[],\"cond_logic\":\"AND\"}],\"decimal_point\":\"two_point\",\"event_index\":2}],\"group_by_list\":[{\"projectCode\":\"project_playlet\",\"field\":\"$app_version_code\",\"custom_name\":\"测试3\"}],\"global_conditions\":[{\"field\":\"$app_code\",\"value\":[\"com.xm.jvjingcai_1\"],\"operator\":\"EQUALS\",\"projectCode\":\"project_playlet\"},{\"field\":\"$app_code\",\"value\":[\"com.xm.jvjingcai_1\"],\"operator\":\"EQUALS\",\"projectCode\":\"ad_event\"}],\"global_cond_logic\":\"AND\",\"date_list\":[{\"start_date\":\"2024-12-30 00:00:00\",\"end_date\":\"2024-12-31 23:59:59\"}],\"return_hierarchy_list\":true,\"calc_layer_y\":true}"
  1193. }
  1194. ### advertisement event analysis template update
  1195. POST {{host}}/central/admin/v1/event/analysis/template/update
  1196. Content-Type: application/json
  1197. Authorization: {{Authorization}}
  1198. {
  1199. "id": 123,
  1200. "projectCode": "updated_project_code",
  1201. "alias": "updated_alias",
  1202. "name": "Updated Event Name",
  1203. "productId": "project_playlet",
  1204. "eventType": "updated_event_type",
  1205. "accept": false,
  1206. "description": "Updated description for the event",
  1207. "createTime": "2024-01-01T00:00:00",
  1208. "updateTime": "2024-01-01T00:00:00",
  1209. "status": 1
  1210. }
  1211. ### promotion report roi get
  1212. POST {{host}}/central/admin/v1/promotion/report/roi/get
  1213. Content-Type: application/json
  1214. Authorization: {{Authorization}}
  1215. {
  1216. "page": 1,
  1217. "pageSize": 500,
  1218. "appCode": null,
  1219. "endDate": "2025-03-03 23:59:59",
  1220. "startDate": "2025-03-03 00:00:00",
  1221. "timeGranularity": "DAILY",
  1222. "field": "total_income",
  1223. "advertiserIds": [],
  1224. "company": null,
  1225. "multiDays": 7,
  1226. "decimalPoint": 4
  1227. }
  1228. ### promotion report accuracy roi get
  1229. POST {{host}}/central/admin/v1/promotion/report/roi/accuracy/get
  1230. Content-Type: application/json
  1231. Authorization: {{Authorization}}
  1232. {
  1233. "page": 1,
  1234. "pageSize": 500,
  1235. "appCode": null,
  1236. "endDate": "2025-03-03 23:59:59",
  1237. "startDate": "2024-03-03 00:00:00",
  1238. "timeGranularity": "DAILY",
  1239. "field": "total_income",
  1240. "advertiserIds": [],
  1241. "company": null,
  1242. "multiDays": 7,
  1243. "decimalPoint": 4
  1244. }
  1245. ### promotion report roi templates
  1246. POST {{host}}/central/admin/v1/promotion/report/field/roi/templates
  1247. Content-Type: application/json
  1248. Authorization: {{Authorization}}
  1249. {
  1250. }
  1251. ### promotion overview data summary
  1252. POST {{host}}/central/admin/v1/promotion/overview/data/summary
  1253. Content-Type: application/json
  1254. Authorization: {{Authorization}}
  1255. {
  1256. "appCode": null,
  1257. "endDate": "2025-02-14 23:59:59",
  1258. "startDate": "2025-02-10 00:00:00",
  1259. "company": null
  1260. }
  1261. ### promotion overview data dimension
  1262. POST {{host}}/central/admin/v1/promotion/overview/data/dimension
  1263. Content-Type: application/json
  1264. Authorization: {{Authorization}}
  1265. {
  1266. "pageSize": 15,
  1267. "appCode": null,
  1268. "endDate": "2025-02-14 23:59:59",
  1269. "startDate": "2025-02-10 00:00:00",
  1270. "company": null,
  1271. "dimension": "advertiser_id"
  1272. }