The Adsecurity API is organized around REST and uses built-in HTTP features. The main host for all requests is https://api.adsecurity.io and all requests and responses are formatted in JSON including errors.
All requests to the Adsecurity API must be authenticated using an API key. To authenticate, add a API-KEY
header to your request that contains your API Key.
For example:
curl -H "API-KEY: <YOUR-API-KEY>" -H "Content-Type: application/json" --url https://api.adsecurity.io/api/v2/publisher-view/654321abcd/offers
All requests require API-KEY
and Content-Type
in the header. Requests made without authentication will fail.
When submitting data to a resource via POST
, or PATCH
, you must submit your payload in JSON.
{
"property" : "value"
}
All responses are returned in JSON format as specificed in the Content-Type
header. Conventional HTTP response codes are used by the API to indicate the success or failure of an API request. Codes in the 2xx
range indicate success whereas codes in the 4xx
or 5xx
range indicate failure.
You are also able to use jsonapi specification to modify the GET response as follows:
To filter the resul you can simply add filter
in the url query params: ?filter[type]=this-type&filter[name]=this-name
. Plus, you also can do a text search by having ?query=<keyword>
in GET methods.
To return specific fields you can add fields
in the url query params like: fields=id,name
You can sort the result by adding sort
query params like sort=-type,name
. -
will act for descending
To paginate the result you need to provide page
query param like page[number]=1&page[size]=8
Code | Description |
---|---|
200 | A response code for successful HTTP requests |
201 | The request has been fulfilled resulting in the creation of a new resource |
204 | The successful response for deleting a resource |
400 | Bad Request: The request could not be handled correctly, usually because of missing or malformed request |
401 | Unauthorized: The request could not be accepted, usually because the API Key is missing from the request |
403 | Forbidden: The request contained valid data and was understood by the server, but the server is refusing action |
404 | Not Found: The resource could not be found |
{- "data": [
- {
- "active": true,
- "address": "string",
- "archived": true,
- "asp_integration_id": "string",
- "country": "string",
- "created_at": "string",
- "description": "string",
- "email": "string",
- "first_name": "string",
- "id": "string",
- "incremental_id": 0,
- "last_name": "string",
- "last_updated_by": "string",
- "login_meta": {
- "first_login_ip": "string",
- "last_login_at": "string",
- "last_login_country": "string",
- "last_login_ip": "string"
}, - "manager_email": "string",
- "manager_id": "string",
- "manager_name": "string",
- "messenger": "string",
- "name": "string",
- "name_with_id": "string",
- "organization": "string",
- "phone": "string",
- "tags": [
- "string"
], - "tags_meta": [
- {
- "color": "string",
- "created_at": "string",
- "id": "string",
- "last_updated_by": "string",
- "name": "string",
- "organization": "string",
- "updated_at": "string"
}
], - "updated_at": "string",
- "website": "string"
}
], - "meta": {
- "links": {
- "next": {
- "page[after]": "string",
- "page[before]": "string",
- "page[number]": 0,
- "page[size]": 0
}, - "prev": {
- "page[after]": "string",
- "page[before]": "string",
- "page[number]": 0,
- "page[size]": 0
}
}, - "total_count": 0,
- "total_page": 0
}
}
You can create an advertiser.
A JSON object containing advertiser information
active | boolean |
address | string |
archived | boolean |
country | string |
description | string <= 255 characters The description of the advertiser. |
email required | string |
first_name | string |
last_name | string |
messenger | string |
name required | string |
phone | string |
tags | Array of strings <= 50 items |
website | string |
{- "active": true,
- "address": "string",
- "archived": true,
- "country": "string",
- "description": "string",
- "email": "string",
- "first_name": "string",
- "last_name": "string",
- "messenger": "string",
- "name": "string",
- "phone": "string",
- "tags": [
- "string"
], - "website": "string"
}
{- "created_item_id": "string"
}
You can bulk delete advertisers.
An array of advertiser IDs to delete
data | Array of strings |
{- "data": [
- "string"
]
}
{ }
You can bulk update the advertisers status.
An array of advertiser IDs to update and the new status
active | boolean |
data | Array of strings |
{- "active": true,
- "data": [
- "string"
]
}
{ }
You can read an advertiser.
advertiserID required | string The Advertiser ID |
{- "data": {
- "active": true,
- "address": "string",
- "archived": true,
- "asp_integration_id": "string",
- "country": "string",
- "created_at": "string",
- "description": "string",
- "email": "string",
- "first_name": "string",
- "id": "string",
- "incremental_id": 0,
- "last_name": "string",
- "last_updated_by": "string",
- "login_meta": {
- "first_login_ip": "string",
- "last_login_at": "string",
- "last_login_country": "string",
- "last_login_ip": "string"
}, - "manager_email": "string",
- "manager_id": "string",
- "manager_name": "string",
- "messenger": "string",
- "name": "string",
- "name_with_id": "string",
- "organization": "string",
- "phone": "string",
- "tags": [
- "string"
], - "tags_meta": [
- {
- "color": "string",
- "created_at": "string",
- "id": "string",
- "last_updated_by": "string",
- "name": "string",
- "organization": "string",
- "updated_at": "string"
}
], - "updated_at": "string",
- "website": "string"
}
}
You can update an advertiser.
advertiserID required | string The Advertiser ID |
A JSON object containing advertiser information
active | boolean |
address | string |
country | string |
description | string |
string | |
first_name | string |
last_name | string |
manager_id | string |
messenger | string |
name | string |
phone | string |
tags | Array of strings |
website | string |
{- "active": true,
- "address": "string",
- "country": "string",
- "description": "string",
- "email": "string",
- "first_name": "string",
- "last_name": "string",
- "manager_id": "string",
- "messenger": "string",
- "name": "string",
- "phone": "string",
- "tags": [
- "string"
], - "website": "string"
}
{ }
{- "data": [
- {
- "active": true,
- "address": "string",
- "api_access_enabled": true,
- "api_key": "string",
- "archived": true,
- "asp_integration_id": "string",
- "avatar_color": "#6F5DE6",
- "company_name": "string",
- "conversion_throttle_additional_filters": {
- "sub_id": {
- "operator": "is any of",
- "values": [
- "string"
]
}, - "sub_id_2": {
- "operator": "is any of",
- "values": [
- "string"
]
}, - "sub_id_3": {
- "operator": "is any of",
- "values": [
- "string"
]
}, - "sub_id_4": {
- "operator": "is any of",
- "values": [
- "string"
]
}, - "sub_id_5": {
- "operator": "is any of",
- "values": [
- "string"
]
}, - "sub_id_6": {
- "operator": "is any of",
- "values": [
- "string"
]
}
}, - "conversion_throttle_enabled": true,
- "conversion_throttle_percentage": 100,
- "conversion_throttle_status": "Rejected",
- "countries": [
- "string"
], - "created_at": "string",
- "description": "string",
- "email": "string",
- "first_name": "string",
- "fraud_visibility_enabled": true,
- "id": "string",
- "incremental_id": 0,
- "last_name": "string",
- "last_updated_by": "string",
- "login_meta": {
- "first_login_ip": "string",
- "last_login_at": "string",
- "last_login_country": "string",
- "last_login_ip": "string"
}, - "manager_email": "string",
- "manager_id": "string",
- "manager_name": "string",
- "messenger": "string",
- "name": "string",
- "name_with_id": "string",
- "organization": "string",
- "pending": true,
- "phone": "string",
- "postback_manager_enabled": true,
- "promotional_method": [
- "Content"
], - "publisher_wizard_completed": true,
- "signup_meta": {
- "country": "string",
- "ip": "string",
- "signup_source": "Adsecurity"
}, - "tags": [
- "string"
], - "tags_meta": [
- {
- "color": "string",
- "created_at": "string",
- "id": "string",
- "last_updated_by": "string",
- "name": "string",
- "organization": "string",
- "updated_at": "string"
}
], - "theme": "light",
- "timezone": "UTC",
- "updated_at": "string",
- "website": "string"
}
], - "meta": {
- "links": {
- "next": {
- "page[after]": "string",
- "page[before]": "string",
- "page[number]": 0,
- "page[size]": 0
}, - "prev": {
- "page[after]": "string",
- "page[before]": "string",
- "page[number]": 0,
- "page[size]": 0
}
}, - "total_count": 0,
- "total_page": 0
}
}
You can create an publisher.
A JSON object containing publisher information
active | boolean |
address | string |
api_access_enabled | boolean |
api_key | string |
archived | boolean |
avatar_color | string Default: "#6F5DE6" |
company_name | string |
object The additional filters to be used when throttling conversions for this publisher. | |
conversion_throttle_enabled | boolean If this is true, conversions for this publisher will be throttled according to throttle settings. |
conversion_throttle_percentage | integer <= 100 The chance that conversions for this publisher will be throttled according to this percentage. |
conversion_throttle_status | string Enum: "Rejected" "Pending" The status to be used when conversions are throttled for this publisher. |
countries | Array of strings |
description | string <= 255 characters |
email required | string |
first_name | string |
fraud_visibility_enabled | boolean |
last_name | string |
messenger | string |
name required | string |
pending | boolean |
phone | string |
postback_manager_enabled | boolean |
promotional_method | Array of strings Items Enum: "Content" "DirectDisplay" "Email" "Incent" "Influencers" "MediaBuying" "NativeAds" "OwedOperated" "Partner" "PushMarketing" "SearchMarketing" "SMSMarketing" "SocialMedia" "Surveys" "VideoPromotions" |
publisher_wizard_completed | boolean |
tags | Array of strings <= 50 items |
theme | string Default: "light" Enum: "light" "dark" "auto" |
timezone | string Default: "UTC" |
website | string |
{- "active": true,
- "address": "string",
- "api_access_enabled": true,
- "api_key": "string",
- "archived": true,
- "avatar_color": "#6F5DE6",
- "company_name": "string",
- "conversion_throttle_additional_filters": {
- "sub_id": {
- "operator": "is any of",
- "values": [
- "string"
]
}, - "sub_id_2": {
- "operator": "is any of",
- "values": [
- "string"
]
}, - "sub_id_3": {
- "operator": "is any of",
- "values": [
- "string"
]
}, - "sub_id_4": {
- "operator": "is any of",
- "values": [
- "string"
]
}, - "sub_id_5": {
- "operator": "is any of",
- "values": [
- "string"
]
}, - "sub_id_6": {
- "operator": "is any of",
- "values": [
- "string"
]
}
}, - "conversion_throttle_enabled": true,
- "conversion_throttle_percentage": 100,
- "conversion_throttle_status": "Rejected",
- "countries": [
- "string"
], - "description": "string",
- "email": "string",
- "first_name": "string",
- "fraud_visibility_enabled": true,
- "last_name": "string",
- "messenger": "string",
- "name": "string",
- "pending": true,
- "phone": "string",
- "postback_manager_enabled": true,
- "promotional_method": [
- "Content"
], - "publisher_wizard_completed": true,
- "tags": [
- "string"
], - "theme": "light",
- "timezone": "UTC",
- "website": "string"
}
{- "created_item_id": "string"
}
You can bulk delete publishers.
An array of publisher IDs to delete
data | Array of strings |
{- "data": [
- "string"
]
}
{ }
You can bulk update the publishers status.
An array of publisher IDs to update and the new status
active | boolean |
data | Array of strings |
{- "active": true,
- "data": [
- "string"
]
}
{ }
You can read an publisher.
publisherID required | string The Publisher ID |
{- "data": {
- "active": true,
- "address": "string",
- "api_access_enabled": true,
- "api_key": "string",
- "archived": true,
- "asp_integration_id": "string",
- "avatar_color": "#6F5DE6",
- "company_name": "string",
- "conversion_throttle_additional_filters": {
- "sub_id": {
- "operator": "is any of",
- "values": [
- "string"
]
}, - "sub_id_2": {
- "operator": "is any of",
- "values": [
- "string"
]
}, - "sub_id_3": {
- "operator": "is any of",
- "values": [
- "string"
]
}, - "sub_id_4": {
- "operator": "is any of",
- "values": [
- "string"
]
}, - "sub_id_5": {
- "operator": "is any of",
- "values": [
- "string"
]
}, - "sub_id_6": {
- "operator": "is any of",
- "values": [
- "string"
]
}
}, - "conversion_throttle_enabled": true,
- "conversion_throttle_percentage": 100,
- "conversion_throttle_status": "Rejected",
- "countries": [
- "string"
], - "created_at": "string",
- "description": "string",
- "email": "string",
- "first_name": "string",
- "fraud_visibility_enabled": true,
- "id": "string",
- "incremental_id": 0,
- "last_name": "string",
- "last_updated_by": "string",
- "login_meta": {
- "first_login_ip": "string",
- "last_login_at": "string",
- "last_login_country": "string",
- "last_login_ip": "string"
}, - "manager_email": "string",
- "manager_id": "string",
- "manager_name": "string",
- "messenger": "string",
- "name": "string",
- "name_with_id": "string",
- "organization": "string",
- "pending": true,
- "phone": "string",
- "postback_manager_enabled": true,
- "promotional_method": [
- "Content"
], - "publisher_wizard_completed": true,
- "signup_meta": {
- "country": "string",
- "ip": "string",
- "signup_source": "Adsecurity"
}, - "tags": [
- "string"
], - "tags_meta": [
- {
- "color": "string",
- "created_at": "string",
- "id": "string",
- "last_updated_by": "string",
- "name": "string",
- "organization": "string",
- "updated_at": "string"
}
], - "theme": "light",
- "timezone": "UTC",
- "updated_at": "string",
- "website": "string"
}
}
You can update an publisher.
publisherID required | string The Publisher ID |
A JSON object containing publisher information
active | boolean |
address | string |
api_access_enabled | boolean |
avatar_color | string |
company_name | string |
object (csapi.AdditionalThrottleRateFilters) | |
conversion_throttle_enabled | boolean |
conversion_throttle_percentage | integer |
conversion_throttle_status | string Enum: "Rejected" "Pending" |
countries | Array of strings |
description | string |
string | |
first_name | string |
fraud_visibility_enabled | boolean |
last_name | string |
manager_id | string |
messenger | string |
name | string |
pending | boolean |
phone | string |
postback_manager_enabled | boolean |
promotional_method | Array of strings Items Enum: "Content" "DirectDisplay" "Email" "Incent" "Influencers" "MediaBuying" "NativeAds" "OwedOperated" "Partner" "PushMarketing" "SearchMarketing" "SMSMarketing" "SocialMedia" "Surveys" "VideoPromotions" |
tags | Array of strings |
theme | string |
timezone | string |
website | string |
{- "active": true,
- "address": "string",
- "api_access_enabled": true,
- "avatar_color": "string",
- "company_name": "string",
- "conversion_throttle_additional_filters": {
- "sub_id": {
- "operator": "is any of",
- "values": [
- "string"
]
}, - "sub_id_2": {
- "operator": "is any of",
- "values": [
- "string"
]
}, - "sub_id_3": {
- "operator": "is any of",
- "values": [
- "string"
]
}, - "sub_id_4": {
- "operator": "is any of",
- "values": [
- "string"
]
}, - "sub_id_5": {
- "operator": "is any of",
- "values": [
- "string"
]
}, - "sub_id_6": {
- "operator": "is any of",
- "values": [
- "string"
]
}
}, - "conversion_throttle_enabled": true,
- "conversion_throttle_percentage": 0,
- "conversion_throttle_status": "Rejected",
- "countries": [
- "string"
], - "description": "string",
- "email": "string",
- "first_name": "string",
- "fraud_visibility_enabled": true,
- "last_name": "string",
- "manager_id": "string",
- "messenger": "string",
- "name": "string",
- "pending": true,
- "phone": "string",
- "postback_manager_enabled": true,
- "promotional_method": [
- "Content"
], - "tags": [
- "string"
], - "theme": "string",
- "timezone": "string",
- "website": "string"
}
{ }
You can list all offers within an integration
integrationID required | string The Integration ID |
{- "data": [
- {
- "active": true,
- "advertiser": {
- "active": true,
- "incremental_id": 0,
- "name": "string",
- "name_with_id": "string"
}, - "advertiser_id": 0,
- "allow_duplicate_conversions": true,
- "approved_publisher_ids": [
- 0
], - "approved_publishers": [
- {
- "id": "string",
- "name": "string"
}
], - "archived": true,
- "auth_secure_code": "string",
- "block_on_reject": true,
- "capping": {
- "block_clicks": true,
- "block_impressions": true,
- "click_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "click_capping_enabled": true,
- "conversion_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "conversion_capping_enabled": true,
- "event_capping_enabled": true,
- "event_capping_per_event_id": {
- "property1": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "property2": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}
}, - "impression_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "impression_capping_enabled": true,
- "payout_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "payout_capping_enabled": true,
- "revenue_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "revenue_capping_enabled": true,
- "soft_capping_enabled": true,
- "timezone": "UTC"
}, - "click_tracking_links": {
- "js": "string",
- "standard": "string"
}, - "conversion_name": "string",
- "created_at": "string",
- "currency": "string",
- "deep_link_enabled": true,
- "default_offer_landing_page": {
- "preview_url": "string",
- "redirect_url": "string"
}, - "default_payout": {
- "payout": 0,
- "payout_percent": 100,
- "payout_type": "CPA",
- "revenue": 0,
- "revenue_percent": 100,
- "revenue_type": "RPA"
}, - "description": "string",
- "end_date": "2019-08-24T14:15:22Z",
- "fallback_url": "string",
- "fraud_filter_group": {
- "active": true,
- "click_filter_preset_id": 0,
- "click_filter_settings": {
- "bot": {
- "premium_ip_check_enabled": true,
- "reject_empty_browser_language": true
}, - "bot_enabled": true,
- "click_flooding": {
- "expires_in_seconds": 1,
- "extra_expires_in_seconds_when_rejected": 1,
- "max_duplicate_ip": 1,
- "properties": {
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true
}
}, - "click_flooding_enabled": true,
- "conversion_rejection_threshold": {
- "by_sub_id": true,
- "lookback_hours": 0,
- "minimum_total": 1,
- "threshold": 100
}, - "conversion_rejection_threshold_enabled": true,
- "device_id": {
- "reject_empty_value": true
}, - "device_id_enabled": true,
- "duplicate_user": [
- {
- "enable_duplicate_device_id": true,
- "enable_duplicate_fingerprint": true,
- "enable_duplicate_ip": true,
- "enable_duplicate_ipv6": true,
- "enable_duplicate_uuid": true,
- "expires_in_seconds": 1,
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true,
- "max_duplicates": 1
}
], - "duplicate_user_enabled": true,
- "high_conversion_rate": {
- "block_clicks": true,
- "check_by_sub_id": true,
- "lookback_times": {
- "property1": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}, - "property2": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}
}
}, - "high_conversion_rate_enabled": true,
- "isp": {
- "invert": true,
- "keywords": [
- "string"
]
}, - "isp_enabled": true,
- "keyword": {
- "expires_in_seconds": 1,
- "keywords": [
- "string"
], - "max_duplicate_allowed": 1,
- "properties": {
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true
}
}, - "keyword_enabled": true,
- "low_conversion_rate": {
- "block_clicks": true,
- "check_by_sub_id": true,
- "lookback_times": {
- "property1": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}, - "property2": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}
}
}, - "low_conversion_rate_enabled": true,
- "old_browser": {
- "browsers": {
- "property1": "string",
- "property2": "string"
}, - "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "old_browser_enabled": true,
- "old_os": {
- "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "oses": {
- "property1": "string",
- "property2": "string"
}, - "threshold_percentage": 100
}, - "old_os_enabled": true,
- "parameter": {
- "configs": {
- "property1": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}, - "property2": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}
}
}, - "parameter_enabled": true,
- "referer": {
- "categories": [
- "oneof=fraud"
], - "invert": true,
- "keywords": [
- "string"
], - "reject_empty_value": true
}, - "referer_enabled": true,
- "sub_id_validity_check": {
- "is_integer": true,
- "max_length": 50,
- "max_unique_threshold": 0,
- "min_length": 0,
- "unified_sub_id": "string"
}, - "sub_id_validity_check_enabled": true,
- "vpn": {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "residential_vpn_check": true,
- "residential_vpn_check_custom_settings": {
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "residential_vpn_check_custom_settings_enabled": true,
- "threshold_percentage": 100
}, - "vpn_enabled": true
}, - "conversion_filter_preset_id": 0,
- "conversion_filter_settings": {
- "bot": {
- "premium_ip_check_enabled": true,
- "reject_empty_browser_language": true
}, - "bot_enabled": true,
- "click_spam": [
- {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "max_session_time_seconds": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}
], - "click_spam_enabled": true,
- "device_id": {
- "reject_empty_value": true
}, - "device_id_enabled": true,
- "duplicate_user": [
- {
- "enable_duplicate_device_id": true,
- "enable_duplicate_fingerprint": true,
- "enable_duplicate_ip": true,
- "enable_duplicate_ipv6": true,
- "enable_duplicate_uuid": true,
- "expires_in_seconds": 1,
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true,
- "max_duplicates": 1
}
], - "duplicate_user_enabled": true,
- "high_conversion_rate": {
- "block_clicks": true,
- "check_by_sub_id": true,
- "lookback_times": {
- "property1": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}, - "property2": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}
}
}, - "high_conversion_rate_enabled": true,
- "low_conversion_rate": {
- "block_clicks": true,
- "check_by_sub_id": true,
- "lookback_times": {
- "property1": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}, - "property2": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}
}
}, - "low_conversion_rate_enabled": true,
- "low_session_time_anomaly": [
- {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "min_session_time_seconds": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}
], - "low_session_time_anomaly_enabled": true,
- "maximum_session_time": {
- "max_session_time_seconds": 0
}, - "maximum_session_time_enabled": true,
- "minimum_session_time": {
- "min_session_time_seconds": 0
}, - "minimum_session_time_enabled": true,
- "old_browser": {
- "browsers": {
- "property1": "string",
- "property2": "string"
}, - "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "old_browser_enabled": true,
- "old_os": {
- "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "oses": {
- "property1": "string",
- "property2": "string"
}, - "threshold_percentage": 100
}, - "old_os_enabled": true,
- "parameter": {
- "configs": {
- "property1": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}, - "property2": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}
}
}, - "parameter_enabled": true,
- "referer": {
- "categories": [
- "oneof=fraud"
], - "invert": true,
- "keywords": [
- "string"
], - "reject_empty_value": true
}, - "referer_enabled": true,
- "smart_screen_ai": {
- "prompt": "string"
}, - "smart_screen_ai_enabled": true,
- "sub_id_validity_check": {
- "is_integer": true,
- "max_length": 50,
- "max_unique_threshold": 0,
- "min_length": 0,
- "unified_sub_id": "string"
}, - "sub_id_validity_check_enabled": true,
- "third_party_rejection": {
- "rejected_keywords": [
- "string"
]
}, - "third_party_rejection_enabled": true,
- "vpn": {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "residential_vpn_check": true,
- "residential_vpn_check_custom_settings": {
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "residential_vpn_check_custom_settings_enabled": true,
- "threshold_percentage": 100
}, - "vpn_enabled": true,
- "wrong_install_time": {
- "time_delta_tolerance_seconds": 999
}, - "wrong_install_time_enabled": true
}, - "created_at": "string",
- "description": "string",
- "id": "string",
- "impression_filter_settings": {
- "bot": {
- "premium_ip_check_enabled": true,
- "reject_empty_browser_language": true
}, - "bot_enabled": true,
- "device_id": {
- "reject_empty_value": true
}, - "device_id_enabled": true,
- "impression_flooding": {
- "expires_in_seconds": 1,
- "extra_expires_in_seconds_when_rejected": 1,
- "max_duplicate_ip": 1,
- "properties": {
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true
}
}, - "impression_flooding_enabled": true,
- "isp": {
- "invert": true,
- "keywords": [
- "string"
]
}, - "isp_enabled": true,
- "keyword": {
- "expires_in_seconds": 1,
- "keywords": [
- "string"
], - "max_duplicate_allowed": 1,
- "properties": {
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true
}
}, - "keyword_enabled": true,
- "old_browser": {
- "browsers": {
- "property1": "string",
- "property2": "string"
}, - "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "old_browser_enabled": true,
- "old_os": {
- "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "oses": {
- "property1": "string",
- "property2": "string"
}, - "threshold_percentage": 100
}, - "old_os_enabled": true,
- "parameter": {
- "configs": {
- "property1": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}, - "property2": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}
}
}, - "parameter_enabled": true,
- "site_url": {
- "categories": [
- "oneof=fraud"
], - "invert": true,
- "keywords": [
- "string"
], - "reject_empty_value": true
}, - "site_url_enabled": true,
- "sub_id_validity_check": {
- "is_integer": true,
- "max_length": 50,
- "max_unique_threshold": 0,
- "min_length": 0,
- "unified_sub_id": "string"
}, - "sub_id_validity_check_enabled": true,
- "user_frequency": [
- {
- "enable_duplicate_device_id": true,
- "enable_duplicate_fingerprint": true,
- "enable_duplicate_ip": true,
- "enable_duplicate_ipv6": true,
- "enable_duplicate_uuid": true,
- "expires_in_seconds": 1,
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true,
- "max_duplicates": 1
}
], - "user_frequency_enabled": true,
- "vpn": {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "residential_vpn_check": true,
- "residential_vpn_check_custom_settings": {
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "residential_vpn_check_custom_settings_enabled": true,
- "threshold_percentage": 100
}, - "vpn_enabled": true
}, - "integration": "string",
- "last_updated_by": "string",
- "monitoring_mode": true,
- "name": "string",
- "name_with_id": "string",
- "organization": "string",
- "rtb_enabled": true,
- "tags": [
- "string"
], - "tags_meta": [
- {
- "color": "string",
- "created_at": "string",
- "id": "string",
- "last_updated_by": "string",
- "name": "string",
- "organization": "string",
- "updated_at": "string"
}
], - "updated_at": "string",
- "used_by_offers": [
- "string"
]
}, - "fraud_filter_group_id": "string",
- "id": "string",
- "impression_forwarding_enabled": true,
- "impression_forwarding_url": "string",
- "incremental_id": 0,
- "integration": "string",
- "last_updated_by": "string",
- "manually_approve_conversions": true,
- "name": "string",
- "name_with_id": "string",
- "offer_group": "string",
- "offer_preview_enabled": true,
- "optional_landing_pages": [
- {
- "active": true,
- "archived": true,
- "created_at": "string",
- "id": "string",
- "incremental_id": 0,
- "integration": "string",
- "last_updated_by": "string",
- "name": "string",
- "name_with_id": "string",
- "offer_id": "string",
- "organization": "string",
- "preview_url": "string",
- "redirect_url": "string",
- "updated_at": "string"
}
], - "organization": "string",
- "parallel_tracking_enabled": true,
- "parallel_tracking_url": "string",
- "primary_domain": "string",
- "secure_code": "string",
- "start_date": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "tags_meta": [
- {
- "color": "string",
- "created_at": "string",
- "id": "string",
- "last_updated_by": "string",
- "name": "string",
- "organization": "string",
- "updated_at": "string"
}
], - "targeting_group": {
- "active": true,
- "click_targeting_settings": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "conversion_targeting_settings": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "created_at": "string",
- "description": "string",
- "id": "string",
- "impression_targeting_settings": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "integration": "string",
- "last_updated_by": "string",
- "name": "string",
- "organization": "string",
- "related_offers": [
- {
- "id": "string",
- "name": "string"
}
], - "updated_at": "string"
}, - "targeting_group_id": "string",
- "targeting_simple": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "targeting_simple_enabled": true,
- "terms_and_conditions": "string",
- "terms_and_conditions_agreed_list": [
- 0
], - "terms_and_conditions_enabled": true,
- "updated_at": "string",
- "view_through_attribution_enabled": true,
- "visibility": "Public"
}
], - "meta": {
- "links": {
- "next": {
- "page[after]": "string",
- "page[before]": "string",
- "page[number]": 0,
- "page[size]": 0
}, - "prev": {
- "page[after]": "string",
- "page[before]": "string",
- "page[number]": 0,
- "page[size]": 0
}
}, - "total_count": 0,
- "total_page": 0
}
}
You can create an offer in an integration.
integrationID required | string The Integration ID |
A JSON object containing offer information
active | boolean If offer is inactive, there will be no clicks or conversions recorded. |
advertiser_id required | integer The advertiser incremental ID that this offer belongs to. |
allow_duplicate_conversions | boolean |
approved_publisher_ids | Array of integers unique List of allowed publishers, ignored if AllowAll is enabled |
archived | boolean |
block_on_reject | boolean If this is true and the click is rejected, the user will get a blocked message instead of a redirect. |
object (csapi.Capping) | |
conversion_name | string The conversion name of this offer. |
currency | string |
deep_link_enabled | boolean |
object Offer Default Preview URL and Offer Redirect URL | |
object (csapi.PayoutConfig) | |
description | string The description of this offer. |
end_date | string <date-time> The offer is not valid after this time. |
fallback_url | string If the click is rejected, the user will be redirected to this URL. |
fraud_filter_group_id | string |
impression_forwarding_enabled | boolean When enabled, each impression will execute an http request to the impression_forwarding_url. |
impression_forwarding_url | string |
manually_approve_conversions | boolean |
name required | string The name of the offer. |
offer_group | string The offer group that this offers belongs to. |
offer_preview_enabled | boolean If this is true and the click is rejected, it will redirect to the offer landing page preview url. |
parallel_tracking_enabled | boolean If this is true, the parallel tracking url will be used if the click is approved. |
parallel_tracking_url | string If the click is approved, a postback will be sent to this URL. |
primary_domain | string |
secure_code | string SecureCode is a unique code that is used to authorize conversions and events. If this is empty, conversion and events will require the Integration global secure code. |
start_date | string <date-time> The offer is only valid at this time. |
tags | Array of strings <= 50 items |
targeting_group_id | string If targeting_simple_enabled is false (default), the targeting group ID can be set. |
object (csapi.TargetingSettings) | |
targeting_simple_enabled | boolean If enabled, the simple targeting settings will be used. |
terms_and_conditions | string |
terms_and_conditions_agreed_list | Array of integers unique |
terms_and_conditions_enabled | boolean Terms and conditions settings of the offer |
view_through_attribution_enabled | boolean When enabled, view-through attribution will be enabled for this offer. |
visibility | string Default: "Public" Enum: "Public" "Private" "Requires_Approval" If this enabled, all publishers are allowed |
{- "active": true,
- "advertiser_id": 0,
- "allow_duplicate_conversions": true,
- "approved_publisher_ids": [
- 0
], - "archived": true,
- "block_on_reject": true,
- "capping": {
- "block_clicks": true,
- "block_impressions": true,
- "click_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "click_capping_enabled": true,
- "conversion_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "conversion_capping_enabled": true,
- "event_capping_enabled": true,
- "event_capping_per_event_id": {
- "property1": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "property2": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}
}, - "impression_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "impression_capping_enabled": true,
- "payout_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "payout_capping_enabled": true,
- "revenue_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "revenue_capping_enabled": true,
- "soft_capping_enabled": true,
- "timezone": "UTC"
}, - "conversion_name": "string",
- "currency": "string",
- "deep_link_enabled": true,
- "default_offer_landing_page": {
- "preview_url": "string",
- "redirect_url": "string"
}, - "default_payout": {
- "payout": 0,
- "payout_percent": 100,
- "payout_type": "CPA",
- "revenue": 0,
- "revenue_percent": 100,
- "revenue_type": "RPA"
}, - "description": "string",
- "end_date": "2019-08-24T14:15:22Z",
- "fallback_url": "string",
- "fraud_filter_group_id": "string",
- "impression_forwarding_enabled": true,
- "impression_forwarding_url": "string",
- "manually_approve_conversions": true,
- "name": "string",
- "offer_group": "string",
- "offer_preview_enabled": true,
- "parallel_tracking_enabled": true,
- "parallel_tracking_url": "string",
- "primary_domain": "string",
- "secure_code": "string",
- "start_date": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "targeting_group_id": "string",
- "targeting_simple": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "targeting_simple_enabled": true,
- "terms_and_conditions": "string",
- "terms_and_conditions_agreed_list": [
- 0
], - "terms_and_conditions_enabled": true,
- "view_through_attribution_enabled": true,
- "visibility": "Public"
}
{- "created_item_id": "string"
}
You can bulk delete offers.
integrationID required | string The Integration ID |
An array of offer IDs to delete
data | Array of strings |
{- "data": [
- "string"
]
}
{ }
You can bulk update the offers status.
integrationID required | string The Integration ID |
An array of offer IDs to update and the new status
active | boolean |
data | Array of strings |
{- "active": true,
- "data": [
- "string"
]
}
{ }
You can read an offer in an integration.
integrationID required | string The Integration ID |
offerID required | string The Offer ID |
{- "data": {
- "active": true,
- "advertiser": {
- "active": true,
- "incremental_id": 0,
- "name": "string",
- "name_with_id": "string"
}, - "advertiser_id": 0,
- "allow_duplicate_conversions": true,
- "approved_publisher_ids": [
- 0
], - "approved_publishers": [
- {
- "id": "string",
- "name": "string"
}
], - "archived": true,
- "auth_secure_code": "string",
- "block_on_reject": true,
- "capping": {
- "block_clicks": true,
- "block_impressions": true,
- "click_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "click_capping_enabled": true,
- "conversion_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "conversion_capping_enabled": true,
- "event_capping_enabled": true,
- "event_capping_per_event_id": {
- "property1": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "property2": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}
}, - "impression_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "impression_capping_enabled": true,
- "payout_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "payout_capping_enabled": true,
- "revenue_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "revenue_capping_enabled": true,
- "soft_capping_enabled": true,
- "timezone": "UTC"
}, - "click_tracking_links": {
- "js": "string",
- "standard": "string"
}, - "conversion_name": "string",
- "created_at": "string",
- "currency": "string",
- "deep_link_enabled": true,
- "default_offer_landing_page": {
- "preview_url": "string",
- "redirect_url": "string"
}, - "default_payout": {
- "payout": 0,
- "payout_percent": 100,
- "payout_type": "CPA",
- "revenue": 0,
- "revenue_percent": 100,
- "revenue_type": "RPA"
}, - "description": "string",
- "end_date": "2019-08-24T14:15:22Z",
- "fallback_url": "string",
- "fraud_filter_group": {
- "active": true,
- "click_filter_preset_id": 0,
- "click_filter_settings": {
- "bot": {
- "premium_ip_check_enabled": true,
- "reject_empty_browser_language": true
}, - "bot_enabled": true,
- "click_flooding": {
- "expires_in_seconds": 1,
- "extra_expires_in_seconds_when_rejected": 1,
- "max_duplicate_ip": 1,
- "properties": {
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true
}
}, - "click_flooding_enabled": true,
- "conversion_rejection_threshold": {
- "by_sub_id": true,
- "lookback_hours": 0,
- "minimum_total": 1,
- "threshold": 100
}, - "conversion_rejection_threshold_enabled": true,
- "device_id": {
- "reject_empty_value": true
}, - "device_id_enabled": true,
- "duplicate_user": [
- {
- "enable_duplicate_device_id": true,
- "enable_duplicate_fingerprint": true,
- "enable_duplicate_ip": true,
- "enable_duplicate_ipv6": true,
- "enable_duplicate_uuid": true,
- "expires_in_seconds": 1,
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true,
- "max_duplicates": 1
}
], - "duplicate_user_enabled": true,
- "high_conversion_rate": {
- "block_clicks": true,
- "check_by_sub_id": true,
- "lookback_times": {
- "property1": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}, - "property2": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}
}
}, - "high_conversion_rate_enabled": true,
- "isp": {
- "invert": true,
- "keywords": [
- "string"
]
}, - "isp_enabled": true,
- "keyword": {
- "expires_in_seconds": 1,
- "keywords": [
- "string"
], - "max_duplicate_allowed": 1,
- "properties": {
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true
}
}, - "keyword_enabled": true,
- "low_conversion_rate": {
- "block_clicks": true,
- "check_by_sub_id": true,
- "lookback_times": {
- "property1": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}, - "property2": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}
}
}, - "low_conversion_rate_enabled": true,
- "old_browser": {
- "browsers": {
- "property1": "string",
- "property2": "string"
}, - "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "old_browser_enabled": true,
- "old_os": {
- "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "oses": {
- "property1": "string",
- "property2": "string"
}, - "threshold_percentage": 100
}, - "old_os_enabled": true,
- "parameter": {
- "configs": {
- "property1": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}, - "property2": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}
}
}, - "parameter_enabled": true,
- "referer": {
- "categories": [
- "oneof=fraud"
], - "invert": true,
- "keywords": [
- "string"
], - "reject_empty_value": true
}, - "referer_enabled": true,
- "sub_id_validity_check": {
- "is_integer": true,
- "max_length": 50,
- "max_unique_threshold": 0,
- "min_length": 0,
- "unified_sub_id": "string"
}, - "sub_id_validity_check_enabled": true,
- "vpn": {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "residential_vpn_check": true,
- "residential_vpn_check_custom_settings": {
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "residential_vpn_check_custom_settings_enabled": true,
- "threshold_percentage": 100
}, - "vpn_enabled": true
}, - "conversion_filter_preset_id": 0,
- "conversion_filter_settings": {
- "bot": {
- "premium_ip_check_enabled": true,
- "reject_empty_browser_language": true
}, - "bot_enabled": true,
- "click_spam": [
- {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "max_session_time_seconds": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}
], - "click_spam_enabled": true,
- "device_id": {
- "reject_empty_value": true
}, - "device_id_enabled": true,
- "duplicate_user": [
- {
- "enable_duplicate_device_id": true,
- "enable_duplicate_fingerprint": true,
- "enable_duplicate_ip": true,
- "enable_duplicate_ipv6": true,
- "enable_duplicate_uuid": true,
- "expires_in_seconds": 1,
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true,
- "max_duplicates": 1
}
], - "duplicate_user_enabled": true,
- "high_conversion_rate": {
- "block_clicks": true,
- "check_by_sub_id": true,
- "lookback_times": {
- "property1": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}, - "property2": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}
}
}, - "high_conversion_rate_enabled": true,
- "low_conversion_rate": {
- "block_clicks": true,
- "check_by_sub_id": true,
- "lookback_times": {
- "property1": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}, - "property2": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}
}
}, - "low_conversion_rate_enabled": true,
- "low_session_time_anomaly": [
- {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "min_session_time_seconds": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}
], - "low_session_time_anomaly_enabled": true,
- "maximum_session_time": {
- "max_session_time_seconds": 0
}, - "maximum_session_time_enabled": true,
- "minimum_session_time": {
- "min_session_time_seconds": 0
}, - "minimum_session_time_enabled": true,
- "old_browser": {
- "browsers": {
- "property1": "string",
- "property2": "string"
}, - "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "old_browser_enabled": true,
- "old_os": {
- "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "oses": {
- "property1": "string",
- "property2": "string"
}, - "threshold_percentage": 100
}, - "old_os_enabled": true,
- "parameter": {
- "configs": {
- "property1": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}, - "property2": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}
}
}, - "parameter_enabled": true,
- "referer": {
- "categories": [
- "oneof=fraud"
], - "invert": true,
- "keywords": [
- "string"
], - "reject_empty_value": true
}, - "referer_enabled": true,
- "smart_screen_ai": {
- "prompt": "string"
}, - "smart_screen_ai_enabled": true,
- "sub_id_validity_check": {
- "is_integer": true,
- "max_length": 50,
- "max_unique_threshold": 0,
- "min_length": 0,
- "unified_sub_id": "string"
}, - "sub_id_validity_check_enabled": true,
- "third_party_rejection": {
- "rejected_keywords": [
- "string"
]
}, - "third_party_rejection_enabled": true,
- "vpn": {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "residential_vpn_check": true,
- "residential_vpn_check_custom_settings": {
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "residential_vpn_check_custom_settings_enabled": true,
- "threshold_percentage": 100
}, - "vpn_enabled": true,
- "wrong_install_time": {
- "time_delta_tolerance_seconds": 999
}, - "wrong_install_time_enabled": true
}, - "created_at": "string",
- "description": "string",
- "id": "string",
- "impression_filter_settings": {
- "bot": {
- "premium_ip_check_enabled": true,
- "reject_empty_browser_language": true
}, - "bot_enabled": true,
- "device_id": {
- "reject_empty_value": true
}, - "device_id_enabled": true,
- "impression_flooding": {
- "expires_in_seconds": 1,
- "extra_expires_in_seconds_when_rejected": 1,
- "max_duplicate_ip": 1,
- "properties": {
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true
}
}, - "impression_flooding_enabled": true,
- "isp": {
- "invert": true,
- "keywords": [
- "string"
]
}, - "isp_enabled": true,
- "keyword": {
- "expires_in_seconds": 1,
- "keywords": [
- "string"
], - "max_duplicate_allowed": 1,
- "properties": {
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true
}
}, - "keyword_enabled": true,
- "old_browser": {
- "browsers": {
- "property1": "string",
- "property2": "string"
}, - "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "old_browser_enabled": true,
- "old_os": {
- "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "oses": {
- "property1": "string",
- "property2": "string"
}, - "threshold_percentage": 100
}, - "old_os_enabled": true,
- "parameter": {
- "configs": {
- "property1": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}, - "property2": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}
}
}, - "parameter_enabled": true,
- "site_url": {
- "categories": [
- "oneof=fraud"
], - "invert": true,
- "keywords": [
- "string"
], - "reject_empty_value": true
}, - "site_url_enabled": true,
- "sub_id_validity_check": {
- "is_integer": true,
- "max_length": 50,
- "max_unique_threshold": 0,
- "min_length": 0,
- "unified_sub_id": "string"
}, - "sub_id_validity_check_enabled": true,
- "user_frequency": [
- {
- "enable_duplicate_device_id": true,
- "enable_duplicate_fingerprint": true,
- "enable_duplicate_ip": true,
- "enable_duplicate_ipv6": true,
- "enable_duplicate_uuid": true,
- "expires_in_seconds": 1,
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true,
- "max_duplicates": 1
}
], - "user_frequency_enabled": true,
- "vpn": {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "residential_vpn_check": true,
- "residential_vpn_check_custom_settings": {
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "residential_vpn_check_custom_settings_enabled": true,
- "threshold_percentage": 100
}, - "vpn_enabled": true
}, - "integration": "string",
- "last_updated_by": "string",
- "monitoring_mode": true,
- "name": "string",
- "name_with_id": "string",
- "organization": "string",
- "rtb_enabled": true,
- "tags": [
- "string"
], - "tags_meta": [
- {
- "color": "string",
- "created_at": "string",
- "id": "string",
- "last_updated_by": "string",
- "name": "string",
- "organization": "string",
- "updated_at": "string"
}
], - "updated_at": "string",
- "used_by_offers": [
- "string"
]
}, - "fraud_filter_group_id": "string",
- "id": "string",
- "impression_forwarding_enabled": true,
- "impression_forwarding_url": "string",
- "incremental_id": 0,
- "integration": "string",
- "last_updated_by": "string",
- "manually_approve_conversions": true,
- "name": "string",
- "name_with_id": "string",
- "offer_group": "string",
- "offer_preview_enabled": true,
- "optional_landing_pages": [
- {
- "active": true,
- "archived": true,
- "created_at": "string",
- "id": "string",
- "incremental_id": 0,
- "integration": "string",
- "last_updated_by": "string",
- "name": "string",
- "name_with_id": "string",
- "offer_id": "string",
- "organization": "string",
- "preview_url": "string",
- "redirect_url": "string",
- "updated_at": "string"
}
], - "organization": "string",
- "parallel_tracking_enabled": true,
- "parallel_tracking_url": "string",
- "primary_domain": "string",
- "secure_code": "string",
- "start_date": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "tags_meta": [
- {
- "color": "string",
- "created_at": "string",
- "id": "string",
- "last_updated_by": "string",
- "name": "string",
- "organization": "string",
- "updated_at": "string"
}
], - "targeting_group": {
- "active": true,
- "click_targeting_settings": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "conversion_targeting_settings": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "created_at": "string",
- "description": "string",
- "id": "string",
- "impression_targeting_settings": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "integration": "string",
- "last_updated_by": "string",
- "name": "string",
- "organization": "string",
- "related_offers": [
- {
- "id": "string",
- "name": "string"
}
], - "updated_at": "string"
}, - "targeting_group_id": "string",
- "targeting_simple": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "targeting_simple_enabled": true,
- "terms_and_conditions": "string",
- "terms_and_conditions_agreed_list": [
- 0
], - "terms_and_conditions_enabled": true,
- "updated_at": "string",
- "view_through_attribution_enabled": true,
- "visibility": "Public"
}
}
You can update an offer in an integration.
integrationID required | string The Integration ID |
offerID required | string The Offer ID |
A JSON object containing offer information
active | boolean |
advertiser_id | integer |
allow_duplicate_conversions | boolean |
approved_publisher_ids | Array of integers |
block_on_reject | boolean |
object (csapi.CappingPayload) | |
conversion_name | string |
currency | string |
deep_link_enabled | boolean |
object (csapi.DefaultOfferLandingPage) | |
object (csapi.PayoutConfigPayload) | |
description | string |
end_date | string |
fallback_url | string |
fraud_filter_group_id | string |
impression_forwarding_enabled | boolean |
impression_forwarding_url | string |
manually_approve_conversions | boolean |
name | string |
offer_group | string |
offer_preview_enabled | boolean |
parallel_tracking_enabled | boolean |
parallel_tracking_url | string |
primary_domain | string |
secure_code | string |
start_date | string |
tags | Array of strings |
targeting_group_id | string |
object (csapi.TargetingSettingsPayload) | |
targeting_simple_enabled | boolean |
terms_and_conditions | string |
terms_and_conditions_agreed_list | Array of integers |
terms_and_conditions_enabled | boolean |
view_through_attribution_enabled | boolean |
visibility | string |
{- "active": true,
- "advertiser_id": 0,
- "allow_duplicate_conversions": true,
- "approved_publisher_ids": [
- 0
], - "block_on_reject": true,
- "capping": {
- "block_clicks": true,
- "block_impressions": true,
- "click_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "click_capping_enabled": true,
- "conversion_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "conversion_capping_enabled": true,
- "event_capping_enabled": true,
- "event_capping_per_event_id": {
- "property1": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "property2": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}
}, - "impression_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "impression_capping_enabled": true,
- "payout_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "payout_capping_enabled": true,
- "revenue_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "revenue_capping_enabled": true,
- "soft_capping_enabled": true,
- "timezone": "string"
}, - "conversion_name": "string",
- "currency": "string",
- "deep_link_enabled": true,
- "default_offer_landing_page": {
- "preview_url": "string",
- "redirect_url": "string"
}, - "default_payout": {
- "payout": 0,
- "payout_percent": 0,
- "payout_type": "CPA",
- "revenue": 0,
- "revenue_percent": 0,
- "revenue_type": "RPA"
}, - "description": "string",
- "end_date": "string",
- "fallback_url": "string",
- "fraud_filter_group_id": "string",
- "impression_forwarding_enabled": true,
- "impression_forwarding_url": "string",
- "manually_approve_conversions": true,
- "name": "string",
- "offer_group": "string",
- "offer_preview_enabled": true,
- "parallel_tracking_enabled": true,
- "parallel_tracking_url": "string",
- "primary_domain": "string",
- "secure_code": "string",
- "start_date": "string",
- "tags": [
- "string"
], - "targeting_group_id": "string",
- "targeting_simple": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "targeting_simple_enabled": true,
- "terms_and_conditions": "string",
- "terms_and_conditions_agreed_list": [
- 0
], - "terms_and_conditions_enabled": true,
- "view_through_attribution_enabled": true,
- "visibility": "string"
}
{ }
You can list all smartlinks within an integration
integrationID required | string The Integration ID |
{- "data": [
- {
- "active": true,
- "archived": true,
- "created_at": "string",
- "description": "string",
- "fallback_offer": {
- "active": true,
- "id": "string",
- "incremental_id": 0,
- "landing_page_active": true,
- "landing_page_id": "string",
- "landing_page_name": "string",
- "name": "string",
- "name_with_id": "string",
- "preview_url": "string",
- "redirect_url": "string"
}, - "fallback_offer_enabled": true,
- "id": "string",
- "incremental_id": 0,
- "integration": "string",
- "kpi_offers": [
- {
- "active": true,
- "id": "string",
- "incremental_id": 0,
- "landing_page_active": true,
- "landing_page_id": "string",
- "landing_page_name": "string",
- "name": "string",
- "name_with_id": "string",
- "preview_url": "string",
- "redirect_url": "string"
}
], - "last_updated_by": "string",
- "name": "string",
- "name_with_id": "string",
- "organization": "string",
- "primary_domain": "string",
- "priority_offers": [
- {
- "active": true,
- "id": "string",
- "incremental_id": 0,
- "landing_page_active": true,
- "landing_page_id": "string",
- "landing_page_name": "string",
- "name": "string",
- "name_with_id": "string",
- "preview_url": "string",
- "priority": 1,
- "redirect_url": "string"
}
], - "strategy": "Weighted",
- "tags": [
- "string"
], - "tags_meta": [
- {
- "color": "string",
- "created_at": "string",
- "id": "string",
- "last_updated_by": "string",
- "name": "string",
- "organization": "string",
- "updated_at": "string"
}
], - "updated_at": "string",
- "visibility": "Public",
- "weighted_offers": [
- {
- "active": true,
- "id": "string",
- "incremental_id": 0,
- "landing_page_active": true,
- "landing_page_id": "string",
- "landing_page_name": "string",
- "name": "string",
- "name_with_id": "string",
- "preview_url": "string",
- "redirect_url": "string",
- "weight": 9
}
]
}
], - "meta": {
- "links": {
- "next": {
- "page[after]": "string",
- "page[before]": "string",
- "page[number]": 0,
- "page[size]": 0
}, - "prev": {
- "page[after]": "string",
- "page[before]": "string",
- "page[number]": 0,
- "page[size]": 0
}
}, - "total_count": 0,
- "total_page": 0
}
}
You can create a smartlink in an integration.
integrationID required | string The Integration ID |
A JSON object containing smartlink information
active | boolean |
archived | boolean |
description | string |
object (csapi.SmartLinkOffer) | |
fallback_offer_enabled | boolean |
Array of objects (csapi.SmartLinkKPIOffer) unique For KPI strategy. | |
name required | string |
primary_domain | string |
Array of objects (csapi.SmartLinkPriorityOffer) unique For Priority strategy. | |
strategy required | string Enum: "Weighted" "Priority" "KPI" |
tags | Array of strings <= 50 items |
visibility | string Default: "Public" Enum: "Public" "Private" "Requires_Approval" |
Array of objects (csapi.SmartLinkWeightedOffer) unique For Weighted strategy. |
{- "active": true,
- "archived": true,
- "description": "string",
- "fallback_offer": {
- "active": true,
- "id": "string",
- "landing_page_id": "string",
- "name": "string"
}, - "fallback_offer_enabled": true,
- "kpi_offers": [
- {
- "active": true,
- "id": "string",
- "landing_page_id": "string",
- "name": "string"
}
], - "name": "string",
- "primary_domain": "string",
- "priority_offers": [
- {
- "active": true,
- "id": "string",
- "landing_page_id": "string",
- "name": "string",
- "priority": 1
}
], - "strategy": "Weighted",
- "tags": [
- "string"
], - "visibility": "Public",
- "weighted_offers": [
- {
- "active": true,
- "id": "string",
- "landing_page_id": "string",
- "name": "string",
- "weight": 9
}
]
}
{- "created_item_id": "string"
}
You can bulk delete smartlinks.
integrationID required | string The Integration ID |
organization | string The Organization ID of the smartlink. |
An array of smartlink IDs to delete
data | Array of strings |
{- "data": [
- "string"
]
}
{ }
You can bulk update the smartlinks status.
integrationID required | string The Integration ID |
organization | string The Organization ID of the smartlink. |
An array of smartlink IDs to update and the new status
active | boolean |
data | Array of strings |
{- "active": true,
- "data": [
- "string"
]
}
{ }
You can read a smartlink in an integration.
integrationID required | string The Integration ID |
smartlinkID required | string The SmartLink ID |
{- "data": {
- "active": true,
- "archived": true,
- "created_at": "string",
- "description": "string",
- "fallback_offer": {
- "active": true,
- "id": "string",
- "incremental_id": 0,
- "landing_page_active": true,
- "landing_page_id": "string",
- "landing_page_name": "string",
- "name": "string",
- "name_with_id": "string",
- "preview_url": "string",
- "redirect_url": "string"
}, - "fallback_offer_enabled": true,
- "id": "string",
- "incremental_id": 0,
- "integration": "string",
- "kpi_offers": [
- {
- "active": true,
- "id": "string",
- "incremental_id": 0,
- "landing_page_active": true,
- "landing_page_id": "string",
- "landing_page_name": "string",
- "name": "string",
- "name_with_id": "string",
- "preview_url": "string",
- "redirect_url": "string"
}
], - "last_updated_by": "string",
- "name": "string",
- "name_with_id": "string",
- "organization": "string",
- "primary_domain": "string",
- "priority_offers": [
- {
- "active": true,
- "id": "string",
- "incremental_id": 0,
- "landing_page_active": true,
- "landing_page_id": "string",
- "landing_page_name": "string",
- "name": "string",
- "name_with_id": "string",
- "preview_url": "string",
- "priority": 1,
- "redirect_url": "string"
}
], - "strategy": "Weighted",
- "tags": [
- "string"
], - "tags_meta": [
- {
- "color": "string",
- "created_at": "string",
- "id": "string",
- "last_updated_by": "string",
- "name": "string",
- "organization": "string",
- "updated_at": "string"
}
], - "updated_at": "string",
- "visibility": "Public",
- "weighted_offers": [
- {
- "active": true,
- "id": "string",
- "incremental_id": 0,
- "landing_page_active": true,
- "landing_page_id": "string",
- "landing_page_name": "string",
- "name": "string",
- "name_with_id": "string",
- "preview_url": "string",
- "redirect_url": "string",
- "weight": 9
}
]
}
}
You can delete a smartlink in an integration.
integrationID required | string The Integration ID |
smartlinkID required | string The SmartLink ID |
organization | string The Organization ID of the smartlink. |
{ }
You can update a smartlink in an integration.
integrationID required | string The Integration ID |
smartlinkID required | string The SmartLink ID |
organization | string The Organization ID of the smartlink. |
A JSON object containing smartlink information
active | boolean |
description | string |
object (csapi.SmartLinkOffer) | |
fallback_offer_enabled | boolean |
name | string |
primary_domain | string |
Array of objects (csapi.SmartLinkPriorityOffer) | |
strategy | integer (csapi.SmartLinkRedirectStrategy) Enum: 0 1 2 3 |
tags | Array of strings |
visibility | string Enum: "Public" "Private" "Requires_Approval" |
Array of objects (csapi.SmartLinkWeightedOffer) |
{- "active": true,
- "description": "string",
- "fallback_offer": {
- "active": true,
- "id": "string",
- "landing_page_id": "string",
- "name": "string"
}, - "fallback_offer_enabled": true,
- "name": "string",
- "primary_domain": "string",
- "priority_offers": [
- {
- "active": true,
- "id": "string",
- "landing_page_id": "string",
- "name": "string",
- "priority": 1
}
], - "strategy": 0,
- "tags": [
- "string"
], - "visibility": "Public",
- "weighted_offers": [
- {
- "active": true,
- "id": "string",
- "landing_page_id": "string",
- "name": "string",
- "weight": 9
}
]
}
{ }
You can list all offers
{- "data": [
- {
- "active": true,
- "advertiser": {
- "active": true,
- "incremental_id": 0,
- "name": "string",
- "name_with_id": "string"
}, - "advertiser_id": 0,
- "allow_duplicate_conversions": true,
- "approved_publisher_ids": [
- 0
], - "approved_publishers": [
- {
- "id": "string",
- "name": "string"
}
], - "archived": true,
- "auth_secure_code": "string",
- "block_on_reject": true,
- "capping": {
- "block_clicks": true,
- "block_impressions": true,
- "click_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "click_capping_enabled": true,
- "conversion_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "conversion_capping_enabled": true,
- "event_capping_enabled": true,
- "event_capping_per_event_id": {
- "property1": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "property2": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}
}, - "impression_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "impression_capping_enabled": true,
- "payout_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "payout_capping_enabled": true,
- "revenue_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "revenue_capping_enabled": true,
- "soft_capping_enabled": true,
- "timezone": "UTC"
}, - "click_tracking_links": {
- "js": "string",
- "standard": "string"
}, - "conversion_name": "string",
- "created_at": "string",
- "currency": "string",
- "deep_link_enabled": true,
- "default_offer_landing_page": {
- "preview_url": "string",
- "redirect_url": "string"
}, - "default_payout": {
- "payout": 0,
- "payout_percent": 100,
- "payout_type": "CPA",
- "revenue": 0,
- "revenue_percent": 100,
- "revenue_type": "RPA"
}, - "description": "string",
- "end_date": "2019-08-24T14:15:22Z",
- "fallback_url": "string",
- "fraud_filter_group": {
- "active": true,
- "click_filter_preset_id": 0,
- "click_filter_settings": {
- "bot": {
- "premium_ip_check_enabled": true,
- "reject_empty_browser_language": true
}, - "bot_enabled": true,
- "click_flooding": {
- "expires_in_seconds": 1,
- "extra_expires_in_seconds_when_rejected": 1,
- "max_duplicate_ip": 1,
- "properties": {
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true
}
}, - "click_flooding_enabled": true,
- "conversion_rejection_threshold": {
- "by_sub_id": true,
- "lookback_hours": 0,
- "minimum_total": 1,
- "threshold": 100
}, - "conversion_rejection_threshold_enabled": true,
- "device_id": {
- "reject_empty_value": true
}, - "device_id_enabled": true,
- "duplicate_user": [
- {
- "enable_duplicate_device_id": true,
- "enable_duplicate_fingerprint": true,
- "enable_duplicate_ip": true,
- "enable_duplicate_ipv6": true,
- "enable_duplicate_uuid": true,
- "expires_in_seconds": 1,
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true,
- "max_duplicates": 1
}
], - "duplicate_user_enabled": true,
- "high_conversion_rate": {
- "block_clicks": true,
- "check_by_sub_id": true,
- "lookback_times": {
- "property1": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}, - "property2": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}
}
}, - "high_conversion_rate_enabled": true,
- "isp": {
- "invert": true,
- "keywords": [
- "string"
]
}, - "isp_enabled": true,
- "keyword": {
- "expires_in_seconds": 1,
- "keywords": [
- "string"
], - "max_duplicate_allowed": 1,
- "properties": {
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true
}
}, - "keyword_enabled": true,
- "low_conversion_rate": {
- "block_clicks": true,
- "check_by_sub_id": true,
- "lookback_times": {
- "property1": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}, - "property2": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}
}
}, - "low_conversion_rate_enabled": true,
- "old_browser": {
- "browsers": {
- "property1": "string",
- "property2": "string"
}, - "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "old_browser_enabled": true,
- "old_os": {
- "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "oses": {
- "property1": "string",
- "property2": "string"
}, - "threshold_percentage": 100
}, - "old_os_enabled": true,
- "parameter": {
- "configs": {
- "property1": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}, - "property2": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}
}
}, - "parameter_enabled": true,
- "referer": {
- "categories": [
- "oneof=fraud"
], - "invert": true,
- "keywords": [
- "string"
], - "reject_empty_value": true
}, - "referer_enabled": true,
- "sub_id_validity_check": {
- "is_integer": true,
- "max_length": 50,
- "max_unique_threshold": 0,
- "min_length": 0,
- "unified_sub_id": "string"
}, - "sub_id_validity_check_enabled": true,
- "vpn": {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "residential_vpn_check": true,
- "residential_vpn_check_custom_settings": {
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "residential_vpn_check_custom_settings_enabled": true,
- "threshold_percentage": 100
}, - "vpn_enabled": true
}, - "conversion_filter_preset_id": 0,
- "conversion_filter_settings": {
- "bot": {
- "premium_ip_check_enabled": true,
- "reject_empty_browser_language": true
}, - "bot_enabled": true,
- "click_spam": [
- {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "max_session_time_seconds": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}
], - "click_spam_enabled": true,
- "device_id": {
- "reject_empty_value": true
}, - "device_id_enabled": true,
- "duplicate_user": [
- {
- "enable_duplicate_device_id": true,
- "enable_duplicate_fingerprint": true,
- "enable_duplicate_ip": true,
- "enable_duplicate_ipv6": true,
- "enable_duplicate_uuid": true,
- "expires_in_seconds": 1,
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true,
- "max_duplicates": 1
}
], - "duplicate_user_enabled": true,
- "high_conversion_rate": {
- "block_clicks": true,
- "check_by_sub_id": true,
- "lookback_times": {
- "property1": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}, - "property2": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}
}
}, - "high_conversion_rate_enabled": true,
- "low_conversion_rate": {
- "block_clicks": true,
- "check_by_sub_id": true,
- "lookback_times": {
- "property1": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}, - "property2": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}
}
}, - "low_conversion_rate_enabled": true,
- "low_session_time_anomaly": [
- {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "min_session_time_seconds": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}
], - "low_session_time_anomaly_enabled": true,
- "maximum_session_time": {
- "max_session_time_seconds": 0
}, - "maximum_session_time_enabled": true,
- "minimum_session_time": {
- "min_session_time_seconds": 0
}, - "minimum_session_time_enabled": true,
- "old_browser": {
- "browsers": {
- "property1": "string",
- "property2": "string"
}, - "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "old_browser_enabled": true,
- "old_os": {
- "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "oses": {
- "property1": "string",
- "property2": "string"
}, - "threshold_percentage": 100
}, - "old_os_enabled": true,
- "parameter": {
- "configs": {
- "property1": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}, - "property2": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}
}
}, - "parameter_enabled": true,
- "referer": {
- "categories": [
- "oneof=fraud"
], - "invert": true,
- "keywords": [
- "string"
], - "reject_empty_value": true
}, - "referer_enabled": true,
- "smart_screen_ai": {
- "prompt": "string"
}, - "smart_screen_ai_enabled": true,
- "sub_id_validity_check": {
- "is_integer": true,
- "max_length": 50,
- "max_unique_threshold": 0,
- "min_length": 0,
- "unified_sub_id": "string"
}, - "sub_id_validity_check_enabled": true,
- "third_party_rejection": {
- "rejected_keywords": [
- "string"
]
}, - "third_party_rejection_enabled": true,
- "vpn": {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "residential_vpn_check": true,
- "residential_vpn_check_custom_settings": {
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "residential_vpn_check_custom_settings_enabled": true,
- "threshold_percentage": 100
}, - "vpn_enabled": true,
- "wrong_install_time": {
- "time_delta_tolerance_seconds": 999
}, - "wrong_install_time_enabled": true
}, - "created_at": "string",
- "description": "string",
- "id": "string",
- "impression_filter_settings": {
- "bot": {
- "premium_ip_check_enabled": true,
- "reject_empty_browser_language": true
}, - "bot_enabled": true,
- "device_id": {
- "reject_empty_value": true
}, - "device_id_enabled": true,
- "impression_flooding": {
- "expires_in_seconds": 1,
- "extra_expires_in_seconds_when_rejected": 1,
- "max_duplicate_ip": 1,
- "properties": {
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true
}
}, - "impression_flooding_enabled": true,
- "isp": {
- "invert": true,
- "keywords": [
- "string"
]
}, - "isp_enabled": true,
- "keyword": {
- "expires_in_seconds": 1,
- "keywords": [
- "string"
], - "max_duplicate_allowed": 1,
- "properties": {
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true
}
}, - "keyword_enabled": true,
- "old_browser": {
- "browsers": {
- "property1": "string",
- "property2": "string"
}, - "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "old_browser_enabled": true,
- "old_os": {
- "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "oses": {
- "property1": "string",
- "property2": "string"
}, - "threshold_percentage": 100
}, - "old_os_enabled": true,
- "parameter": {
- "configs": {
- "property1": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}, - "property2": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}
}
}, - "parameter_enabled": true,
- "site_url": {
- "categories": [
- "oneof=fraud"
], - "invert": true,
- "keywords": [
- "string"
], - "reject_empty_value": true
}, - "site_url_enabled": true,
- "sub_id_validity_check": {
- "is_integer": true,
- "max_length": 50,
- "max_unique_threshold": 0,
- "min_length": 0,
- "unified_sub_id": "string"
}, - "sub_id_validity_check_enabled": true,
- "user_frequency": [
- {
- "enable_duplicate_device_id": true,
- "enable_duplicate_fingerprint": true,
- "enable_duplicate_ip": true,
- "enable_duplicate_ipv6": true,
- "enable_duplicate_uuid": true,
- "expires_in_seconds": 1,
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true,
- "max_duplicates": 1
}
], - "user_frequency_enabled": true,
- "vpn": {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "residential_vpn_check": true,
- "residential_vpn_check_custom_settings": {
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "residential_vpn_check_custom_settings_enabled": true,
- "threshold_percentage": 100
}, - "vpn_enabled": true
}, - "integration": "string",
- "last_updated_by": "string",
- "monitoring_mode": true,
- "name": "string",
- "name_with_id": "string",
- "organization": "string",
- "rtb_enabled": true,
- "tags": [
- "string"
], - "tags_meta": [
- {
- "color": "string",
- "created_at": "string",
- "id": "string",
- "last_updated_by": "string",
- "name": "string",
- "organization": "string",
- "updated_at": "string"
}
], - "updated_at": "string",
- "used_by_offers": [
- "string"
]
}, - "fraud_filter_group_id": "string",
- "id": "string",
- "impression_forwarding_enabled": true,
- "impression_forwarding_url": "string",
- "incremental_id": 0,
- "integration": "string",
- "last_updated_by": "string",
- "manually_approve_conversions": true,
- "name": "string",
- "name_with_id": "string",
- "offer_group": "string",
- "offer_preview_enabled": true,
- "optional_landing_pages": [
- {
- "active": true,
- "archived": true,
- "created_at": "string",
- "id": "string",
- "incremental_id": 0,
- "integration": "string",
- "last_updated_by": "string",
- "name": "string",
- "name_with_id": "string",
- "offer_id": "string",
- "organization": "string",
- "preview_url": "string",
- "redirect_url": "string",
- "updated_at": "string"
}
], - "organization": "string",
- "parallel_tracking_enabled": true,
- "parallel_tracking_url": "string",
- "primary_domain": "string",
- "secure_code": "string",
- "start_date": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
], - "tags_meta": [
- {
- "color": "string",
- "created_at": "string",
- "id": "string",
- "last_updated_by": "string",
- "name": "string",
- "organization": "string",
- "updated_at": "string"
}
], - "targeting_group": {
- "active": true,
- "click_targeting_settings": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "conversion_targeting_settings": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "created_at": "string",
- "description": "string",
- "id": "string",
- "impression_targeting_settings": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "integration": "string",
- "last_updated_by": "string",
- "name": "string",
- "organization": "string",
- "related_offers": [
- {
- "id": "string",
- "name": "string"
}
], - "updated_at": "string"
}, - "targeting_group_id": "string",
- "targeting_simple": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "targeting_simple_enabled": true,
- "terms_and_conditions": "string",
- "terms_and_conditions_agreed_list": [
- 0
], - "terms_and_conditions_enabled": true,
- "updated_at": "string",
- "view_through_attribution_enabled": true,
- "visibility": "Public"
}
], - "meta": {
- "links": {
- "next": {
- "page[after]": "string",
- "page[before]": "string",
- "page[number]": 0,
- "page[size]": 0
}, - "prev": {
- "page[after]": "string",
- "page[before]": "string",
- "page[number]": 0,
- "page[size]": 0
}
}, - "total_count": 0,
- "total_page": 0
}
}
Only max 100 rows per API call is allowed. Use pagination to get more data. We recommend using the Download Center feature to perform massive data export.
organization_id | string organization id |
integration_id required | string integration id |
start_date required | string <date> start date |
end_date required | string <date> end date |
sort | string sort |
page[number] required | integer page number |
A JSON object containing filter group information
end_date required | string End date in format "YYYY-MM-DD" |
fields | Array of strings Fields to be included in the report |
Array of objects (options.ListOptionsJSONFilter) Example: [ { "field": "isp", "operator": "contains", "value": "foo" }, { "field": "asn", "value": 100 } ] | |
integration_id required | string integration id |
page_number required | integer The number of pages to be returned given the page size. |
page_size required | integer Limit the number of objects to be returned. |
start_date required | string Start date in format "YYYY-MM-DD" |
{- "end_date": "string",
- "fields": [
- "string"
], - "filters": [
- {
- "field": "string",
- "operator": "is",
- "value": null
}
], - "integration_id": "string",
- "page_number": 0,
- "page_size": 0,
- "start_date": "string"
}
{- "data": {
- "count": 0,
- "data": [
- {
- "advertiser": "string",
- "advertiser_db_id": "string",
- "advertiser_id": "string",
- "asn": 0,
- "blocked": 0,
- "browser_language": [
- "string"
], - "browser_name": "string",
- "browser_timezone": "string",
- "browser_version": "string",
- "bundle_id": "string",
- "city": "string",
- "click_ip": "string",
- "country": "string",
- "coupon_code": "string",
- "device_id": "string",
- "device_type": "string",
- "external_transaction_id": "string",
- "extra_params.keys": [
- "string"
], - "extra_params.values": [
- "string"
], - "filter_group_id": "string",
- "final_offer": "string",
- "final_offer_id": "string",
- "fingerprint": "string",
- "integration_id": "string",
- "integration_type": "string",
- "invalid_sub_id": "string",
- "ip_network": "string",
- "is_bot": 0,
- "is_old_browser": 0,
- "is_old_os": 0,
- "isp": "string",
- "lat": 0,
- "long": 0,
- "monitoring_mode": 0,
- "offer": "string",
- "offer_db_id": "string",
- "offer_group_id": "string",
- "offer_id": "string",
- "organization_id": "string",
- "os_name": "string",
- "os_version": "string",
- "payout": 0,
- "postal_code": "string",
- "preview_url_enabled": 0,
- "proxy_type": "string",
- "publisher": "string",
- "publisher_db_id": "string",
- "real_advertiser": "string",
- "real_filter_group_id": "string",
- "real_offer_id": "string",
- "real_publisher": "string",
- "real_tx_id": "string",
- "referer": "string",
- "referer_categories": [
- "string"
], - "rejected_advanced_reason": "string",
- "rejected_language": "string",
- "rejected_primary_reason": "string",
- "rejected_simple_reason": "string",
- "rejections": [
- "string"
], - "request_date": "2019-08-24",
- "request_time": "2019-08-24T14:15:22Z",
- "revenue": 0,
- "rtb_url_used": 0,
- "rtt": 0,
- "server_region": "string",
- "smart_link_id": "string",
- "smartlink_db_id": "string",
- "status": "Approved",
- "sub_id": "string",
- "sub_id_2": "string",
- "sub_id_3": "string",
- "sub_id_4": "string",
- "sub_id_5": "string",
- "sub_id_6": "string",
- "tags": [
- "string"
], - "targeting_group_id": "string",
- "tx_id": "string",
- "user_agent": "string",
- "user_email": "string",
- "uuid": "string"
}
], - "pageInfo": {
- "endCursor": "string",
- "hasNextPage": true,
- "hasPreviousPage": true,
- "startCursor": "string"
}
}
}
Only max 100 rows per API call is allowed. Use pagination to get more data. We recommend using the Download Center feature to perform massive data export.
organization_id | string organization id |
integration_id required | string integration id |
start_date required | string <date> start date |
end_date required | string <date> end date |
sort | string sort |
page[number] required | integer page number |
A JSON object containing filter group information
end_date required | string End date in format "YYYY-MM-DD" |
fields | Array of strings Fields to be included in the report |
Array of objects (options.ListOptionsJSONFilter) Example: [ { "field": "isp", "operator": "contains", "value": "foo" }, { "field": "asn", "value": 100 } ] | |
integration_id required | string integration id |
page_number required | integer The number of pages to be returned given the page size. |
page_size required | integer Limit the number of objects to be returned. |
start_date required | string Start date in format "YYYY-MM-DD" |
{- "end_date": "string",
- "fields": [
- "string"
], - "filters": [
- {
- "field": "string",
- "operator": "is",
- "value": null
}
], - "integration_id": "string",
- "page_number": 0,
- "page_size": 0,
- "start_date": "string"
}
{- "data": {
- "count": 0,
- "data": [
- {
- "advertiser": "string",
- "advertiser_db_id": "string",
- "advertiser_name": "string",
- "app_id": "string",
- "app_version": "string",
- "asn": 0,
- "begin_install_time": "2019-08-24T14:15:22Z",
- "browser_language": [
- "string"
], - "browser_name": "string",
- "browser_timezone": "string",
- "browser_version": "string",
- "city": "string",
- "click_ip": "string",
- "click_time": "2019-08-24T14:15:22Z",
- "click_tx_id": "string",
- "conversion_ip": "string",
- "conversion_time": "2019-08-24T14:15:22Z",
- "country": "string",
- "coupon_code": "string",
- "device_id": "string",
- "device_type": "string",
- "event_db_id": "string",
- "event_id": 0,
- "event_name": "string",
- "event_status": 0,
- "external_transaction_id": "string",
- "extra_params.keys": [
- "string"
], - "extra_params.values": [
- "string"
], - "filter_group_id": "string",
- "fingerprint": "string",
- "finish_install_time": "2019-08-24T14:15:22Z",
- "hash": "string",
- "integration_id": "string",
- "integration_type": "string",
- "invalid_sub_id": "string",
- "ip_network": "string",
- "is_bot": 0,
- "is_click_spam": 0,
- "is_low_session_time": 0,
- "is_old_browser": 0,
- "is_old_os": 0,
- "isp": "string",
- "lat": 0,
- "long": 0,
- "network": "string",
- "offer": "string",
- "offer_db_id": "string",
- "offer_group_id": "string",
- "offer_id": "string",
- "offer_id_name": "string",
- "organization_id": "string",
- "os_name": "string",
- "os_version": "string",
- "payout": 0,
- "postal_code": "string",
- "proxy_type": "string",
- "publisher": "string",
- "publisher_db_id": "string",
- "publisher_name": "string",
- "purchase_value": 0,
- "real_advertiser": "string",
- "real_filter_group_id": "string",
- "real_offer_id": "string",
- "real_publisher": "string",
- "real_rejected_advanced_reason": "string",
- "real_rejected_simple_reason": "string",
- "real_tx_id": "string",
- "referer": "string",
- "referer_categories": [
- "string"
], - "rejected": 0,
- "rejected_advanced_reason": "string",
- "rejected_language": "string",
- "rejected_simple_reason": "string",
- "rejections": [
- "string"
], - "request_time": "2019-08-24T14:15:22Z",
- "revenue": 0,
- "risk": "string",
- "rtt": 0,
- "score": 0,
- "server_ip": "string",
- "server_region": "string",
- "session_time": 0,
- "smart_link_id": "string",
- "smartlink_db_id": "string",
- "status": "Approved",
- "sub_id": "string",
- "sub_id_2": "string",
- "sub_id_3": "string",
- "sub_id_4": "string",
- "sub_id_5": "string",
- "sub_id_6": "string",
- "tags": [
- "string"
], - "targeting_group_id": "string",
- "third_party_rejection_reason": "string",
- "third_party_status": "string",
- "tx_id": "string",
- "user_agent": "string",
- "user_email": "string",
- "uuid": "string"
}
], - "pageInfo": {
- "endCursor": "string",
- "hasNextPage": true,
- "hasPreviousPage": true,
- "startCursor": "string"
}
}
}
The update payload
integration_id | string |
organization_id | string |
Array of objects (service.ConversionUpdateRequest) |
{- "integration_id": "string",
- "organization_id": "string",
- "updates": [
- {
- "action": "Approve",
- "hash": "string",
- "new_rejected_advanced_reason": "string",
- "tx_id": "string",
- "update_params": {
- "payout": 0,
- "purchase_value": 0,
- "revenue": 0
}
}
]
}
{- "success": true
}
Only max 100 rows per API call is allowed. Use pagination to get more data. We recommend using the Download Center feature to perform massive data export.
organization_id | string organization id |
integration_id required | string integration id |
start_date required | string <date> start date |
end_date required | string <date> end date |
sort | string sort |
page[number] required | integer page number |
A JSON object containing filter group information
end_date required | string End date in format "YYYY-MM-DD" |
fields | Array of strings Fields to be included in the report |
Array of objects (options.ListOptionsJSONFilter) Example: [ { "field": "isp", "operator": "contains", "value": "foo" }, { "field": "asn", "value": 100 } ] | |
integration_id required | string integration id |
page_number required | integer The number of pages to be returned given the page size. |
page_size required | integer Limit the number of objects to be returned. |
start_date required | string Start date in format "YYYY-MM-DD" |
{- "end_date": "string",
- "fields": [
- "string"
], - "filters": [
- {
- "field": "string",
- "operator": "is",
- "value": null
}
], - "integration_id": "string",
- "page_number": 0,
- "page_size": 0,
- "start_date": "string"
}
{- "data": {
- "count": 0,
- "data": [
- {
- "advertiser": "string",
- "advertiser_db_id": "string",
- "advertiser_id": "string",
- "asn": 0,
- "blocked": 0,
- "browser_language": [
- "string"
], - "browser_name": "string",
- "browser_timezone": "string",
- "browser_version": "string",
- "bundle_id": "string",
- "city": "string",
- "click_ip": "string",
- "country": "string",
- "device_id": "string",
- "device_type": "string",
- "extra_params.keys": [
- "string"
], - "extra_params.values": [
- "string"
], - "filter_group_id": "string",
- "fingerprint": "string",
- "integration_id": "string",
- "integration_type": "string",
- "invalid_sub_id": "string",
- "ip_network": "string",
- "is_bot": 0,
- "is_old_browser": 0,
- "is_old_os": 0,
- "isp": "string",
- "lat": 0,
- "long": 0,
- "monitoring_mode": 0,
- "offer_db_id": "string",
- "offer_id": "string",
- "organization_id": "string",
- "os_name": "string",
- "os_version": "string",
- "payout": 0,
- "postal_code": "string",
- "proxy_type": "string",
- "publisher": "string",
- "publisher_db_id": "string",
- "real_advertiser": "string",
- "real_filter_group_id": "string",
- "real_offer_id": "string",
- "real_publisher": "string",
- "real_tx_id": "string",
- "referer": "string",
- "referer_categories": [
- "string"
], - "rejected_advanced_reason": "string",
- "rejected_language": "string",
- "rejected_primary_reason": "string",
- "rejected_simple_reason": "string",
- "rejections": [
- "string"
], - "request_date": "2019-08-24",
- "request_time": "2019-08-24T14:15:22Z",
- "revenue": 0,
- "rtt": 0,
- "server_region": "string",
- "site_url": "string",
- "site_url_categories": [
- "string"
], - "status": "string",
- "sub_id": "string",
- "sub_id_2": "string",
- "sub_id_3": "string",
- "sub_id_4": "string",
- "sub_id_5": "string",
- "sub_id_6": "string",
- "tags": [
- "string"
], - "targeting_group_id": "string",
- "tx_id": "string",
- "user_agent": "string",
- "user_email": "string",
- "uuid": "string"
}
], - "pageInfo": {
- "endCursor": "string",
- "hasNextPage": true,
- "hasPreviousPage": true,
- "startCursor": "string"
}
}
}
integration_id required | string integration id |
start_date required | string <date> start date |
end_date required | string <date> end date |
columns[] | Array of strings columns |
sort | string sort |
count | boolean count |
page[after] | string This is the cursor that points to the end of the page of data that has been returned. |
page[before] | string This is the cursor that points to the start of the page of data that has been returned. |
page[number] | integer The number of pages to be returned given the page size. |
page[size] | integer Limit the number of objects to be returned. |
{- "data": {
- "count": 0,
- "data": [
- {
- "advertiser": "string",
- "advertiser_db_id": "string",
- "clicks_risk": 0,
- "clicks_total": 0,
- "clicks_total_approved": 0,
- "clicks_total_rejected": 0,
- "conversion_rate": 0,
- "conversions_risk": 0,
- "conversions_total": 0,
- "conversions_total_approved": 0,
- "conversions_total_rejected": 0,
- "date": "2019-08-24",
- "event_rate": 0,
- "events_total": 0,
- "events_total_approved": 0,
- "events_total_rejected": 0,
- "impressions_risk": 0,
- "impressions_total": 0,
- "impressions_total_approved": 0,
- "impressions_total_rejected": 0,
- "offer": "string",
- "offer_db_id": "string",
- "offer_id": "string",
- "payout": 0,
- "publisher": "string",
- "publisher_db_id": "string",
- "rejected_payout": 0,
- "rejected_revenue": 0,
- "revenue": 0,
- "sub_id": "string",
- "top_click_per_rejection_total": [
- 0
], - "top_click_rejection": "string",
- "top_click_rejections": [
- "string"
], - "top_conversion_per_rejection_total": [
- 0
], - "top_conversion_rejection": "string",
- "top_conversion_rejections": [
- "string"
], - "top_event_per_rejection_total": [
- 0
], - "top_event_rejection": "string",
- "top_event_rejections": [
- "string"
], - "top_impression_per_rejection_total": [
- 0
], - "top_impression_rejection": "string",
- "top_impression_rejections": [
- "string"
]
}
]
}
}
integrationID required | string The Integration ID |
organization | string The organization's ID |
delimiter | string Delimiter to be used in CSV |
start_date | string <date> start date |
end_date | string <date> end date |
fields required | string Fields to include |
extra_parameters required | string Extra Parameters to include |
{- "artifact": {
- "download_link": "string",
- "meta": {
- "id": "string",
- "organization": "string",
- "type": "string"
}, - "name": "string",
- "size": 0
}, - "created_at": "string",
- "error": "string",
- "export_list_options": {
- "extra_parameters": [
- "string"
], - "fields": [
- "string"
], - "filters": {
- "booleans": {
- "property1": true,
- "property2": true
}, - "date_range": {
- "end": "string",
- "start": "string"
}, - "date_time_range": {
- "end": "string",
- "start": "string"
}, - "field_exists": {
- "property1": true,
- "property2": true
}, - "numbers": {
- "property1": {
- "property1": {
- "property1": [
- 0
], - "property2": [
- 0
]
}, - "property2": {
- "property1": [
- 0
], - "property2": [
- 0
]
}
}, - "property2": {
- "property1": {
- "property1": [
- 0
], - "property2": [
- 0
]
}, - "property2": {
- "property1": [
- 0
], - "property2": [
- 0
]
}
}
}, - "regex_query": {
- "fieldValue": "string",
- "searchableFields": [
- "string"
]
}, - "strings": {
- "property1": {
- "property1": {
- "property1": [
- "string"
], - "property2": [
- "string"
]
}, - "property2": {
- "property1": [
- "string"
], - "property2": [
- "string"
]
}
}, - "property2": {
- "property1": {
- "property1": [
- "string"
], - "property2": [
- "string"
]
}, - "property2": {
- "property1": [
- "string"
], - "property2": [
- "string"
]
}
}
}, - "text_search": "string",
- "timeZone": "string"
}
}, - "format": {
- "delimiter": "string"
}, - "id": "string",
- "integration": "string",
- "last_updated_by": "string",
- "organization": "string",
- "reports_query_option": {
- "end_date": "string",
- "extra_parameters_as_new_fields": [
- "string"
], - "filters": {
- "property1": {
- "equal_values": [
- "string"
], - "greater_than_values": [
- 0
], - "less_than_values": [
- 0
], - "like_values": [
- "string"
], - "not_equal_values": [
- "string"
]
}, - "property2": {
- "equal_values": [
- "string"
], - "greater_than_values": [
- 0
], - "less_than_values": [
- 0
], - "like_values": [
- "string"
], - "not_equal_values": [
- "string"
]
}
}, - "include_fields": [
- "string"
], - "relative_date": "string",
- "sort_by": [
- {
- "is_descending": true,
- "name": "string"
}
], - "start_date": "string"
}, - "requested_by": "string",
- "results_meta": {
- "duration_seconds": 0,
- "range_truncated": true,
- "total": 0
}, - "status": "PENDING",
- "type": "string",
- "updated_at": "string"
}
integrationID required | string The Integration ID |
organization | string The organization's ID |
delimiter | string Delimiter to be used in CSV |
start_date | string <date> start date |
end_date | string <date> end date |
fields required | string Fields to include |
extra_parameters required | string Extra Parameters to include |
{- "artifact": {
- "download_link": "string",
- "meta": {
- "id": "string",
- "organization": "string",
- "type": "string"
}, - "name": "string",
- "size": 0
}, - "created_at": "string",
- "error": "string",
- "export_list_options": {
- "extra_parameters": [
- "string"
], - "fields": [
- "string"
], - "filters": {
- "booleans": {
- "property1": true,
- "property2": true
}, - "date_range": {
- "end": "string",
- "start": "string"
}, - "date_time_range": {
- "end": "string",
- "start": "string"
}, - "field_exists": {
- "property1": true,
- "property2": true
}, - "numbers": {
- "property1": {
- "property1": {
- "property1": [
- 0
], - "property2": [
- 0
]
}, - "property2": {
- "property1": [
- 0
], - "property2": [
- 0
]
}
}, - "property2": {
- "property1": {
- "property1": [
- 0
], - "property2": [
- 0
]
}, - "property2": {
- "property1": [
- 0
], - "property2": [
- 0
]
}
}
}, - "regex_query": {
- "fieldValue": "string",
- "searchableFields": [
- "string"
]
}, - "strings": {
- "property1": {
- "property1": {
- "property1": [
- "string"
], - "property2": [
- "string"
]
}, - "property2": {
- "property1": [
- "string"
], - "property2": [
- "string"
]
}
}, - "property2": {
- "property1": {
- "property1": [
- "string"
], - "property2": [
- "string"
]
}, - "property2": {
- "property1": [
- "string"
], - "property2": [
- "string"
]
}
}
}, - "text_search": "string",
- "timeZone": "string"
}
}, - "format": {
- "delimiter": "string"
}, - "id": "string",
- "integration": "string",
- "last_updated_by": "string",
- "organization": "string",
- "reports_query_option": {
- "end_date": "string",
- "extra_parameters_as_new_fields": [
- "string"
], - "filters": {
- "property1": {
- "equal_values": [
- "string"
], - "greater_than_values": [
- 0
], - "less_than_values": [
- 0
], - "like_values": [
- "string"
], - "not_equal_values": [
- "string"
]
}, - "property2": {
- "equal_values": [
- "string"
], - "greater_than_values": [
- 0
], - "less_than_values": [
- 0
], - "like_values": [
- "string"
], - "not_equal_values": [
- "string"
]
}
}, - "include_fields": [
- "string"
], - "relative_date": "string",
- "sort_by": [
- {
- "is_descending": true,
- "name": "string"
}
], - "start_date": "string"
}, - "requested_by": "string",
- "results_meta": {
- "duration_seconds": 0,
- "range_truncated": true,
- "total": 0
}, - "status": "PENDING",
- "type": "string",
- "updated_at": "string"
}
integrationID required | string The Integration ID |
organization | string The organization's ID |
delimiter | string Delimiter to be used in CSV |
start_date | string <date> start date |
end_date | string <date> end date |
fields required | string Fields to include |
extra_parameters required | string Extra Parameters to include |
{- "artifact": {
- "download_link": "string",
- "meta": {
- "id": "string",
- "organization": "string",
- "type": "string"
}, - "name": "string",
- "size": 0
}, - "created_at": "string",
- "error": "string",
- "export_list_options": {
- "extra_parameters": [
- "string"
], - "fields": [
- "string"
], - "filters": {
- "booleans": {
- "property1": true,
- "property2": true
}, - "date_range": {
- "end": "string",
- "start": "string"
}, - "date_time_range": {
- "end": "string",
- "start": "string"
}, - "field_exists": {
- "property1": true,
- "property2": true
}, - "numbers": {
- "property1": {
- "property1": {
- "property1": [
- 0
], - "property2": [
- 0
]
}, - "property2": {
- "property1": [
- 0
], - "property2": [
- 0
]
}
}, - "property2": {
- "property1": {
- "property1": [
- 0
], - "property2": [
- 0
]
}, - "property2": {
- "property1": [
- 0
], - "property2": [
- 0
]
}
}
}, - "regex_query": {
- "fieldValue": "string",
- "searchableFields": [
- "string"
]
}, - "strings": {
- "property1": {
- "property1": {
- "property1": [
- "string"
], - "property2": [
- "string"
]
}, - "property2": {
- "property1": [
- "string"
], - "property2": [
- "string"
]
}
}, - "property2": {
- "property1": {
- "property1": [
- "string"
], - "property2": [
- "string"
]
}, - "property2": {
- "property1": [
- "string"
], - "property2": [
- "string"
]
}
}
}, - "text_search": "string",
- "timeZone": "string"
}
}, - "format": {
- "delimiter": "string"
}, - "id": "string",
- "integration": "string",
- "last_updated_by": "string",
- "organization": "string",
- "reports_query_option": {
- "end_date": "string",
- "extra_parameters_as_new_fields": [
- "string"
], - "filters": {
- "property1": {
- "equal_values": [
- "string"
], - "greater_than_values": [
- 0
], - "less_than_values": [
- 0
], - "like_values": [
- "string"
], - "not_equal_values": [
- "string"
]
}, - "property2": {
- "equal_values": [
- "string"
], - "greater_than_values": [
- 0
], - "less_than_values": [
- 0
], - "like_values": [
- "string"
], - "not_equal_values": [
- "string"
]
}
}, - "include_fields": [
- "string"
], - "relative_date": "string",
- "sort_by": [
- {
- "is_descending": true,
- "name": "string"
}
], - "start_date": "string"
}, - "requested_by": "string",
- "results_meta": {
- "duration_seconds": 0,
- "range_truncated": true,
- "total": 0
}, - "status": "PENDING",
- "type": "string",
- "updated_at": "string"
}
You can list all fraud filter groups within an attribution integration.
integrationID required | string The Integration ID |
{- "data": [
- {
- "active": true,
- "click_filter_preset_id": 0,
- "click_filter_settings": {
- "bot": {
- "premium_ip_check_enabled": true,
- "reject_empty_browser_language": true
}, - "bot_enabled": true,
- "click_flooding": {
- "expires_in_seconds": 1,
- "extra_expires_in_seconds_when_rejected": 1,
- "max_duplicate_ip": 1,
- "properties": {
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true
}
}, - "click_flooding_enabled": true,
- "conversion_rejection_threshold": {
- "by_sub_id": true,
- "lookback_hours": 0,
- "minimum_total": 1,
- "threshold": 100
}, - "conversion_rejection_threshold_enabled": true,
- "device_id": {
- "reject_empty_value": true
}, - "device_id_enabled": true,
- "duplicate_user": [
- {
- "enable_duplicate_device_id": true,
- "enable_duplicate_fingerprint": true,
- "enable_duplicate_ip": true,
- "enable_duplicate_ipv6": true,
- "enable_duplicate_uuid": true,
- "expires_in_seconds": 1,
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true,
- "max_duplicates": 1
}
], - "duplicate_user_enabled": true,
- "high_conversion_rate": {
- "block_clicks": true,
- "check_by_sub_id": true,
- "lookback_times": {
- "property1": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}, - "property2": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}
}
}, - "high_conversion_rate_enabled": true,
- "isp": {
- "invert": true,
- "keywords": [
- "string"
]
}, - "isp_enabled": true,
- "keyword": {
- "expires_in_seconds": 1,
- "keywords": [
- "string"
], - "max_duplicate_allowed": 1,
- "properties": {
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true
}
}, - "keyword_enabled": true,
- "low_conversion_rate": {
- "block_clicks": true,
- "check_by_sub_id": true,
- "lookback_times": {
- "property1": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}, - "property2": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}
}
}, - "low_conversion_rate_enabled": true,
- "old_browser": {
- "browsers": {
- "property1": "string",
- "property2": "string"
}, - "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "old_browser_enabled": true,
- "old_os": {
- "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "oses": {
- "property1": "string",
- "property2": "string"
}, - "threshold_percentage": 100
}, - "old_os_enabled": true,
- "parameter": {
- "configs": {
- "property1": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}, - "property2": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}
}
}, - "parameter_enabled": true,
- "referer": {
- "categories": [
- "oneof=fraud"
], - "invert": true,
- "keywords": [
- "string"
], - "reject_empty_value": true
}, - "referer_enabled": true,
- "sub_id_validity_check": {
- "is_integer": true,
- "max_length": 50,
- "max_unique_threshold": 0,
- "min_length": 0,
- "unified_sub_id": "string"
}, - "sub_id_validity_check_enabled": true,
- "vpn": {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "residential_vpn_check": true,
- "residential_vpn_check_custom_settings": {
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "residential_vpn_check_custom_settings_enabled": true,
- "threshold_percentage": 100
}, - "vpn_enabled": true
}, - "conversion_filter_preset_id": 0,
- "conversion_filter_settings": {
- "bot": {
- "premium_ip_check_enabled": true,
- "reject_empty_browser_language": true
}, - "bot_enabled": true,
- "click_spam": [
- {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "max_session_time_seconds": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}
], - "click_spam_enabled": true,
- "device_id": {
- "reject_empty_value": true
}, - "device_id_enabled": true,
- "duplicate_user": [
- {
- "enable_duplicate_device_id": true,
- "enable_duplicate_fingerprint": true,
- "enable_duplicate_ip": true,
- "enable_duplicate_ipv6": true,
- "enable_duplicate_uuid": true,
- "expires_in_seconds": 1,
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true,
- "max_duplicates": 1
}
], - "duplicate_user_enabled": true,
- "high_conversion_rate": {
- "block_clicks": true,
- "check_by_sub_id": true,
- "lookback_times": {
- "property1": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}, - "property2": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}
}
}, - "high_conversion_rate_enabled": true,
- "low_conversion_rate": {
- "block_clicks": true,
- "check_by_sub_id": true,
- "lookback_times": {
- "property1": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}, - "property2": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}
}
}, - "low_conversion_rate_enabled": true,
- "low_session_time_anomaly": [
- {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "min_session_time_seconds": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}
], - "low_session_time_anomaly_enabled": true,
- "maximum_session_time": {
- "max_session_time_seconds": 0
}, - "maximum_session_time_enabled": true,
- "minimum_session_time": {
- "min_session_time_seconds": 0
}, - "minimum_session_time_enabled": true,
- "old_browser": {
- "browsers": {
- "property1": "string",
- "property2": "string"
}, - "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "old_browser_enabled": true,
- "old_os": {
- "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "oses": {
- "property1": "string",
- "property2": "string"
}, - "threshold_percentage": 100
}, - "old_os_enabled": true,
- "parameter": {
- "configs": {
- "property1": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}, - "property2": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}
}
}, - "parameter_enabled": true,
- "referer": {
- "categories": [
- "oneof=fraud"
], - "invert": true,
- "keywords": [
- "string"
], - "reject_empty_value": true
}, - "referer_enabled": true,
- "smart_screen_ai": {
- "prompt": "string"
}, - "smart_screen_ai_enabled": true,
- "sub_id_validity_check": {
- "is_integer": true,
- "max_length": 50,
- "max_unique_threshold": 0,
- "min_length": 0,
- "unified_sub_id": "string"
}, - "sub_id_validity_check_enabled": true,
- "third_party_rejection": {
- "rejected_keywords": [
- "string"
]
}, - "third_party_rejection_enabled": true,
- "vpn": {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "residential_vpn_check": true,
- "residential_vpn_check_custom_settings": {
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "residential_vpn_check_custom_settings_enabled": true,
- "threshold_percentage": 100
}, - "vpn_enabled": true,
- "wrong_install_time": {
- "time_delta_tolerance_seconds": 999
}, - "wrong_install_time_enabled": true
}, - "created_at": "string",
- "description": "string",
- "id": "string",
- "impression_filter_settings": {
- "bot": {
- "premium_ip_check_enabled": true,
- "reject_empty_browser_language": true
}, - "bot_enabled": true,
- "device_id": {
- "reject_empty_value": true
}, - "device_id_enabled": true,
- "impression_flooding": {
- "expires_in_seconds": 1,
- "extra_expires_in_seconds_when_rejected": 1,
- "max_duplicate_ip": 1,
- "properties": {
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true
}
}, - "impression_flooding_enabled": true,
- "isp": {
- "invert": true,
- "keywords": [
- "string"
]
}, - "isp_enabled": true,
- "keyword": {
- "expires_in_seconds": 1,
- "keywords": [
- "string"
], - "max_duplicate_allowed": 1,
- "properties": {
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true
}
}, - "keyword_enabled": true,
- "old_browser": {
- "browsers": {
- "property1": "string",
- "property2": "string"
}, - "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "old_browser_enabled": true,
- "old_os": {
- "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "oses": {
- "property1": "string",
- "property2": "string"
}, - "threshold_percentage": 100
}, - "old_os_enabled": true,
- "parameter": {
- "configs": {
- "property1": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}, - "property2": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}
}
}, - "parameter_enabled": true,
- "site_url": {
- "categories": [
- "oneof=fraud"
], - "invert": true,
- "keywords": [
- "string"
], - "reject_empty_value": true
}, - "site_url_enabled": true,
- "sub_id_validity_check": {
- "is_integer": true,
- "max_length": 50,
- "max_unique_threshold": 0,
- "min_length": 0,
- "unified_sub_id": "string"
}, - "sub_id_validity_check_enabled": true,
- "user_frequency": [
- {
- "enable_duplicate_device_id": true,
- "enable_duplicate_fingerprint": true,
- "enable_duplicate_ip": true,
- "enable_duplicate_ipv6": true,
- "enable_duplicate_uuid": true,
- "expires_in_seconds": 1,
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true,
- "max_duplicates": 1
}
], - "user_frequency_enabled": true,
- "vpn": {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "residential_vpn_check": true,
- "residential_vpn_check_custom_settings": {
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "residential_vpn_check_custom_settings_enabled": true,
- "threshold_percentage": 100
}, - "vpn_enabled": true
}, - "integration": "string",
- "last_updated_by": "string",
- "monitoring_mode": true,
- "name": "string",
- "name_with_id": "string",
- "organization": "string",
- "rtb_enabled": true,
- "tags": [
- "string"
], - "tags_meta": [
- {
- "color": "string",
- "created_at": "string",
- "id": "string",
- "last_updated_by": "string",
- "name": "string",
- "organization": "string",
- "updated_at": "string"
}
], - "updated_at": "string",
- "used_by_offers": [
- "string"
]
}
], - "meta": {
- "links": {
- "next": {
- "page[after]": "string",
- "page[before]": "string",
- "page[number]": 0,
- "page[size]": 0
}, - "prev": {
- "page[after]": "string",
- "page[before]": "string",
- "page[number]": 0,
- "page[size]": 0
}
}, - "total_count": 0,
- "total_page": 0
}
}
You can create a fraud filter group within an attribution integration.
integrationID required | string The Integration ID |
A JSON object containing filter group information
active | boolean |
click_filter_preset_id | integer |
object (filters.FraudClickFilterSettings) | |
conversion_filter_preset_id | integer |
object (filters.FraudConversionFilterSettings) | |
description | string |
object (filters.FraudImpressionFilterSettings) | |
integration required | string |
monitoring_mode | boolean |
name required | string |
organization required | string |
rtb_enabled | boolean |
tags | Array of strings <= 50 items |
{- "active": true,
- "click_filter_preset_id": 0,
- "click_filter_settings": {
- "bot": {
- "premium_ip_check_enabled": true,
- "reject_empty_browser_language": true
}, - "bot_enabled": true,
- "click_flooding": {
- "expires_in_seconds": 1,
- "extra_expires_in_seconds_when_rejected": 1,
- "max_duplicate_ip": 1,
- "properties": {
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true
}
}, - "click_flooding_enabled": true,
- "conversion_rejection_threshold": {
- "by_sub_id": true,
- "lookback_hours": 0,
- "minimum_total": 1,
- "threshold": 100
}, - "conversion_rejection_threshold_enabled": true,
- "device_id": {
- "reject_empty_value": true
}, - "device_id_enabled": true,
- "duplicate_user": [
- {
- "enable_duplicate_device_id": true,
- "enable_duplicate_fingerprint": true,
- "enable_duplicate_ip": true,
- "enable_duplicate_ipv6": true,
- "enable_duplicate_uuid": true,
- "expires_in_seconds": 1,
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true,
- "max_duplicates": 1
}
], - "duplicate_user_enabled": true,
- "isp": {
- "invert": true,
- "keywords": [
- "string"
]
}, - "isp_enabled": true,
- "keyword": {
- "expires_in_seconds": 1,
- "keywords": [
- "string"
], - "max_duplicate_allowed": 1,
- "properties": {
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true
}
}, - "keyword_enabled": true,
- "old_browser": {
- "browsers": {
- "property1": "string",
- "property2": "string"
}, - "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "old_browser_enabled": true,
- "old_os": {
- "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "oses": {
- "property1": "string",
- "property2": "string"
}, - "threshold_percentage": 100
}, - "old_os_enabled": true,
- "parameter": {
- "configs": {
- "property1": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}, - "property2": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}
}
}, - "parameter_enabled": true,
- "referer": {
- "categories": [
- "oneof=fraud"
], - "invert": true,
- "keywords": [
- "string"
], - "reject_empty_value": true
}, - "referer_enabled": true,
- "sub_id_validity_check": {
- "is_integer": true,
- "max_length": 50,
- "max_unique_threshold": 0,
- "min_length": 0,
- "unified_sub_id": "string"
}, - "sub_id_validity_check_enabled": true,
- "vpn": {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "residential_vpn_check": true,
- "residential_vpn_check_custom_settings": {
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "residential_vpn_check_custom_settings_enabled": true,
- "threshold_percentage": 100
}, - "vpn_enabled": true
}, - "conversion_filter_preset_id": 0,
- "conversion_filter_settings": {
- "bot": {
- "premium_ip_check_enabled": true,
- "reject_empty_browser_language": true
}, - "bot_enabled": true,
- "click_spam": [
- {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "max_session_time_seconds": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}
], - "click_spam_enabled": true,
- "device_id": {
- "reject_empty_value": true
}, - "device_id_enabled": true,
- "duplicate_user": [
- {
- "enable_duplicate_device_id": true,
- "enable_duplicate_fingerprint": true,
- "enable_duplicate_ip": true,
- "enable_duplicate_ipv6": true,
- "enable_duplicate_uuid": true,
- "expires_in_seconds": 1,
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true,
- "max_duplicates": 1
}
], - "duplicate_user_enabled": true,
- "high_conversion_rate": {
- "block_clicks": true,
- "check_by_sub_id": true,
- "lookback_times": {
- "property1": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}, - "property2": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}
}
}, - "high_conversion_rate_enabled": true,
- "low_conversion_rate": {
- "block_clicks": true,
- "check_by_sub_id": true,
- "lookback_times": {
- "property1": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}, - "property2": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}
}
}, - "low_conversion_rate_enabled": true,
- "low_session_time_anomaly": [
- {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "min_session_time_seconds": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}
], - "low_session_time_anomaly_enabled": true,
- "maximum_session_time": {
- "max_session_time_seconds": 0
}, - "maximum_session_time_enabled": true,
- "minimum_session_time": {
- "min_session_time_seconds": 0
}, - "minimum_session_time_enabled": true,
- "old_browser": {
- "browsers": {
- "property1": "string",
- "property2": "string"
}, - "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "old_browser_enabled": true,
- "old_os": {
- "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "oses": {
- "property1": "string",
- "property2": "string"
}, - "threshold_percentage": 100
}, - "old_os_enabled": true,
- "parameter": {
- "configs": {
- "property1": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}, - "property2": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}
}
}, - "parameter_enabled": true,
- "referer": {
- "categories": [
- "oneof=fraud"
], - "invert": true,
- "keywords": [
- "string"
], - "reject_empty_value": true
}, - "referer_enabled": true,
- "smart_screen_ai": {
- "prompt": "string"
}, - "smart_screen_ai_enabled": true,
- "sub_id_validity_check": {
- "is_integer": true,
- "max_length": 50,
- "max_unique_threshold": 0,
- "min_length": 0,
- "unified_sub_id": "string"
}, - "sub_id_validity_check_enabled": true,
- "third_party_rejection": {
- "rejected_keywords": [
- "string"
]
}, - "third_party_rejection_enabled": true,
- "vpn": {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "residential_vpn_check": true,
- "residential_vpn_check_custom_settings": {
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "residential_vpn_check_custom_settings_enabled": true,
- "threshold_percentage": 100
}, - "vpn_enabled": true,
- "wrong_install_time": {
- "time_delta_tolerance_seconds": 999
}, - "wrong_install_time_enabled": true
}, - "description": "string",
- "impression_filter_settings": {
- "bot": {
- "premium_ip_check_enabled": true,
- "reject_empty_browser_language": true
}, - "bot_enabled": true,
- "device_id": {
- "reject_empty_value": true
}, - "device_id_enabled": true,
- "impression_flooding": {
- "expires_in_seconds": 1,
- "extra_expires_in_seconds_when_rejected": 1,
- "max_duplicate_ip": 1,
- "properties": {
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true
}
}, - "impression_flooding_enabled": true,
- "isp": {
- "invert": true,
- "keywords": [
- "string"
]
}, - "isp_enabled": true,
- "keyword": {
- "expires_in_seconds": 1,
- "keywords": [
- "string"
], - "max_duplicate_allowed": 1,
- "properties": {
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true
}
}, - "keyword_enabled": true,
- "old_browser": {
- "browsers": {
- "property1": "string",
- "property2": "string"
}, - "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "old_browser_enabled": true,
- "old_os": {
- "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "oses": {
- "property1": "string",
- "property2": "string"
}, - "threshold_percentage": 100
}, - "old_os_enabled": true,
- "parameter": {
- "configs": {
- "property1": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}, - "property2": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}
}
}, - "parameter_enabled": true,
- "site_url": {
- "categories": [
- "oneof=fraud"
], - "invert": true,
- "keywords": [
- "string"
], - "reject_empty_value": true
}, - "site_url_enabled": true,
- "sub_id_validity_check": {
- "is_integer": true,
- "max_length": 50,
- "max_unique_threshold": 0,
- "min_length": 0,
- "unified_sub_id": "string"
}, - "sub_id_validity_check_enabled": true,
- "user_frequency": [
- {
- "enable_duplicate_device_id": true,
- "enable_duplicate_fingerprint": true,
- "enable_duplicate_ip": true,
- "enable_duplicate_ipv6": true,
- "enable_duplicate_uuid": true,
- "expires_in_seconds": 1,
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true,
- "max_duplicates": 1
}
], - "user_frequency_enabled": true,
- "vpn": {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "residential_vpn_check": true,
- "residential_vpn_check_custom_settings": {
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "residential_vpn_check_custom_settings_enabled": true,
- "threshold_percentage": 100
}, - "vpn_enabled": true
}, - "integration": "string",
- "monitoring_mode": true,
- "name": "string",
- "organization": "string",
- "rtb_enabled": true,
- "tags": [
- "string"
]
}
{- "created_item_id": "string"
}
You can bulk delete fraud filter groups.
integrationID required | string The Integration ID |
organization | string The Organization ID of the fraud filter group. |
An array of fraud filter group IDs to delete
data | Array of strings |
{- "data": [
- "string"
]
}
{ }
You can bulk update the fraud filter groups.
integrationID required | string The Integration ID |
organization | string The Organization ID of the fraud filter group. |
An array of fraud filter group IDs to update
data | Array of strings |
monitoring_mode | boolean |
{- "data": [
- "string"
], - "monitoring_mode": true
}
{ }
You can read a fraud filter group within an attribution integration.
integrationID required | string The Integration ID |
fraudFilterGroupID required | string The Fraud Filter Group ID |
{- "data": {
- "active": true,
- "click_filter_preset_id": 0,
- "click_filter_settings": {
- "bot": {
- "premium_ip_check_enabled": true,
- "reject_empty_browser_language": true
}, - "bot_enabled": true,
- "click_flooding": {
- "expires_in_seconds": 1,
- "extra_expires_in_seconds_when_rejected": 1,
- "max_duplicate_ip": 1,
- "properties": {
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true
}
}, - "click_flooding_enabled": true,
- "conversion_rejection_threshold": {
- "by_sub_id": true,
- "lookback_hours": 0,
- "minimum_total": 1,
- "threshold": 100
}, - "conversion_rejection_threshold_enabled": true,
- "device_id": {
- "reject_empty_value": true
}, - "device_id_enabled": true,
- "duplicate_user": [
- {
- "enable_duplicate_device_id": true,
- "enable_duplicate_fingerprint": true,
- "enable_duplicate_ip": true,
- "enable_duplicate_ipv6": true,
- "enable_duplicate_uuid": true,
- "expires_in_seconds": 1,
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true,
- "max_duplicates": 1
}
], - "duplicate_user_enabled": true,
- "high_conversion_rate": {
- "block_clicks": true,
- "check_by_sub_id": true,
- "lookback_times": {
- "property1": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}, - "property2": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}
}
}, - "high_conversion_rate_enabled": true,
- "isp": {
- "invert": true,
- "keywords": [
- "string"
]
}, - "isp_enabled": true,
- "keyword": {
- "expires_in_seconds": 1,
- "keywords": [
- "string"
], - "max_duplicate_allowed": 1,
- "properties": {
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true
}
}, - "keyword_enabled": true,
- "low_conversion_rate": {
- "block_clicks": true,
- "check_by_sub_id": true,
- "lookback_times": {
- "property1": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}, - "property2": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}
}
}, - "low_conversion_rate_enabled": true,
- "old_browser": {
- "browsers": {
- "property1": "string",
- "property2": "string"
}, - "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "old_browser_enabled": true,
- "old_os": {
- "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "oses": {
- "property1": "string",
- "property2": "string"
}, - "threshold_percentage": 100
}, - "old_os_enabled": true,
- "parameter": {
- "configs": {
- "property1": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}, - "property2": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}
}
}, - "parameter_enabled": true,
- "referer": {
- "categories": [
- "oneof=fraud"
], - "invert": true,
- "keywords": [
- "string"
], - "reject_empty_value": true
}, - "referer_enabled": true,
- "sub_id_validity_check": {
- "is_integer": true,
- "max_length": 50,
- "max_unique_threshold": 0,
- "min_length": 0,
- "unified_sub_id": "string"
}, - "sub_id_validity_check_enabled": true,
- "vpn": {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "residential_vpn_check": true,
- "residential_vpn_check_custom_settings": {
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "residential_vpn_check_custom_settings_enabled": true,
- "threshold_percentage": 100
}, - "vpn_enabled": true
}, - "conversion_filter_preset_id": 0,
- "conversion_filter_settings": {
- "bot": {
- "premium_ip_check_enabled": true,
- "reject_empty_browser_language": true
}, - "bot_enabled": true,
- "click_spam": [
- {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "max_session_time_seconds": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}
], - "click_spam_enabled": true,
- "device_id": {
- "reject_empty_value": true
}, - "device_id_enabled": true,
- "duplicate_user": [
- {
- "enable_duplicate_device_id": true,
- "enable_duplicate_fingerprint": true,
- "enable_duplicate_ip": true,
- "enable_duplicate_ipv6": true,
- "enable_duplicate_uuid": true,
- "expires_in_seconds": 1,
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true,
- "max_duplicates": 1
}
], - "duplicate_user_enabled": true,
- "high_conversion_rate": {
- "block_clicks": true,
- "check_by_sub_id": true,
- "lookback_times": {
- "property1": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}, - "property2": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}
}
}, - "high_conversion_rate_enabled": true,
- "low_conversion_rate": {
- "block_clicks": true,
- "check_by_sub_id": true,
- "lookback_times": {
- "property1": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}, - "property2": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}
}
}, - "low_conversion_rate_enabled": true,
- "low_session_time_anomaly": [
- {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "min_session_time_seconds": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}
], - "low_session_time_anomaly_enabled": true,
- "maximum_session_time": {
- "max_session_time_seconds": 0
}, - "maximum_session_time_enabled": true,
- "minimum_session_time": {
- "min_session_time_seconds": 0
}, - "minimum_session_time_enabled": true,
- "old_browser": {
- "browsers": {
- "property1": "string",
- "property2": "string"
}, - "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "old_browser_enabled": true,
- "old_os": {
- "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "oses": {
- "property1": "string",
- "property2": "string"
}, - "threshold_percentage": 100
}, - "old_os_enabled": true,
- "parameter": {
- "configs": {
- "property1": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}, - "property2": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}
}
}, - "parameter_enabled": true,
- "referer": {
- "categories": [
- "oneof=fraud"
], - "invert": true,
- "keywords": [
- "string"
], - "reject_empty_value": true
}, - "referer_enabled": true,
- "smart_screen_ai": {
- "prompt": "string"
}, - "smart_screen_ai_enabled": true,
- "sub_id_validity_check": {
- "is_integer": true,
- "max_length": 50,
- "max_unique_threshold": 0,
- "min_length": 0,
- "unified_sub_id": "string"
}, - "sub_id_validity_check_enabled": true,
- "third_party_rejection": {
- "rejected_keywords": [
- "string"
]
}, - "third_party_rejection_enabled": true,
- "vpn": {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "residential_vpn_check": true,
- "residential_vpn_check_custom_settings": {
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "residential_vpn_check_custom_settings_enabled": true,
- "threshold_percentage": 100
}, - "vpn_enabled": true,
- "wrong_install_time": {
- "time_delta_tolerance_seconds": 999
}, - "wrong_install_time_enabled": true
}, - "created_at": "string",
- "description": "string",
- "id": "string",
- "impression_filter_settings": {
- "bot": {
- "premium_ip_check_enabled": true,
- "reject_empty_browser_language": true
}, - "bot_enabled": true,
- "device_id": {
- "reject_empty_value": true
}, - "device_id_enabled": true,
- "impression_flooding": {
- "expires_in_seconds": 1,
- "extra_expires_in_seconds_when_rejected": 1,
- "max_duplicate_ip": 1,
- "properties": {
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true
}
}, - "impression_flooding_enabled": true,
- "isp": {
- "invert": true,
- "keywords": [
- "string"
]
}, - "isp_enabled": true,
- "keyword": {
- "expires_in_seconds": 1,
- "keywords": [
- "string"
], - "max_duplicate_allowed": 1,
- "properties": {
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true
}
}, - "keyword_enabled": true,
- "old_browser": {
- "browsers": {
- "property1": "string",
- "property2": "string"
}, - "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "old_browser_enabled": true,
- "old_os": {
- "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "oses": {
- "property1": "string",
- "property2": "string"
}, - "threshold_percentage": 100
}, - "old_os_enabled": true,
- "parameter": {
- "configs": {
- "property1": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}, - "property2": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}
}
}, - "parameter_enabled": true,
- "site_url": {
- "categories": [
- "oneof=fraud"
], - "invert": true,
- "keywords": [
- "string"
], - "reject_empty_value": true
}, - "site_url_enabled": true,
- "sub_id_validity_check": {
- "is_integer": true,
- "max_length": 50,
- "max_unique_threshold": 0,
- "min_length": 0,
- "unified_sub_id": "string"
}, - "sub_id_validity_check_enabled": true,
- "user_frequency": [
- {
- "enable_duplicate_device_id": true,
- "enable_duplicate_fingerprint": true,
- "enable_duplicate_ip": true,
- "enable_duplicate_ipv6": true,
- "enable_duplicate_uuid": true,
- "expires_in_seconds": 1,
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true,
- "max_duplicates": 1
}
], - "user_frequency_enabled": true,
- "vpn": {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "residential_vpn_check": true,
- "residential_vpn_check_custom_settings": {
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "residential_vpn_check_custom_settings_enabled": true,
- "threshold_percentage": 100
}, - "vpn_enabled": true
}, - "integration": "string",
- "last_updated_by": "string",
- "monitoring_mode": true,
- "name": "string",
- "name_with_id": "string",
- "organization": "string",
- "rtb_enabled": true,
- "tags": [
- "string"
], - "tags_meta": [
- {
- "color": "string",
- "created_at": "string",
- "id": "string",
- "last_updated_by": "string",
- "name": "string",
- "organization": "string",
- "updated_at": "string"
}
], - "updated_at": "string",
- "used_by_offers": [
- "string"
]
}
}
You can delete a fraud filter group within an attribution integration.
integrationID required | string The Integration ID |
fraudFilterGroupID required | string The Fraud Filter Group ID |
{ }
You can update a fraud filter group within an attribution integration.
integrationID required | string The Integration ID |
fraudFilterGroupID required | string The Filter Group ID |
A JSON object containing filter group information
active | boolean |
click_filter_preset_id | integer |
object (filters.FraudClickFilterSettingsPayload) | |
conversion_filter_preset_id | integer |
object (filters.FraudConversionFilterSettingsPayload) | |
description | string |
object (filters.FraudImpressionFilterSettingsPayload) | |
monitoring_mode | boolean |
name | string |
rtb_enabled | boolean |
tags | Array of strings |
{- "active": true,
- "click_filter_preset_id": 0,
- "click_filter_settings": {
- "bot": {
- "premium_ip_check_enabled": true,
- "reject_empty_browser_language": true
}, - "bot_enabled": true,
- "click_flooding": {
- "expires_in_seconds": 0,
- "extra_expires_in_seconds_when_rejected": 0,
- "max_duplicate_ip": 0,
- "properties": {
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true
}
}, - "click_flooding_enabled": true,
- "conversion_rejection_threshold": {
- "by_sub_id": true,
- "lookback_hours": 0,
- "minimum_total": 0,
- "threshold": 0
}, - "conversion_rejection_threshold_enabled": true,
- "device_id": {
- "reject_empty_value": true
}, - "device_id_enabled": true,
- "duplicate_user": [
- {
- "enable_duplicate_device_id": true,
- "enable_duplicate_fingerprint": true,
- "enable_duplicate_ip": true,
- "enable_duplicate_ipv6": true,
- "enable_duplicate_uuid": true,
- "expires_in_seconds": 0,
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true,
- "max_duplicates": 0
}
], - "duplicate_user_enabled": true,
- "isp": {
- "invert": true,
- "keywords": [
- "string"
]
}, - "isp_enabled": true,
- "keyword": {
- "expires_in_seconds": 0,
- "keywords": [
- "string"
], - "max_duplicate_allowed": 0,
- "properties": {
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true
}
}, - "keyword_enabled": true,
- "old_browser": {
- "browsers": {
- "property1": "string",
- "property2": "string"
}, - "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 0
}, - "old_browser_enabled": true,
- "old_os": {
- "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "oses": {
- "property1": "string",
- "property2": "string"
}, - "threshold_percentage": 0
}, - "old_os_enabled": true,
- "parameter": {
- "configs": {
- "property1": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}, - "property2": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}
}
}, - "parameter_enabled": true,
- "referer": {
- "categories": [
- "string"
], - "invert": true,
- "keywords": [
- "string"
], - "reject_empty_value": true
}, - "referer_enabled": true,
- "sub_id_validity_check": {
- "is_integer": true,
- "max_length": 0,
- "max_unique_threshold": 0,
- "min_length": 0,
- "unified_sub_id": "string"
}, - "sub_id_validity_check_enabled": true,
- "vpn": {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "residential_vpn_check": true,
- "residential_vpn_check_custom_settings": {
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "residential_vpn_check_custom_settings_enabled": true,
- "threshold_percentage": 0
}, - "vpn_enabled": true
}, - "conversion_filter_preset_id": 0,
- "conversion_filter_settings": {
- "bot": {
- "premium_ip_check_enabled": true,
- "reject_empty_browser_language": true
}, - "bot_enabled": true,
- "click_spam": [
- {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "max_session_time_seconds": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 0
}
], - "click_spam_enabled": true,
- "device_id": {
- "reject_empty_value": true
}, - "device_id_enabled": true,
- "duplicate_user": [
- {
- "enable_duplicate_device_id": true,
- "enable_duplicate_fingerprint": true,
- "enable_duplicate_ip": true,
- "enable_duplicate_ipv6": true,
- "enable_duplicate_uuid": true,
- "expires_in_seconds": 0,
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true,
- "max_duplicates": 0
}
], - "duplicate_user_enabled": true,
- "high_conversion_rate": {
- "block_clicks": true,
- "check_by_sub_id": true,
- "lookback_times": {
- "property1": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}, - "property2": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}
}
}, - "high_conversion_rate_enabled": true,
- "low_conversion_rate": {
- "block_clicks": true,
- "check_by_sub_id": true,
- "lookback_times": {
- "property1": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}, - "property2": {
- "enabled": true,
- "max_conversion_rate": 100,
- "min_click_count": 1,
- "min_conversion_count": 1,
- "min_conversion_rate": 100
}
}
}, - "low_conversion_rate_enabled": true,
- "low_session_time_anomaly": [
- {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "min_session_time_seconds": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 0
}
], - "low_session_time_anomaly_enabled": true,
- "maximum_session_time": {
- "max_session_time_seconds": 0
}, - "maximum_session_time_enabled": true,
- "minimum_session_time": {
- "min_session_time_seconds": 0
}, - "minimum_session_time_enabled": true,
- "old_browser": {
- "browsers": {
- "property1": "string",
- "property2": "string"
}, - "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 0
}, - "old_browser_enabled": true,
- "old_os": {
- "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "oses": {
- "property1": "string",
- "property2": "string"
}, - "threshold_percentage": 0
}, - "old_os_enabled": true,
- "parameter": {
- "configs": {
- "property1": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}, - "property2": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}
}
}, - "parameter_enabled": true,
- "referer": {
- "categories": [
- "string"
], - "invert": true,
- "keywords": [
- "string"
], - "reject_empty_value": true
}, - "referer_enabled": true,
- "smart_screen_ai": {
- "prompt": "string"
}, - "smart_screen_ai_enabled": true,
- "sub_id_validity_check": {
- "is_integer": true,
- "max_length": 0,
- "max_unique_threshold": 0,
- "min_length": 0,
- "unified_sub_id": "string"
}, - "sub_id_validity_check_enabled": true,
- "third_party_rejection": {
- "rejected_keywords": [
- "string"
]
}, - "third_party_rejection_enabled": true,
- "vpn": {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "residential_vpn_check": true,
- "residential_vpn_check_custom_settings": {
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "residential_vpn_check_custom_settings_enabled": true,
- "threshold_percentage": 0
}, - "vpn_enabled": true,
- "wrong_install_time": {
- "time_delta_tolerance_seconds": 0
}, - "wrong_install_time_enabled": true
}, - "description": "string",
- "impression_filter_settings": {
- "bot": {
- "premium_ip_check_enabled": true,
- "reject_empty_browser_language": true
}, - "bot_enabled": true,
- "device_id": {
- "reject_empty_value": true
}, - "device_id_enabled": true,
- "duplicate_user": [
- {
- "enable_duplicate_device_id": true,
- "enable_duplicate_fingerprint": true,
- "enable_duplicate_ip": true,
- "enable_duplicate_ipv6": true,
- "enable_duplicate_uuid": true,
- "expires_in_seconds": 0,
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true,
- "max_duplicates": 0
}
], - "duplicate_user_enabled": true,
- "impression_flooding": {
- "expires_in_seconds": 0,
- "extra_expires_in_seconds_when_rejected": 0,
- "max_duplicate_ip": 0,
- "properties": {
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true,
- "has_user_agent": true
}
}, - "impression_flooding_enabled": true,
- "isp": {
- "invert": true,
- "keywords": [
- "string"
]
}, - "isp_enabled": true,
- "keyword": {
- "expires_in_seconds": 0,
- "keywords": [
- "string"
], - "max_duplicate_allowed": 0,
- "properties": {
- "has_offer": true,
- "has_publisher": true,
- "has_sub_id": true
}
}, - "keyword_enabled": true,
- "old_browser": {
- "browsers": {
- "property1": "string",
- "property2": "string"
}, - "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "threshold_percentage": 0
}, - "old_browser_enabled": true,
- "old_os": {
- "check_by_sub_id": true,
- "invert": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "oses": {
- "property1": "string",
- "property2": "string"
}, - "threshold_percentage": 0
}, - "old_os_enabled": true,
- "parameter": {
- "configs": {
- "property1": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}, - "property2": {
- "blocked_values": [
- "string"
], - "reject_empty_value": true,
- "valid_values": [
- "string"
]
}
}
}, - "parameter_enabled": true,
- "site_url": {
- "categories": [
- "string"
], - "invert": true,
- "keywords": [
- "string"
], - "reject_empty_value": true
}, - "site_url_enabled": true,
- "sub_id_validity_check": {
- "is_integer": true,
- "max_length": 0,
- "max_unique_threshold": 0,
- "min_length": 0,
- "unified_sub_id": "string"
}, - "sub_id_validity_check_enabled": true,
- "vpn": {
- "check_by_sub_id": true,
- "lookback_hours": 0,
- "minimum_request_count": 0,
- "residential_vpn_check": true,
- "residential_vpn_check_custom_settings": {
- "minimum_request_count": 0,
- "threshold_percentage": 100
}, - "residential_vpn_check_custom_settings_enabled": true,
- "threshold_percentage": 0
}, - "vpn_enabled": true
}, - "monitoring_mode": true,
- "name": "string",
- "rtb_enabled": true,
- "tags": [
- "string"
]
}
{ }
You can list all targeting groups within an integration.
integrationID required | string The Integration ID |
{- "data": [
- {
- "active": true,
- "click_targeting_settings": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "conversion_targeting_settings": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "created_at": "string",
- "description": "string",
- "id": "string",
- "impression_targeting_settings": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "integration": "string",
- "last_updated_by": "string",
- "name": "string",
- "organization": "string",
- "related_offers": [
- {
- "id": "string",
- "name": "string"
}
], - "updated_at": "string"
}
], - "meta": {
- "links": {
- "next": {
- "page[after]": "string",
- "page[before]": "string",
- "page[number]": 0,
- "page[size]": 0
}, - "prev": {
- "page[after]": "string",
- "page[before]": "string",
- "page[number]": 0,
- "page[size]": 0
}
}, - "total_count": 0,
- "total_page": 0
}
}
You can create a targeting group within an integration.
integrationID required | string The Integration ID |
A JSON object containing targeting group information
active | boolean |
object (csapi.TargetingSettings) | |
object (csapi.TargetingSettings) | |
description | string |
object (csapi.TargetingSettings) | |
integration required | string |
name required | string |
organization required | string |
{- "active": true,
- "click_targeting_settings": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "conversion_targeting_settings": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "description": "string",
- "impression_targeting_settings": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "integration": "string",
- "name": "string",
- "organization": "string"
}
{- "created_item_id": "string"
}
You can bulk delete targeting groups.
integrationID required | string The Integration ID |
An array of targeting group IDs to delete
data | Array of strings |
{- "data": [
- "string"
]
}
{ }
You can read a targeting group within an integration.
integrationID required | string The Integration ID |
targetingGroupID required | string The Targeting Group ID |
{- "data": {
- "active": true,
- "click_targeting_settings": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "conversion_targeting_settings": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "created_at": "string",
- "description": "string",
- "id": "string",
- "impression_targeting_settings": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "integration": "string",
- "last_updated_by": "string",
- "name": "string",
- "organization": "string",
- "related_offers": [
- {
- "id": "string",
- "name": "string"
}
], - "updated_at": "string"
}
}
You can update a targeting group within an integration.
integrationID required | string The Integration ID |
targetingGroupID required | string The Targeting Group ID |
A JSON object containing targeting group information
active | boolean |
object (csapi.TargetingSettingsPayload) | |
object (csapi.TargetingSettingsPayload) | |
description | string |
object (csapi.TargetingSettingsPayload) | |
name | string |
{- "active": true,
- "click_targeting_settings": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "conversion_targeting_settings": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "description": "string",
- "impression_targeting_settings": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "name": "string"
}
{ }
organizationID required | string The Organization ID |
start_date | string <date> start date |
end_date | string <date> end date |
sort | string sort |
page[size] required | integer page size |
page[before] | string page before |
page[after] | string page after |
{- "data": {
- "count": 0,
- "data": [
- {
- "advertiser": "string",
- "advertiser_db_id": "string",
- "advertiser_id": "string",
- "asn": 0,
- "blocked": 0,
- "browser_language": [
- "string"
], - "browser_name": "string",
- "browser_timezone": "string",
- "browser_version": "string",
- "bundle_id": "string",
- "city": "string",
- "click_ip": "string",
- "country": "string",
- "coupon_code": "string",
- "device_id": "string",
- "device_type": "string",
- "external_transaction_id": "string",
- "extra_params.keys": [
- "string"
], - "extra_params.values": [
- "string"
], - "filter_group_id": "string",
- "final_offer": "string",
- "final_offer_id": "string",
- "fingerprint": "string",
- "integration_id": "string",
- "integration_type": "string",
- "invalid_sub_id": "string",
- "ip_network": "string",
- "is_bot": 0,
- "is_old_browser": 0,
- "is_old_os": 0,
- "isp": "string",
- "lat": 0,
- "long": 0,
- "monitoring_mode": 0,
- "offer": "string",
- "offer_db_id": "string",
- "offer_group_id": "string",
- "offer_id": "string",
- "organization_id": "string",
- "os_name": "string",
- "os_version": "string",
- "payout": 0,
- "postal_code": "string",
- "preview_url_enabled": 0,
- "proxy_type": "string",
- "publisher": "string",
- "publisher_db_id": "string",
- "real_advertiser": "string",
- "real_filter_group_id": "string",
- "real_offer_id": "string",
- "real_publisher": "string",
- "real_tx_id": "string",
- "referer": "string",
- "referer_categories": [
- "string"
], - "rejected_advanced_reason": "string",
- "rejected_language": "string",
- "rejected_primary_reason": "string",
- "rejected_simple_reason": "string",
- "rejections": [
- "string"
], - "request_date": "2019-08-24",
- "request_time": "2019-08-24T14:15:22Z",
- "revenue": 0,
- "rtb_url_used": 0,
- "rtt": 0,
- "server_region": "string",
- "smart_link_id": "string",
- "smartlink_db_id": "string",
- "status": "Approved",
- "sub_id": "string",
- "sub_id_2": "string",
- "sub_id_3": "string",
- "sub_id_4": "string",
- "sub_id_5": "string",
- "sub_id_6": "string",
- "tags": [
- "string"
], - "targeting_group_id": "string",
- "tx_id": "string",
- "user_agent": "string",
- "user_email": "string",
- "uuid": "string"
}
], - "pageInfo": {
- "endCursor": "string",
- "hasNextPage": true,
- "hasPreviousPage": true,
- "startCursor": "string"
}
}
}
organizationID required | string The Organization ID |
start_date required | string <date> start date |
end_date required | string <date> end date |
sort | string sort |
page[size] required | integer page size |
page[before] | string page before |
page[after] | string page after |
{- "data": {
- "count": 0,
- "data": [
- {
- "advertiser": "string",
- "advertiser_db_id": "string",
- "advertiser_name": "string",
- "app_id": "string",
- "app_version": "string",
- "asn": 0,
- "begin_install_time": "2019-08-24T14:15:22Z",
- "browser_language": [
- "string"
], - "browser_name": "string",
- "browser_timezone": "string",
- "browser_version": "string",
- "city": "string",
- "click_ip": "string",
- "click_time": "2019-08-24T14:15:22Z",
- "click_tx_id": "string",
- "conversion_ip": "string",
- "conversion_time": "2019-08-24T14:15:22Z",
- "country": "string",
- "coupon_code": "string",
- "device_id": "string",
- "device_type": "string",
- "event_db_id": "string",
- "event_id": 0,
- "event_name": "string",
- "event_status": 0,
- "external_transaction_id": "string",
- "extra_params.keys": [
- "string"
], - "extra_params.values": [
- "string"
], - "filter_group_id": "string",
- "fingerprint": "string",
- "finish_install_time": "2019-08-24T14:15:22Z",
- "hash": "string",
- "integration_id": "string",
- "integration_type": "string",
- "invalid_sub_id": "string",
- "ip_network": "string",
- "is_bot": 0,
- "is_click_spam": 0,
- "is_low_session_time": 0,
- "is_old_browser": 0,
- "is_old_os": 0,
- "isp": "string",
- "lat": 0,
- "long": 0,
- "network": "string",
- "offer": "string",
- "offer_db_id": "string",
- "offer_group_id": "string",
- "offer_id": "string",
- "offer_id_name": "string",
- "organization_id": "string",
- "os_name": "string",
- "os_version": "string",
- "payout": 0,
- "postal_code": "string",
- "proxy_type": "string",
- "publisher": "string",
- "publisher_db_id": "string",
- "publisher_name": "string",
- "purchase_value": 0,
- "real_advertiser": "string",
- "real_filter_group_id": "string",
- "real_offer_id": "string",
- "real_publisher": "string",
- "real_rejected_advanced_reason": "string",
- "real_rejected_simple_reason": "string",
- "real_tx_id": "string",
- "referer": "string",
- "referer_categories": [
- "string"
], - "rejected": 0,
- "rejected_advanced_reason": "string",
- "rejected_language": "string",
- "rejected_simple_reason": "string",
- "rejections": [
- "string"
], - "request_time": "2019-08-24T14:15:22Z",
- "revenue": 0,
- "risk": "string",
- "rtt": 0,
- "score": 0,
- "server_ip": "string",
- "server_region": "string",
- "session_time": 0,
- "smart_link_id": "string",
- "smartlink_db_id": "string",
- "status": "Approved",
- "sub_id": "string",
- "sub_id_2": "string",
- "sub_id_3": "string",
- "sub_id_4": "string",
- "sub_id_5": "string",
- "sub_id_6": "string",
- "tags": [
- "string"
], - "targeting_group_id": "string",
- "third_party_rejection_reason": "string",
- "third_party_status": "string",
- "tx_id": "string",
- "user_agent": "string",
- "user_email": "string",
- "uuid": "string"
}
], - "pageInfo": {
- "endCursor": "string",
- "hasNextPage": true,
- "hasPreviousPage": true,
- "startCursor": "string"
}
}
}
organizationID required | string The Organization ID |
start_date required | string <date> start date |
end_date required | string <date> end date |
sort | string sort |
page[size] required | integer page size |
page[before] | string page before |
page[after] | string page after |
{- "data": {
- "count": 0,
- "data": [
- {
- "advertiser": "string",
- "advertiser_db_id": "string",
- "advertiser_id": "string",
- "asn": 0,
- "blocked": 0,
- "browser_language": [
- "string"
], - "browser_name": "string",
- "browser_timezone": "string",
- "browser_version": "string",
- "bundle_id": "string",
- "city": "string",
- "click_ip": "string",
- "country": "string",
- "device_id": "string",
- "device_type": "string",
- "extra_params.keys": [
- "string"
], - "extra_params.values": [
- "string"
], - "filter_group_id": "string",
- "fingerprint": "string",
- "integration_id": "string",
- "integration_type": "string",
- "invalid_sub_id": "string",
- "ip_network": "string",
- "is_bot": 0,
- "is_old_browser": 0,
- "is_old_os": 0,
- "isp": "string",
- "lat": 0,
- "long": 0,
- "monitoring_mode": 0,
- "offer_db_id": "string",
- "offer_id": "string",
- "organization_id": "string",
- "os_name": "string",
- "os_version": "string",
- "payout": 0,
- "postal_code": "string",
- "proxy_type": "string",
- "publisher": "string",
- "publisher_db_id": "string",
- "real_advertiser": "string",
- "real_filter_group_id": "string",
- "real_offer_id": "string",
- "real_publisher": "string",
- "real_tx_id": "string",
- "referer": "string",
- "referer_categories": [
- "string"
], - "rejected_advanced_reason": "string",
- "rejected_language": "string",
- "rejected_primary_reason": "string",
- "rejected_simple_reason": "string",
- "rejections": [
- "string"
], - "request_date": "2019-08-24",
- "request_time": "2019-08-24T14:15:22Z",
- "revenue": 0,
- "rtt": 0,
- "server_region": "string",
- "site_url": "string",
- "site_url_categories": [
- "string"
], - "status": "string",
- "sub_id": "string",
- "sub_id_2": "string",
- "sub_id_3": "string",
- "sub_id_4": "string",
- "sub_id_5": "string",
- "sub_id_6": "string",
- "tags": [
- "string"
], - "targeting_group_id": "string",
- "tx_id": "string",
- "user_agent": "string",
- "user_email": "string",
- "uuid": "string"
}
], - "pageInfo": {
- "endCursor": "string",
- "hasNextPage": true,
- "hasPreviousPage": true,
- "startCursor": "string"
}
}
}
organizationID required | string The Organization ID |
start_date required | string <date> start date |
end_date required | string <date> end date |
{- "data": {
- "count": 0,
- "data": [
- {
- "advertiser": "string",
- "advertiser_db_id": "string",
- "clicks_risk": 0,
- "clicks_total": 0,
- "clicks_total_approved": 0,
- "clicks_total_rejected": 0,
- "conversion_rate": 0,
- "conversions_risk": 0,
- "conversions_total": 0,
- "conversions_total_approved": 0,
- "conversions_total_rejected": 0,
- "date": "2019-08-24",
- "event_rate": 0,
- "events_total": 0,
- "events_total_approved": 0,
- "events_total_rejected": 0,
- "impressions_risk": 0,
- "impressions_total": 0,
- "impressions_total_approved": 0,
- "impressions_total_rejected": 0,
- "offer": "string",
- "offer_db_id": "string",
- "offer_id": "string",
- "payout": 0,
- "publisher": "string",
- "publisher_db_id": "string",
- "rejected_payout": 0,
- "rejected_revenue": 0,
- "revenue": 0,
- "sub_id": "string",
- "top_click_per_rejection_total": [
- 0
], - "top_click_rejection": "string",
- "top_click_rejections": [
- "string"
], - "top_conversion_per_rejection_total": [
- 0
], - "top_conversion_rejection": "string",
- "top_conversion_rejections": [
- "string"
], - "top_event_per_rejection_total": [
- 0
], - "top_event_rejection": "string",
- "top_event_rejections": [
- "string"
], - "top_impression_per_rejection_total": [
- 0
], - "top_impression_rejection": "string",
- "top_impression_rejections": [
- "string"
]
}
]
}
}
You can list all coupon codes of the authenticated Publisher.
organizationID required | string The Organization ID |
{- "data": [
- {
- "active": true,
- "created_at": "string",
- "description": "string",
- "end_date": "string",
- "end_date_enabled": false,
- "id": "string",
- "integration": "string",
- "last_updated_by": "string",
- "name": "string",
- "offer_active": true,
- "offer_id": "string",
- "offer_incremental_id": 0,
- "offer_name_with_id": "string",
- "offer_primary_domain": "string",
- "organization": "string",
- "publisher_active": true,
- "publisher_id": "string",
- "publisher_incremental_id": 0,
- "publisher_name_with_id": "string",
- "start_date": "string",
- "start_date_enabled": false,
- "status": "Active",
- "updated_at": "string"
}
], - "meta": {
- "links": {
- "next": {
- "page[after]": "string",
- "page[before]": "string",
- "page[number]": 0,
- "page[size]": 0
}, - "prev": {
- "page[after]": "string",
- "page[before]": "string",
- "page[number]": 0,
- "page[size]": 0
}
}, - "total_count": 0,
- "total_page": 0
}
}
You can list all offer access of the authenticated Publisher.
organizationID required | string The Organization ID |
{- "data": [
- {
- "comments": "string",
- "created_at": "string",
- "id": "string",
- "last_updated_by": "string",
- "offer_id": "string",
- "offer_incremental_id": 0,
- "offer_name_with_id": "string",
- "organization": "string",
- "publisher_id": "string",
- "publisher_incremental_id": 0,
- "publisher_name_with_id": "string",
- "request_status": "Pending",
- "updated_at": "string"
}
], - "meta": {
- "links": {
- "next": {
- "page[after]": "string",
- "page[before]": "string",
- "page[number]": 0,
- "page[size]": 0
}, - "prev": {
- "page[after]": "string",
- "page[before]": "string",
- "page[number]": 0,
- "page[size]": 0
}
}, - "total_count": 0,
- "total_page": 0
}
}
You can bulk delete many offer access requests.
organizationID required | string The Organization ID |
An object array of offer access request IDs to delete
Array of objects (service.OfferAccessRequestDeleteRequest) |
{- "data": [
- {
- "id": "string",
- "offer_id": "string"
}
]
}
{ }
Get all the offers of the authenticated Publisher within the requested organization.
organizationID required | string The Organization ID |
{- "data": [
- {
- "capping": {
- "custom_capping_id": "string",
- "is_custom": true,
- "settings": {
- "block_clicks": true,
- "block_impressions": true,
- "click_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "click_capping_enabled": true,
- "conversion_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "conversion_capping_enabled": true,
- "event_capping_enabled": true,
- "event_capping_per_event_id": {
- "property1": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "property2": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}
}, - "impression_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "impression_capping_enabled": true,
- "payout_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "payout_capping_enabled": true,
- "revenue_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "revenue_capping_enabled": true
}
}, - "click_tracking_links": {
- "js": "string",
- "standard": "string"
}, - "conversion_payout": {
- "payout": 0,
- "payout_percent": 100,
- "payout_type": "CPA"
}, - "created_at": "string",
- "currency": "string",
- "deep_link_enabled": true,
- "description": "string",
- "id": "string",
- "incremental_id": 0,
- "integration": "string",
- "landing_pages": [
- {
- "created_at": "string",
- "incremental_id": 0,
- "last_updated_by": "string",
- "name": "string",
- "preview_url": "string",
- "updated_at": "string"
}
], - "last_updated_by": "string",
- "name": "string",
- "name_with_id": "string",
- "offer_access": "Public",
- "payout_list": [
- {
- "description": "string",
- "incremental_id": 0,
- "name": "string",
- "name_with_id": "string",
- "payout": 0,
- "payout_percent": 100,
- "payout_type": "CPA",
- "revenue": 0,
- "revenue_percent": 100,
- "revenue_type": "RPA"
}
], - "primary_domain": "string",
- "targeting_details": {
- "click_targeting_settings": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "conversion_targeting_settings": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "impression_targeting_settings": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}
}, - "terms_and_conditions": "string",
- "terms_and_conditions_agreed": true,
- "terms_and_conditions_enabled": true,
- "updated_at": "string"
}
], - "meta": {
- "links": {
- "next": {
- "page[after]": "string",
- "page[before]": "string",
- "page[number]": 0,
- "page[size]": 0
}, - "prev": {
- "page[after]": "string",
- "page[before]": "string",
- "page[number]": 0,
- "page[size]": 0
}
}, - "total_count": 0,
- "total_page": 0
}
}
Access the details of the Offer for the authenticated Publisher.
organizationID required | string The Organization ID |
offerID required | string The PublisherViewOffer ID |
{- "data": {
- "capping": {
- "custom_capping_id": "string",
- "is_custom": true,
- "settings": {
- "block_clicks": true,
- "block_impressions": true,
- "click_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "click_capping_enabled": true,
- "conversion_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "conversion_capping_enabled": true,
- "event_capping_enabled": true,
- "event_capping_per_event_id": {
- "property1": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "property2": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}
}, - "impression_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "impression_capping_enabled": true,
- "payout_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "payout_capping_enabled": true,
- "revenue_capping": {
- "daily": 0,
- "every_15_minutes": 0,
- "hourly": 0,
- "monthly": 0,
- "total": 0,
- "weekly": 0
}, - "revenue_capping_enabled": true
}
}, - "click_tracking_links": {
- "js": "string",
- "standard": "string"
}, - "conversion_payout": {
- "payout": 0,
- "payout_percent": 100,
- "payout_type": "CPA"
}, - "created_at": "string",
- "currency": "string",
- "deep_link_enabled": true,
- "description": "string",
- "id": "string",
- "incremental_id": 0,
- "integration": "string",
- "landing_pages": [
- {
- "created_at": "string",
- "incremental_id": 0,
- "last_updated_by": "string",
- "name": "string",
- "preview_url": "string",
- "updated_at": "string"
}
], - "last_updated_by": "string",
- "name": "string",
- "name_with_id": "string",
- "offer_access": "Public",
- "payout_list": [
- {
- "description": "string",
- "incremental_id": 0,
- "name": "string",
- "name_with_id": "string",
- "payout": 0,
- "payout_percent": 100,
- "payout_type": "CPA",
- "revenue": 0,
- "revenue_percent": 100,
- "revenue_type": "RPA"
}
], - "primary_domain": "string",
- "targeting_details": {
- "click_targeting_settings": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "conversion_targeting_settings": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}, - "impression_targeting_settings": {
- "device": {
- "browsers": {
- "Chrome": true,
- "Safari": false
}, - "device_types": {
- "Computer": false,
- "Phone": true
}, - "operating_systems": {
- "Android": false,
- "iOS": true
}, - "os_versions": {
- "property1": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}, - "property2": {
- "is_allowed": true,
- "max_version": "string",
- "min_version": "string"
}
}
}, - "device_targeting_enabled": true,
- "geo": {
- "cities": {
- "property1": true,
- "property2": true
}, - "countries": {
- "property1": true,
- "property2": true
}
}, - "geo_targeting_enabled": true,
- "ip": {
- "ip_addresses": {
- "10.0.0.1": true
}, - "ip_ranges": {
- "10.0.0.1-10.0.0.255": true
}
}, - "ip_targeting_enabled": true,
- "language": {
- "property1": true,
- "property2": true
}, - "language_targeting_enabled": true
}
}, - "terms_and_conditions": "string",
- "terms_and_conditions_agreed": true,
- "terms_and_conditions_enabled": true,
- "updated_at": "string"
}
}
organizationID required | string The Organization ID |
offerID required | string The PubliherViewOffer ID |
{- "data": [
- {
- "description": "string",
- "incremental_id": 0,
- "name": "string",
- "name_with_id": "string",
- "payout": 0,
- "payout_percent": 100,
- "payout_type": "CPA",
- "revenue": 0,
- "revenue_percent": 100,
- "revenue_type": "RPA"
}
], - "meta": {
- "links": {
- "next": {
- "page[after]": "string",
- "page[before]": "string",
- "page[number]": 0,
- "page[size]": 0
}, - "prev": {
- "page[after]": "string",
- "page[before]": "string",
- "page[number]": 0,
- "page[size]": 0
}
}, - "total_count": 0,
- "total_page": 0
}
}
You can create an offer access request.
organizationID required | string The Organization ID |
offerID required | string The PublisherViewOffer ID |
{- "created_item_id": "string"
}
You can read an offer access request.
organizationID required | string The Organization ID |
offerID required | string The PublisherViewOffer ID |
offerAccessRequestID required | string The OfferAccessRequest ID |
{- "data": {
- "comments": "string",
- "created_at": "string",
- "id": "string",
- "last_updated_by": "string",
- "offer_id": "string",
- "offer_incremental_id": 0,
- "offer_name_with_id": "string",
- "organization": "string",
- "publisher_id": "string",
- "publisher_incremental_id": 0,
- "publisher_name_with_id": "string",
- "request_status": "Pending",
- "updated_at": "string"
}
}
You can delete an offer access request.
organizationID required | string The Organization ID |
offerID required | string The PublisherViewOffer ID |
offerAccessRequestID required | string The PublisherViewOfferAccessRequest ID |
{ }
You can list all postback managers of a publisher
organizationID required | string The Organization ID |
{- "data": [
- {
- "active": true,
- "body": "string",
- "created_at": "string",
- "created_by_publisher": 0,
- "delay_metric": "Second",
- "delay_value": 0,
- "description": "string",
- "filters": {
- "event_db_id": "string",
- "event_id": "string",
- "event_name_with_id": "string",
- "filter_status": "Any",
- "offer_db_id": "string",
- "offer_id": "string",
- "offer_name_with_id": "string",
- "publisher_db_id": "string",
- "publisher_id": "string",
- "publisher_name_with_id": "string",
- "rejection_reasons": [
- "string"
]
}, - "headers": {
- "property1": [
- "string"
], - "property2": [
- "string"
]
}, - "id": "string",
- "integration": "string",
- "last_updated_by": "string",
- "method": "GET",
- "name": "string",
- "organization": "string",
- "service_type": "click",
- "updated_at": "string",
- "url": "string"
}
], - "meta": {
- "links": {
- "next": {
- "page[after]": "string",
- "page[before]": "string",
- "page[number]": 0,
- "page[size]": 0
}, - "prev": {
- "page[after]": "string",
- "page[before]": "string",
- "page[number]": 0,
- "page[size]": 0
}
}, - "total_count": 0,
- "total_page": 0
}
}
Create a postback manager for a publisher
organizationID required | string The Organization ID |
A JSON object containing postback information
active | boolean |
body | string |
delay_metric | string Default: "Second" Enum: "Second" "Minute" "Hour" |
delay_value | integer |
description | string |
object (csapi.PostbackManagerFilters) | |
object | |
integration required | string |
method | string Default: "GET" Enum: "GET" "POST" "PUT" "DELETE" "PATCH" |
name required | string |
organization required | string |
service_type required | string Enum: "click" "impression" "conversion" "event" |
url required | string |
{- "active": true,
- "body": "string",
- "delay_metric": "Second",
- "delay_value": 0,
- "description": "string",
- "filters": {
- "event_id": "string",
- "filter_status": "Any",
- "offer_id": "string",
- "publisher_id": "string",
- "rejection_reasons": [
- "string"
]
}, - "headers": {
- "property1": [
- "string"
], - "property2": [
- "string"
]
}, - "integration": "string",
- "method": "GET",
- "name": "string",
- "organization": "string",
- "service_type": "click",
- "url": "string"
}
{- "created_item_id": "string"
}
You can bulk delete postbacks.
organizationID required | string The Organization ID of the postback. |
An array of postback IDs to delete
data | Array of strings |
{- "data": [
- "string"
]
}
{ }
You can bulk update the postbacks status.
organizationID required | string The Organization ID of the postback. |
An array of postback IDs to update and the new status
active | boolean |
data | Array of strings |
{- "active": true,
- "data": [
- "string"
]
}
{ }
You can read an postback manager of a publisher.
organizationID required | string The Organization ID |
postbackID required | string The PostbackManager ID |
{- "data": {
- "active": true,
- "body": "string",
- "created_at": "string",
- "created_by_publisher": 0,
- "delay_metric": "Second",
- "delay_value": 0,
- "description": "string",
- "filters": {
- "event_db_id": "string",
- "event_id": "string",
- "event_name_with_id": "string",
- "filter_status": "Any",
- "offer_db_id": "string",
- "offer_id": "string",
- "offer_name_with_id": "string",
- "publisher_db_id": "string",
- "publisher_id": "string",
- "publisher_name_with_id": "string",
- "rejection_reasons": [
- "string"
]
}, - "headers": {
- "property1": [
- "string"
], - "property2": [
- "string"
]
}, - "id": "string",
- "integration": "string",
- "last_updated_by": "string",
- "method": "GET",
- "name": "string",
- "organization": "string",
- "service_type": "click",
- "updated_at": "string",
- "url": "string"
}
}
Update a postback manager of a Publisher
postbackID required | string The PostbackManager ID |
organizationID required | string The Organization ID |
A JSON object containing postback information
active | boolean |
body | string |
delay_metric | string Enum: "Second" "Minute" "Hour" |
delay_value | integer |
description | string |
object (csapi.PostbackManagerFiltersPayload) | |
object | |
method | string Enum: "GET" "POST" "PUT" "DELETE" "PATCH" |
name | string |
url | string |
{- "active": true,
- "body": "string",
- "delay_metric": "Second",
- "delay_value": 0,
- "description": "string",
- "filters": {
- "event_id": "string",
- "filter_status": "Any",
- "offer_id": "string",
- "publisher_id": "string",
- "rejection_reasons": [
- "string"
]
}, - "headers": {
- "property1": [
- "string"
], - "property2": [
- "string"
]
}, - "method": "GET",
- "name": "string",
- "url": "string"
}
{ }