| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503 |
- ### register
- POST {{host}}/central/admin/v1/admin/user/register
- Content-Type: application/json
- Authorization: BgeNpi3y9pkjyWJocDpsCjuuwJxYhNta
- {
- "account": "cws",
- "nickname": "陈伟生",
- "remark": ""
- }
- ### login
- POST {{host}}/central/admin/v1/admin/user/login
- Content-Type: application/json
- {
- "account": "cws",
- "password": "123456"
- }
- ### reset password
- POST {{host}}/central/admin/v1/admin/user/password/reset
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "account": "wjj",
- "originalPassword": "666666",
- "password": "123456"
- }
- ### organ trees
- POST {{host}}/central/admin/v1/admin/organ/trees
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### query organ page
- POST {{host}}/central/admin/v1/admin/organ/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### create organ
- POST {{host}}/central/admin/v1/admin/organ/create
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "name": "投放部",
- "parentId": 1
- }
- ### update organ
- POST {{host}}/central/admin/v1/admin/organ/update
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "id": 3,
- "name": "投放部"
- }
- ### query user page
- POST {{host}}/central/admin/v1/admin/user/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### update user
- POST {{host}}/central/admin/v1/admin/user/update
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "id": 3,
- "organId": 2
- }
- ### query role page
- POST {{host}}/central/admin/v1/admin/role/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### my role list
- POST {{host}}/central/admin/v1/admin/role/my
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### role list
- POST {{host}}/central/admin/v1/admin/role/list
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### auth data list
- POST {{host}}/central/admin/v1/admin/auth/data/list
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "roleId": 1
- }
- ### auth data allocate
- POST {{host}}/central/admin/v1/admin/auth/data/allocate
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "roleId": 1,
- "list": [
- {
- "funcCode": "promotion_manage",
- "authType": 2
- }
- ]
- }
- ### auth trees
- POST {{host}}/central/admin/v1/admin/auth/trees
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "system": "central"
- }
- ### auth ids
- POST {{host}}/central/admin/v1/admin/auth/ids
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "roleId": 1
- }
- ### auth my
- POST {{host}}/central/admin/v1/admin/auth/my
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "system": "central"
- }
- ### auth menu
- POST {{host}}/central/admin/v1/admin/auth/menu
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "system": "central"
- }
- ### app page
- POST {{host}}/central/admin/v1/app/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### app my
- POST {{host}}/central/admin/v1/app/my
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "system": "central"
- }
- ### app create
- POST {{host}}/central/admin/v1/app/create
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "name": "测试-酱香充电",
- "appPlatform": 1,
- "packageName": "com.chargebattery.jiangxiang6",
- "remark": "测试",
- "projectCode": "project_playlet",
- "productCode": "com.chargebattery.jiangxiang3"
- }
- ### app allocate
- POST {{host}}/central/admin/v1/app/allocate
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "userId": 9,
- "appIds": [
- 1
- ]
- }
- ### getProjectPage
- POST {{host}}/central/admin/v1/project/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "packageName": "com.chargebattery.jiangxiang",
- "projectCode": "project_playlet",
- "confCode": "daily_withdraw_task"
- }
- ### getChannelPage
- POST {{host}}/central/admin/v1/channel/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "packageName": "com.chargebattery.jiangxiang",
- "projectCode": "project_playlet",
- "confCode": "daily_withdraw_task"
- }
- ### getPackagePage
- POST {{host}}/central/admin/v1/package/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "packageName": "com.chargebattery.jiangxiang",
- "projectCode": "project_playlet",
- "confCode": "daily_withdraw_task"
- }
- ### pay config page
- POST {{host}}/central/admin/v1/pay/config/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### pay item page
- POST {{host}}/central/admin/v1/pay/item/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### pay option page
- POST {{host}}/central/admin/v1/pay/option/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### pay order page
- POST {{host}}/central/admin/v1/pay/order/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### pay order statistics
- POST {{host}}/central/admin/v1/pay/order/statistics
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "phone": 13713873750,
- "page": 1,
- "pageSize": 50,
- "createTimeBegin": 1706889600000,
- "createTimeEnd": 1706975999999
- }
- ### pay transfer page
- POST {{host}}/central/admin/v1/pay/transfer/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "packageName": "com.chargebattery.jiangxiang",
- "appPlatform": 1,
- "deviceId": "d3814d60a1b1451589ce0e2520d6ab49",
- "ssid": "c7d32b1674654f6f90acfdc454526bb7",
- "payMethod": 1,
- "outTransferNo": "231201928043024205103104",
- "page": 1,
- "pageSize": 50
- }
- ### pay transfer statistics
- POST {{host}}/central/admin/v1/pay/transfer/statistics
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "packageName": "com.chargebattery.jiangxiang",
- "appPlatform": 1,
- "deviceId": "d3814d60a1b1451589ce0e2520d6ab49",
- "ssid": "c7d32b1674654f6f90acfdc454526bb7",
- "payMethod": 1,
- "outTransferNo": "231201928043024205103104",
- "page": 1,
- "pageSize": 50
- }
- ### user page
- POST {{host}}/central/admin/v1/user/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "userId": "fe897d503bc9477da8a01972183d55bd",
- "ssid": "39ca7ddd0ae24a4f9917b828f96cff80",
- "packageName": "cn.com.devotiondigital.xiyuejia",
- "channelName": "",
- "phone": "11223344551",
- "page": 1,
- "pageSize": 50
- }
- ### device detail page
- POST {{host}}/central/admin/v1/device/detail/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "packageName": "cn.com.devotiondigital.xiyuejia",
- "appPlatform": 4,
- "page": 1,
- "pageSize": 50
- }
- ### sms code query
- POST {{host}}/central/admin/v1/auth/sms/code/query
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "phone": "11223344551"
- }
- ### alipay config page
- POST {{host}}/central/admin/v1/auth/alipay/config/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "appId": "2021004130614038",
- "packageName": "com.redredshortplay.hhhdj",
- "appPlatform": 1,
- "status": 0
- }
- ### wechat config page
- POST {{host}}/central/admin/v1/auth/wechat/config/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "appid": "wxc4f4aa2759b25db4",
- "packageName": "com.redredshortplay.hhhdj",
- "appPlatform": 1,
- "status": 0
- }
- ### 微信投诉订单列表
- POST {{host}}/central/admin/v1/pay/complaint/wechat/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "merchantId": 1,
- "createTimeBegin": 1709827200000,
- "createTimeEnd": 1712332800000,
- "page": 1,
- "pageSize": 10,
- "transactionId2": "4200002200202403263951599100",
- "complaintState2": "PROCESSED",
- "problemType2": "OTHERS",
- "incomingUserResponse2": false,
- "userComplaintTimes2": 1,
- "timeoutStatus2": "NOT_HANDLED_COMPLETELY",
- "aboutTimeoutStatus2": "PENDING"
- }
- ### 微信投诉订单统计
- POST {{host}}/central/admin/v1/pay/complaint/wechat/statistics
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### 微信投诉订单详情
- POST {{host}}/central/admin/v1/pay/complaint/wechat/getComplaint
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "merchantId": 1,
- "complaintId": "200000020240327200162188465"
- }
- ### 微信投诉订单协商历史
- POST {{host}}/central/admin/v1/pay/complaint/wechat/queryNegotiationHistorys
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "merchantId": 1,
- "complaintId": "200000020240327200162188465"
- }
- ### 微信投诉订单回复用户
- POST {{host}}/central/admin/v1/pay/complaint/wechat/submitResponse
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "merchantId": 1,
- "complaintId": "200000020240327200162188465",
- "responseContent": "测试",
- "responseImages": [
- "1"
- ],
- "jumpUrlText": "1",
- "jumpUrl": "1"
- }
- ### 微信投诉订单图片上传
- POST {{host}}/central/admin/v1/pay/complaint/wechat/uploadResponseImage
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "merchantId": 1,
- "complaintId": "200000020240327200162188465"
- }
- ### 微信投诉订单处理完成
- POST {{host}}/central/admin/v1/pay/complaint/wechat/complete
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "merchantId": 1,
- "complaintId": "200000020240327200162188465"
- }
- ### 微信投诉订单审批拒绝退款
- POST {{host}}/central/admin/v1/pay/complaint/wechat/rejectRefund
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "merchantId": 1,
- "complaintId": "200000020240327200162188465",
- "rejectReason": "退款驳回",
- "rejectMediaList": [
- "1"
- ],
- "remark": "测试"
- }
- ### 支付宝投诉订单列表
- POST {{host}}/central/admin/v1/pay/complaint/ali/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "merchantId": 10,
- "createTimeBegin": 1715184000000,
- "createTimeEnd": 1715875199999,
- "page": 1,
- "pageSize": 3,
- "status2": "PROCESSING"
- }
- ### 支付宝投诉订单详情
- POST {{host}}/central/admin/v1/pay/complaint/ali/getComplaint
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "merchantId": 21,
- "complainId": 115608652
- }
- ### 支付宝投诉订单图片上传
- POST {{host}}/central/admin/v1/pay/complaint/ali/uploadResponseImage
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "merchantId": 9
- }
- ### 支付宝投诉订单处理
- POST {{host}}/central/admin/v1/pay/complaint/ali/submitResponse
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "merchantId": 10,
- "complainId": 122317250,
- "processCode": "ORTHER",
- "remark": "亲,您遇到了什么问题呢,可以提供截图,描述下具体问题吗",
- "imgFileList": [],
- "imgFileList2": [
- {
- "imgUrl": "http://mdn.alipayobjects.com/security_fraudmng/afts/img/A*IxoLRaE5hOIAAAAAAAAAAAAADsJ2AA/original?t=X-v0LHsnpE4zxklG0rClM1Xv0x84tLoz-WY5arjmesMDAAAAZAAAdsIAAAAA",
- "imgUrlKey": "A*IxoLRaE5hOIAAAAAAAAAAAAADsJ2AA"
- }
- ]
- }
- ### 支付宝投诉订单统计
- POST {{host}}/central/admin/v1/pay/complaint/ali/statistics
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### deprecate device
- POST {{host}}/central/admin/v1/device/deprecate
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "deviceId": "9ffe7eb637a54fbcb35b1f312c319f09"
- }
- ### deprecate user
- POST {{host}}/central/admin/v1/user/deprecate
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "id": "8a783ddcdb7d49fc9f9fd196bd822810"
- }
- ### dy config page
- POST {{host}}/central/admin/v1/auth/dy/config/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "page": 1,
- "pageSize": 10,
- "appid": "tteb6c9dd1745d882801",
- "packageName": "com.xingchat.muse",
- "appPlatform": 8,
- "status": 0
- }
- ### dy config create
- POST {{host}}/central/admin/v1/auth/dy/config/create
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "appid": "tteb6c9dd1745d882801",
- "packageName": "com.xingchat.muse",
- "appPlatform": 8,
- "secret": 1,
- "status": 0
- }
- ### dy config update
- POST {{host}}/central/admin/v1/auth/dy/config/update
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "id": 1,
- "appid": "tteb6c9dd1745d882801",
- "packageName": "com.xingchat.muse",
- "appPlatform": 8,
- "secret": 1,
- "status": 0
- }
- ### 退款
- POST {{host}}/central/admin/v1/pay/refund
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "outTradeNo": "2407191011756026131197952"
- }
- ### generate promotion link
- POST {{host}}/central/admin/v1/promotion/link/generate
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "appId": 36,
- "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"
- }
- ### generate promotion link options v8
- POST {{host}}/central/admin/v8/promotion/link/options
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### generate promotion link v8
- POST {{host}}/central/admin/v8/promotion/link/generate
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "appId": 36,
- "company": "baidu",
- "v8AppId": "0"
- }
- ### opt user ids
- POST {{host}}/central/admin/v1/promotion/manage/opt/user/ids
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### opt users
- POST {{host}}/central/admin/v1/promotion/manage/opt/users
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### promotion advertiser page
- POST {{host}}/central/admin/v1/promotion/advertiser/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### promotion advertiser update
- POST {{host}}/central/admin/v1/promotion/advertiser/update
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "advertiserId": "1670994481382414",
- "rebate": 1.1,
- "remark": "remark",
- "appCode": "",
- "optUserId": 0
- }
- ### document agreement page
- POST {{host}}/central/admin/v1/document/agreement/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### document agreement create
- POST {{host}}/central/admin/v1/document/agreement/create
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "name": "王者换肤-安卓-星檬-隐私政策",
- "productName": "王者换肤",
- "appPlatform": 1,
- "subjectName": "星檬",
- "agreementType": "隐私政策",
- "content": ""
- }
- ### document agreement update
- POST {{host}}/central/admin/v1/document/agreement/update
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### document agreement types
- POST {{host}}/central/admin/v1/document/agreement/types
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### agreement product names
- POST {{host}}/central/admin/v1/document/agreement/product/names
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### subject page
- POST {{host}}/central/admin/v1/subject/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### subject create
- POST {{host}}/central/admin/v1/subject/create
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "name": "星檬",
- "host": "http://doc.atmob.com"
- }
- ### subject update
- POST {{host}}/central/admin/v1/subject/update
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "id": 1,
- "name": "星檬",
- "host": "http://doc.atmob.com",
- "remark": ""
- }
- ### promotion grant app page
- POST {{host}}/central/admin/v1/promotion/grant/app/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### promotion grant account page
- POST {{host}}/central/admin/v1/promotion/grant/account/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### promotion grant link
- POST {{host}}/central/admin/v1/promotion/grant/link
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "company": "tencent",
- "grantAppId": "1112025613"
- }
- ### pay renew page
- POST {{host}}/central/admin/v1/pay/renew/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "page": 1,
- "pageSize": 10,
- "packageNames": [
- "com.xingchat.muse"
- ],
- "orderType": 1
- }
- ### pay renew statistics
- POST {{host}}/central/admin/v1/pay/renew/statistics
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "page": 1,
- "pageSize": 50,
- "createTimeBegin": 1728316800000,
- "createTimeEnd": 1728576000000,
- "orderType": 0
- }
- ### promotion report page
- POST {{host}}/central/admin/v1/promotion/report/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "page": 1,
- "pageSize": 20,
- "appCode": "com.quqiang.pifu_1",
- "optAppGroupId": null,
- "groupByAppCode": false,
- "dimensions": [
- "company",
- "advertiser_id",
- "gid",
- "aid",
- "cid"
- ],
- "endDate": "2025-03-03 23:59:59",
- "startDate": "2025-02-20 00:00:00",
- "timeGranularity": "DAILY"
- }
- ### promotion advertiser manager page
- POST {{host}}/central/admin/v1/promotion/advertiser/manager/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "page": 1,
- "pageSize": 20,
- "appCode": null,
- "dimension": "cid",
- "endDate": "2025-03-03 23:59:59",
- "startDate": "2025-02-20 00:00:00",
- "timeGranularity": "DAILY",
- "company": "kuaishou"
- }
- ### promotion report field templates
- POST {{host}}/central/admin/v1/promotion/report/field/templates
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### promotion report dimensions
- POST {{host}}/central/admin/v1/promotion/report/dimensions
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### promotion opt app group page
- POST {{host}}/central/admin/v1/promotion/opt/app/group/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### promotion opt app group create
- POST {{host}}/central/admin/v1/promotion/opt/app/group/create
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "name": "全部"
- }
- ### promotion opt app group update
- POST {{host}}/central/admin/v1/promotion/opt/app/group/update
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "id": 1,
- "optUserId": 2,
- "appCodeList": [
- "com.xingchat.muse_1"
- ]
- }
- ### promotion opt app group list
- POST {{host}}/central/admin/v1/promotion/opt/app/group/list
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### netease config page
- POST {{host}}/central/admin/v1/auth/netease/config/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "page": 1,
- "pageSize": 10,
- "status": 0
- }
- ### netease config create
- POST {{host}}/central/admin/v1/auth/netease/config/create
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "packageName": "com.xingchat.muse",
- "appPlatform": 2,
- "secretId": "5299ec9603d78d53e10fdddb127c9ca3",
- "businessId": "c6b5dc09a5e445d28366ba23657274fc",
- "secretKey": "3a11e7637cc993bbe868b3e52728ed72",
- "version": "v1",
- "status": 0
- }
- ### netease config update
- POST {{host}}/central/admin/v1/auth/netease/config/update
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "id": 3,
- "packageName": "com.xingchat.muse",
- "appPlatform": 2,
- "secretId": "5299ec9603d78d53e10fdddb127c9ca3",
- "businessId": "c6b5dc09a5e445d28366ba23657274fc",
- "secretKey": "3a11e7637cc993bbe868b3e52728ed72",
- "version": "v1",
- "status": 0
- }
- ### advertisement event info page
- POST {{host}}/central/admin/v1/advertisement/v1/event/info/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "status": 0,
- "pageSize": 100,
- "tables": [
- {
- "filters": [
- {
- "column": "$app_code",
- "operator": "EQUALS",
- "value": "com.manbu.gaoqingditu_1"
- },
- {
- "column": "$time",
- "operator": "RANGE_IN",
- "start": "2023-12-31 00:00:00",
- "end": "2025-12-31 23:59:59",
- "toUnixTimestamp": true
- },
- {
- "column": "$reg_time",
- "operator": "RANGE_IN",
- "start": "2023-12-31 00:00:00",
- "end": "2025-12-31 23:59:59"
- }
- ]
- }
- ]
- }
- ### advertisement event info statistics
- POST {{host}}/central/admin/v1/advertisement/v1/event/info/statistics
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "id": 3,
- "packageName": "com.xingchat.muse",
- "appPlatform": 2,
- "secretId": "5299ec9603d78d53e10fdddb127c9ca3",
- "businessId": "c6b5dc09a5e445d28366ba23657274fc",
- "secretKey": "3a11e7637cc993bbe868b3e52728ed72",
- "version": "v1",
- "status": 0,
- "pageSize": 100,
- "tables": [
- {
- "filters": [
- {
- "column": "$time",
- "operator": "RANGE_IN",
- "start": "2024-12-31 00:00:00",
- "end": "2024-12-31 23:59:59",
- "toUnixTimestamp": true
- }
- ]
- }
- ]
- }
- ### advertisement event user page
- POST {{host}}/central/admin/v1/advertisement/v1/event/user/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "page": 1,
- "pageSize": 50,
- "projectCode": "project_playlet",
- "tables": [
- {
- "filters": [
- {
- "column": "$app_platform",
- "operator": "EQUALS",
- "value": "1"
- },
- {
- "column": "$time",
- "operator": "RANGE_IN",
- "start": "2025-02-06 00:00:00",
- "end": "2025-02-06 23:59:59",
- "toUnixTimestamp": true
- },
- {
- "column": "$reg_time",
- "operator": "RANGE_IN",
- "start": "2025-02-06 00:00:00",
- "end": "2025-02-06 23:59:59"
- }
- ],
- "havingFields": [],
- "orderByFields": [
- {
- "column": "reg_time_max",
- "desc": true
- }
- ]
- },
- {
- "filters": [
- {
- "column": "$app_platform",
- "operator": "EQUALS",
- "value": "1"
- },
- {
- "column": "$time",
- "operator": "RANGE_IN",
- "start": "2025-02-06 00:00:00",
- "end": "2025-02-06 23:59:59",
- "toUnixTimestamp": true
- },
- {
- "column": "$reg_time",
- "operator": "RANGE_IN",
- "start": "2025-02-06 00:00:00",
- "end": "2025-02-06 23:59:59"
- }
- ],
- "havingFields": [],
- "orderByFields": []
- }
- ]
- }
- ### advertisement event user statistics
- POST {{host}}/central/admin/v1/advertisement/v1/event/user/statistics
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "projectCode": "project_playlet",
- "tables": [
- {
- "filters": [
- {
- "column": "$app_platform",
- "operator": "EQUALS",
- "value": "1"
- },
- {
- "column": "$time",
- "operator": "RANGE_IN",
- "start": "2025-02-06 00:00:00",
- "end": "2025-02-06 23:59:59",
- "toUnixTimestamp": true
- },
- {
- "column": "$reg_time",
- "operator": "RANGE_IN",
- "start": "2025-02-06 00:00:00",
- "end": "2025-02-06 23:59:59"
- }
- ],
- "havingFields": []
- },
- {
- "filters": [
- {
- "column": "$app_platform",
- "operator": "EQUALS",
- "value": "1"
- },
- {
- "column": "$time",
- "operator": "RANGE_IN",
- "start": "2025-02-06 00:00:00",
- "end": "2025-02-06 23:59:59",
- "toUnixTimestamp": true
- },
- {
- "column": "$reg_time",
- "operator": "RANGE_IN",
- "start": "2025-02-06 00:00:00",
- "end": "2025-02-06 23:59:59"
- }
- ],
- "havingFields": []
- }
- ]
- }
- ### advertisement event meta prop page
- POST {{host}}/central/admin/v1/event/meta/prop/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "page": 1,
- "pageSize": 1,
- "projectCode": "project_playlet"
- }
- ### advertisement event meta info page
- POST {{host}}/central/admin/v1/event/meta/info/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "page": 1,
- "pageSize": 1000,
- "projectCode": "common-project"
- }
- ### advertisement event meta info create
- POST {{host}}/central/admin/v1/event/meta/info/create
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "projectCode": "project_playlet",
- "alias": "$ad_shown",
- "name": "广告展示",
- "productId": "46",
- "eventType": "example_event_type",
- "accept": true,
- "description": "Example description for the event"
- }
- ### advertisement event meta info update
- POST {{host}}/central/admin/v1/event/meta/info/update
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "id": 123,
- "projectCode": "updated_project_code",
- "alias": "updated_alias",
- "name": "Updated Event Name",
- "productId": "project_playlet",
- "eventType": "updated_event_type",
- "accept": false,
- "description": "Updated description for the event",
- "createTime": "2024-01-01T00:00:00",
- "updateTime": "2024-01-01T00:00:00",
- "status": 1
- }
- ### advertisement event query_sql
- POST {{host}}/central/admin/v1/advertisement/v1/event/sql/query
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "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 + (1+2)",
- "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"
- ]
- },
- {
- "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
- }
- ### advertisement event analysis user retention
- POST {{host}}/central/admin/v1/advertisement/v1/event/analysis/user/retention
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "projectCode": "project_playlet",
- "offset": 7,
- "query_item_list": [
- {
- "projectCode": "ad_event",
- "event_name": "$ad_clicked",
- "custom_name": "广告加载.用户数",
- "target": {
- "name": "PresetAllCount",
- "field": "PresetAllCount"
- },
- "conditions": [
- ],
- "cond_logic": "AND"
- },
- {
- "projectCode": "project_playlet",
- "event_name": "$attribution",
- "custom_name": "App 启动",
- "target": {
- "name": "PresetAllCount",
- "field": "PresetAllCount"
- },
- "conditions": [],
- "cond_logic": "AND"
- }
- ],
- "group_by_list": [
- ],
- "global_conditions": [
- ],
- "global_cond_logic": "AND",
- "date_list": [
- {
- "start_date": "2025-01-09 00:00:00",
- "end_date": "2025-01-16 23:59:59"
- }
- ],
- "return_hierarchy_list": true,
- "calc_layer_y": true
- }
- ### advertisement event analysis template get
- POST {{host}}/central/admin/v1/event/analysis/template/get
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "id": "4"
- }
- ### advertisement event analysis template page
- POST {{host}}/central/admin/v1/event/analysis/template/page
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "page": 1,
- "pageSize": 10,
- "source": "presets",
- "status": 0
- }
- ### advertisement event analysis template create
- POST {{host}}/central/admin/v1/event/analysis/template/create
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "name": "test3",
- "type": "event",
- "source": "customize",
- "sourceId": "12",
- "remark": "This is an example template.",
- "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}"
- }
- ### advertisement event analysis template update
- POST {{host}}/central/admin/v1/event/analysis/template/update
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "id": 123,
- "projectCode": "updated_project_code",
- "alias": "updated_alias",
- "name": "Updated Event Name",
- "productId": "project_playlet",
- "eventType": "updated_event_type",
- "accept": false,
- "description": "Updated description for the event",
- "createTime": "2024-01-01T00:00:00",
- "updateTime": "2024-01-01T00:00:00",
- "status": 1
- }
- ### promotion report roi get
- POST {{host}}/central/admin/v1/promotion/report/roi/get
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "page": 1,
- "pageSize": 500,
- "appCode": null,
- "endDate": "2025-03-03 23:59:59",
- "startDate": "2025-03-03 00:00:00",
- "timeGranularity": "DAILY",
- "field": "total_income",
- "advertiserIds": [],
- "company": null,
- "multiDays": 7,
- "decimalPoint": 4
- }
- ### promotion report accuracy roi get
- POST {{host}}/central/admin/v1/promotion/report/roi/accuracy/get
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "page": 1,
- "pageSize": 500,
- "appCode": null,
- "endDate": "2025-03-03 23:59:59",
- "startDate": "2024-03-03 00:00:00",
- "timeGranularity": "DAILY",
- "field": "total_income",
- "advertiserIds": [],
- "company": null,
- "multiDays": 7,
- "decimalPoint": 4
- }
- ### promotion report roi templates
- POST {{host}}/central/admin/v1/promotion/report/field/roi/templates
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- }
- ### promotion overview data summary
- POST {{host}}/central/admin/v1/promotion/overview/data/summary
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "appCode": null,
- "endDate": "2025-02-14 23:59:59",
- "startDate": "2025-02-10 00:00:00",
- "company": null
- }
- ### promotion overview data dimension
- POST {{host}}/central/admin/v1/promotion/overview/data/dimension
- Content-Type: application/json
- Authorization: {{Authorization}}
- {
- "pageSize": 15,
- "appCode": null,
- "endDate": "2025-02-14 23:59:59",
- "startDate": "2025-02-10 00:00:00",
- "company": null,
- "dimension": "advertiser_id"
- }
|