Device UUID로 기여된 결과를 가져올 수 있습니다.
Attribution Result API는 Authorization Header로 AIRBRIDGE-API-KEY
와 AIRBRDGE-SDK-TOKEN
을 받을 수 있습니다. AIRBRIDGE-API-KEY
를 사용하는 경우 API Token
을 사용하고 AIRBRIDGE-SDK-TOKEN
를 사용하는 경우 SDK Token
을 사용합니다.
호출의 예시는 아래와 같습니다.
curl -H "Authorization: AIRBRIDGE-API-KEY {API-TOKEN}" https://api.airbridge.io
https://api.airbridge.io/attribution-result/v1/apps/{app_name}/mobile-app
기여 결과를 가져옵니다.
curl -X GET 'https://api.airbridge.io/attribution-result/v1/apps/{app_name}/mobile-app?device_uuid=f3fab994-baea-4b52-b190-5f023b6ae638' \
-H 'Accept-Language: ko' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer {AIRBRIDGE-API-TOKEN}'
{
"at": "2023-01-01T09:30:00.123Z",
"data": {
"attributedTerm": null,
"attributedAdGroup": "TEST_ADGROUP",
"attributedChannel": "website",
"attributedContent": null,
"attributedCampaign": "TEST_CAMPAIGN",
"attributedAdCreative": "TEST_ADCREATIVE",
"attributedSubPublisher": null,
"attributedSubSubPublisher1": null,
"attributedSubSubPublisher2": null,
"attributedSubSubPublisher3": null
}
}
{}
{
"result": "Invalid device_uuid"
}
{
"result": "invalid authorization header"
}
도움이 되었나요?