Channel | Time Zone |
Ad Account Time Zone | |
Ad Account Time Zone | |
TikTok | Ad Account Time Zone |
Kwai | Ad Account Time Zone |
Huawei(Global) | Ad Account Time Zone |
Apple | UTC+0 |
Mintegral | UTC+0 |
AppLovin | UTC+0 |
Unity | UTC+0 |
ironSource | UTC+0 |
Vungle | UTC+0 |
POST https://xmp-open.nativex.com/v1/media/account/report
Parameters | Type | Required | Instructions |
client_id | string | Y | Please contact xmp account manager to know |
timestamp | int | Y | unix timestamp when requested |
sign | string | Y | md5(client_secret+timestamp) |
start_date | string | Y | YYYY-MM-DD |
end_date | string | Y | YYYY-MM-DD |
media | string | Y | View Media Enumeration Value |
dimension | array | N | Returns the ad account dimension data by default, example: [‘date’], optional values: date (date) geo (region) campaign_id (campaign id ) campaign (campaign name) adset_id (ad set id ) adset (ad set name) ad_id (ad id, returns asset level for google) ad (ad name, returns asset level for google) product_name ( xmp product name ) app_platform (app platform) store_package_id (store id ) Note: When querying xmp product dimension data, you need to bind and associate the ad set with the xmp product in the background |
currency | string | N | Returns the currency of the advertising account on the media side if not passed, optional: CNY, USD, EUR (compatible with all lowercase) |
page | int | Y | page |
{
"client_id": "dev",
"timestamp": 1608776690,
"sign": "05d481dc241a7a1daa5b2a7fa2b51dc5",
"start_date": "2021-01-01",
"end_date": "2021-01-15",
"dimension": [//非必填
"date",
"geo"
],
"currency": "USD",//非必填
"page": 1
}
Parameter | Type | Instruction |
code | int | see error codes |
msg | string | message |
data | array | returned interface content |
data.list | array | returned data list |
data.page | int | page |
Parameter | Type | Instruction |
date | string | date |
media | string | media |
account_id | string | account_id |
geo | string | region |
campaign_id | string | campaign id |
campaign | string | campaign name |
adset_id | string | ad set id |
adset | string | ad set name |
ad_id | string | ad id |
ad | string | ad name |
product_name | string | xmp product name |
app_platform | string | app platform |
store_package_id | string | store id |
cost | float | cost |
currency | string | Return according to the incoming currency, and return the currency of the ad account on the media side if it is not transmitted |
impressions | int | impressions |
clicks | int | clicks |
conversions | int | conversions |
activations | int | activations |
purchases | int | purchase |
ctr | string | click through rate |
cpc | string | cost per click |
ecpm | float | effective cost per mille |
cvr | string | conversion rate |
cost_per_conversions | float | cost per conversion |
cost_per_purchase | float | cost per purchase |
purchase_rate | string | purchase rate |
cost_per_activation | float | cost per activation |
activation_rate | string | activation rate |
Parameter | Formula |
ctr | clicks/impressions*100% |
cpc | cost/click |
ecpm | cost/impression*1000 |
cvr | conversions/clicks*100% |
cost_per_conversions | cost/conversions |
cost_per_purchase | cost/purchases |
purchase_rate | purchases/activation*100% |
cost_per_activation | cost/activations |
activation_rate | activation/clicks*100% |