Adsecurity API Documentation (2.0)

Getting Started

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.

Authentication

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 network administrators you can create individual API keys and find your API keys under Organization > API Access in Adsecurity.
  • For all users you can use your own API key by going to Profile > Security > Enable API Access.

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

Making Requests

All requests require API-KEY and Content-Type in the header. Requests made without authentication will fail.

Request

When submitting data to a resource via POST, or PATCH, you must submit your payload in JSON.

{
"property" : "value"
}

Response

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.


JSONAPI Response

You are also able to use jsonapi specification to modify the GET response as follows:

Filter:

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.

Fields:

To return specific fields you can add fields in the url query params like: fields=id,name

Sorting:

You can sort the result by adding sort query params like sort=-type,name. - will act for descending

Pagination:

To paginate the result you need to provide page query param like page[number]=1&page[size]=8


Response Table

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

advertiser

List all advertisers

You can list all advertisers

Authorizations:
ApiKeyAuthBearerAuth

Responses

Response samples

Content type
application/json
{
  • "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
    }
}

Create an advertiser

You can create an advertiser.

Authorizations:
ApiKeyAuthBearerAuth
Request Body schema: application/json

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

Responses

Request samples

Content type
application/json
{
  • "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"
}

Response samples

Content type
application/json
{
  • "created_item_id": "string"
}

Bulk delete advertisers

You can bulk delete advertisers.

Authorizations:
ApiKeyAuthBearerAuth
Request Body schema: application/json

An array of advertiser IDs to delete

data
Array of strings

Responses

Request samples

Content type
application/json
{
  • "data": [
    • "string"
    ]
}

Response samples

Content type
application/json
{ }

Bulk update advertisers status

You can bulk update the advertisers status.

Authorizations:
ApiKeyAuthBearerAuth
Request Body schema: application/json

An array of advertiser IDs to update and the new status

active
boolean
data
Array of strings

Responses

Request samples

Content type
application/json
{
  • "active": true,
  • "data": [
    • "string"
    ]
}

Response samples

Content type
application/json
{ }

Read an advertiser

You can read an advertiser.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
advertiserID
required
string

The Advertiser ID

Responses

Response samples

Content type
application/json
{
  • "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"
    }
}

Delete an advertiser

You can delete an advertiser.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
advertiserID
required
string

The Advertiser ID

Responses

Response samples

Content type
application/json
{ }

Update an advertiser

You can update an advertiser.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
advertiserID
required
string

The Advertiser ID

Request Body schema: application/json

A JSON object containing advertiser information

active
boolean
address
string
country
string
description
string
email
string
first_name
string
last_name
string
manager_id
string
messenger
string
name
string
phone
string
tags
Array of strings
website
string

Responses

Request samples

Content type
application/json
{
  • "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"
}

Response samples

Content type
application/json
{ }

publisher

List all publishers

You can list all publishers

Authorizations:
ApiKeyAuthBearerAuth

Responses

Response samples

Content type
application/json
{
  • "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
    }
}

Create an publisher

You can create an publisher.

Authorizations:
ApiKeyAuthBearerAuth
Request Body schema: application/json

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

Responses

Request samples

Content type
application/json
{
  • "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"
}

Response samples

Content type
application/json
{
  • "created_item_id": "string"
}

Bulk delete publishers

You can bulk delete publishers.

Authorizations:
ApiKeyAuthBearerAuth
Request Body schema: application/json

An array of publisher IDs to delete

data
Array of strings

Responses

Request samples

Content type
application/json
{
  • "data": [
    • "string"
    ]
}

Response samples

Content type
application/json
{ }

Bulk update publishers status

You can bulk update the publishers status.

Authorizations:
ApiKeyAuthBearerAuth
Request Body schema: application/json

An array of publisher IDs to update and the new status

active
boolean
data
Array of strings

Responses

Request samples

Content type
application/json
{
  • "active": true,
  • "data": [
    • "string"
    ]
}

Response samples

Content type
application/json
{ }

Read an publisher

You can read an publisher.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
publisherID
required
string

The Publisher ID

Responses

Response samples

Content type
application/json
{
  • "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"
    }
}

Delete an publisher

You can delete an publisher.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
publisherID
required
string

The Publisher ID

Responses

Response samples

Content type
application/json
{ }

Update an publisher

You can update an publisher.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
publisherID
required
string

The Publisher ID

Request Body schema: application/json

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
email
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

Responses

Request samples

Content type
application/json
{
  • "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"
}

Response samples

Content type
application/json
{ }

offer

List all offers

You can list all offers within an integration

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

Responses

Response samples

Content type
application/json
{
  • "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
    }
}

Create an offer

You can create an offer in an integration.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

Request Body schema: application/json

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

Responses

Request samples

Content type
application/json
{
  • "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"
}

Response samples

Content type
application/json
{
  • "created_item_id": "string"
}

Bulk delete offers

You can bulk delete offers.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

Request Body schema: application/json

An array of offer IDs to delete

data
Array of strings

Responses

Request samples

Content type
application/json
{
  • "data": [
    • "string"
    ]
}

Response samples

Content type
application/json
{ }

Bulk update offers status

You can bulk update the offers status.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

Request Body schema: application/json

An array of offer IDs to update and the new status

active
boolean
data
Array of strings

Responses

Request samples

Content type
application/json
{
  • "active": true,
  • "data": [
    • "string"
    ]
}

Response samples

Content type
application/json
{ }

Read an offer

You can read an offer in an integration.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

offerID
required
string

The Offer ID

Responses

Response samples

Content type
application/json
{
  • "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"
    }
}

Delete an offer

You can delete an offer in an integration.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

offerID
required
string

The Offer ID

Responses

Response samples

Content type
application/json
{ }

Update an offer

You can update an offer in an integration.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

offerID
required
string

The Offer ID

Request Body schema: application/json

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

Responses

Request samples

Content type
application/json
{
  • "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"
}

Response samples

Content type
application/json
{ }

Bulk update smartlinks status

You can bulk update the smartlinks status.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

query Parameters
organization
string

The Organization ID of the smartlink.

Request Body schema: application/json

An array of smartlink IDs to update and the new status

active
boolean
data
Array of strings

Responses

Request samples

Content type
application/json
{
  • "active": true,
  • "data": [
    • "string"
    ]
}

Response samples

Content type
application/json
{ }

Read a smartlink

You can read a smartlink in an integration.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

smartlinkID
required
string

The SmartLink ID

Responses

Response samples

Content type
application/json
{
  • "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
        }
      ]
    }
}

Update a smartlink

You can update a smartlink in an integration.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

smartlinkID
required
string

The SmartLink ID

query Parameters
organization
string

The Organization ID of the smartlink.

Request Body schema: application/json

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)

Responses

Request samples

Content type
application/json
{
  • "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
      }
    ]
}

Response samples

Content type
application/json
{ }

List all offers for super admin

You can list all offers

Authorizations:
ApiKeyAuthBearerAuth

Responses

Response samples

Content type
application/json
{
  • "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
    }
}

report

Fetch Click raw data

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.

Authorizations:
ApiKeyAuthBearerAuth
query Parameters
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

Request Body schema: application/json

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"

Responses

Request samples

Content type
application/json
{
  • "end_date": "string",
  • "fields": [
    • "string"
    ],
  • "filters": [
    • {
      • "field": "string",
      • "operator": "is",
      • "value": null
      }
    ],
  • "integration_id": "string",
  • "page_number": 0,
  • "page_size": 0,
  • "start_date": "string"
}

Response samples

Content type
application/json
{
  • "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"
      }
    }
}

Fetch Conversion raw data

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.

Authorizations:
ApiKeyAuthBearerAuth
query Parameters
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

Request Body schema: application/json

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"

Responses

Request samples

Content type
application/json
{
  • "end_date": "string",
  • "fields": [
    • "string"
    ],
  • "filters": [
    • {
      • "field": "string",
      • "operator": "is",
      • "value": null
      }
    ],
  • "integration_id": "string",
  • "page_number": 0,
  • "page_size": 0,
  • "start_date": "string"
}

Response samples

Content type
application/json
{
  • "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"
      }
    }
}

Update conversion status

Authorizations:
ApiKeyAuthBearerAuth
Request Body schema: application/json

The update payload

integration_id
string
organization_id
string
Array of objects (service.ConversionUpdateRequest)

Responses

Request samples

Content type
application/json
{
  • "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
        }
      }
    ]
}

Response samples

Content type
application/json
{
  • "success": true
}

Fetch Impression raw data

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.

Authorizations:
ApiKeyAuthBearerAuth
query Parameters
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

Request Body schema: application/json

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"

Responses

Request samples

Content type
application/json
{
  • "end_date": "string",
  • "fields": [
    • "string"
    ],
  • "filters": [
    • {
      • "field": "string",
      • "operator": "is",
      • "value": null
      }
    ],
  • "integration_id": "string",
  • "page_number": 0,
  • "page_size": 0,
  • "start_date": "string"
}

Response samples

Content type
application/json
{
  • "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"
      }
    }
}

Fetch data for overview table

Authorizations:
ApiKeyAuthBearerAuth
query Parameters
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.

Responses

Response samples

Content type
application/json
{
  • "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"
          ]
        }
      ]
    }
}

download-center

Initiate a click export

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

query Parameters
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

Responses

Response samples

Content type
application/json
{
  • "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"
}

Initiate a conversion export

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

query Parameters
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

Responses

Response samples

Content type
application/json
{
  • "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"
}

Initiate a impression export

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

query Parameters
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

Responses

Response samples

Content type
application/json
{
  • "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"
}

fraud-filters

List all fraud filter groups

You can list all fraud filter groups within an attribution integration.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

Responses

Response samples

Content type
application/json
{
  • "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
    }
}

Create a fraud filter group

You can create a fraud filter group within an attribution integration.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

Request Body schema: application/json

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

Responses

Request samples

Content type
application/json
{
  • "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"
    ]
}

Response samples

Content type
application/json
{
  • "created_item_id": "string"
}

Bulk delete fraud filter groups

You can bulk delete fraud filter groups.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

query Parameters
organization
string

The Organization ID of the fraud filter group.

Request Body schema: application/json

An array of fraud filter group IDs to delete

data
Array of strings

Responses

Request samples

Content type
application/json
{
  • "data": [
    • "string"
    ]
}

Response samples

Content type
application/json
{ }

Bulk update fraud filter groups

You can bulk update the fraud filter groups.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

query Parameters
organization
string

The Organization ID of the fraud filter group.

Request Body schema: application/json

An array of fraud filter group IDs to update

data
Array of strings
monitoring_mode
boolean

Responses

Request samples

Content type
application/json
{
  • "data": [
    • "string"
    ],
  • "monitoring_mode": true
}

Response samples

Content type
application/json
{ }

Read a fraud filter group

You can read a fraud filter group within an attribution integration.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

fraudFilterGroupID
required
string

The Fraud Filter Group ID

Responses

Response samples

Content type
application/json
{
  • "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"
      ]
    }
}

Delete a filter group

You can delete a fraud filter group within an attribution integration.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

fraudFilterGroupID
required
string

The Fraud Filter Group ID

Responses

Response samples

Content type
application/json
{ }

Update a fraud filter group

You can update a fraud filter group within an attribution integration.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

fraudFilterGroupID
required
string

The Filter Group ID

Request Body schema: application/json

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

Responses

Request samples

Content type
application/json
{
  • "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"
    ]
}

Response samples

Content type
application/json
{ }

targeting-group

List all targeting groups

You can list all targeting groups within an integration.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

Responses

Response samples

Content type
application/json
{
  • "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
    }
}

Create a targeting group

You can create a targeting group within an integration.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

Request Body schema: application/json

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

Responses

Request samples

Content type
application/json
{
  • "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"
}

Response samples

Content type
application/json
{
  • "created_item_id": "string"
}

Bulk delete targeting groups

You can bulk delete targeting groups.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

Request Body schema: application/json

An array of targeting group IDs to delete

data
Array of strings

Responses

Request samples

Content type
application/json
{
  • "data": [
    • "string"
    ]
}

Response samples

Content type
application/json
{ }

Read a targeting group

You can read a targeting group within an integration.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

targetingGroupID
required
string

The Targeting Group ID

Responses

Response samples

Content type
application/json
{
  • "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"
    }
}

Delete a targeting group

You can delete a targeting group within an integration.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

targetingGroupID
required
string

The Targeting Group ID

Responses

Response samples

Content type
application/json
{ }

Update a targeting group

You can update a targeting group within an integration.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

targetingGroupID
required
string

The Targeting Group ID

Request Body schema: application/json

A JSON object containing targeting group information

active
boolean
object (csapi.TargetingSettingsPayload)
object (csapi.TargetingSettingsPayload)
description
string
object (csapi.TargetingSettingsPayload)
name
string

Responses

Request samples

Content type
application/json
{
  • "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"
}

Response samples

Content type
application/json
{ }

publisher-report

Fetch data for Click UI Report

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
organizationID
required
string

The Organization ID

query Parameters
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

Responses

Response samples

Content type
application/json
{
  • "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"
      }
    }
}

Fetch data for Conversion UI Report

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
organizationID
required
string

The Organization ID

query Parameters
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

Responses

Response samples

Content type
application/json
{
  • "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"
      }
    }
}

Fetch data for Impression UI Report

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
organizationID
required
string

The Organization ID

query Parameters
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

Responses

Response samples

Content type
application/json
{
  • "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"
      }
    }
}

Fetch data for overview table

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
organizationID
required
string

The Organization ID

query Parameters
start_date
required
string <date>

start date

end_date
required
string <date>

end date

Responses

Response samples

Content type
application/json
{
  • "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"
          ]
        }
      ]
    }
}

publisher-offer

List all coupon codes within the Publisher

You can list all coupon codes of the authenticated Publisher.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
organizationID
required
string

The Organization ID

Responses

Response samples

Content type
application/json
{
  • "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
    }
}

List all offer access requests

You can list all offer access of the authenticated Publisher.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
organizationID
required
string

The Organization ID

Responses

Response samples

Content type
application/json
{
  • "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
    }
}

Bulk delete many offer access requests

You can bulk delete many offer access requests.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
organizationID
required
string

The Organization ID

Request Body schema: application/json

An object array of offer access request IDs to delete

Array of objects (service.OfferAccessRequestDeleteRequest)

Responses

Request samples

Content type
application/json
{
  • "data": [
    • {
      • "id": "string",
      • "offer_id": "string"
      }
    ]
}

Response samples

Content type
application/json
{ }

Get all offers of a publisher

Get all the offers of the authenticated Publisher within the requested organization.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
organizationID
required
string

The Organization ID

Responses

Response samples

Content type
application/json
{
  • "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
    }
}

Get offer details of a publisher

Access the details of the Offer for the authenticated Publisher.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
organizationID
required
string

The Organization ID

offerID
required
string

The PublisherViewOffer ID

Responses

Response samples

Content type
application/json
{
  • "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"
    }
}

Agree to the Terms and Conditions of an Offer

You can agree to the Terms and Conditions of an Offer.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
organizationID
required
string

The Organization ID

offerID
required
string

The Offer ID

Responses

Response samples

Content type
application/json
{ }

Get all the event settings of the requested offer.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
organizationID
required
string

The Organization ID

offerID
required
string

The PubliherViewOffer ID

Responses

Response samples

Content type
application/json
{
  • "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
    }
}

Create an offer access request

You can create an offer access request.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
organizationID
required
string

The Organization ID

offerID
required
string

The PublisherViewOffer ID

Responses

Response samples

Content type
application/json
{
  • "created_item_id": "string"
}

Read an offer access request

You can read an offer access request.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
organizationID
required
string

The Organization ID

offerID
required
string

The PublisherViewOffer ID

offerAccessRequestID
required
string

The OfferAccessRequest ID

Responses

Response samples

Content type
application/json
{
  • "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"
    }
}

Delete an offer access request

You can delete an offer access request.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
organizationID
required
string

The Organization ID

offerID
required
string

The PublisherViewOffer ID

offerAccessRequestID
required
string

The PublisherViewOfferAccessRequest ID

Responses

Response samples

Content type
application/json
{ }

publisher-postback

List all postbacks of a publisher

You can list all postback managers of a publisher

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
organizationID
required
string

The Organization ID

Responses

Response samples

Content type
application/json
{
  • "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 publisher postback

Create a postback manager for a publisher

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
organizationID
required
string

The Organization ID

Request Body schema: application/json

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

Responses

Request samples

Content type
application/json
{
  • "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"
}

Response samples

Content type
application/json
{
  • "created_item_id": "string"
}

Bulk delete postbacks

You can bulk delete postbacks.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
organizationID
required
string

The Organization ID of the postback.

Request Body schema: application/json

An array of postback IDs to delete

data
Array of strings

Responses

Request samples

Content type
application/json
{
  • "data": [
    • "string"
    ]
}

Response samples

Content type
application/json
{ }

Bulk update postbacks status

You can bulk update the postbacks status.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
organizationID
required
string

The Organization ID of the postback.

Request Body schema: application/json

An array of postback IDs to update and the new status

active
boolean
data
Array of strings

Responses

Request samples

Content type
application/json
{
  • "active": true,
  • "data": [
    • "string"
    ]
}

Response samples

Content type
application/json
{ }

Read a postback manager

You can read an postback manager of a publisher.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
organizationID
required
string

The Organization ID

postbackID
required
string

The PostbackManager ID

Responses

Response samples

Content type
application/json
{
  • "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"
    }
}

Delete a publisher postback

Delete a postback manager of a publisher.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
postbackID
required
string

The PostbackManager ID

organizationID
required
string

The Organization ID

Responses

Response samples

Content type
application/json
{ }

Update a publisher postback

Update a postback manager of a Publisher

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
postbackID
required
string

The PostbackManager ID

organizationID
required
string

The Organization ID

Request Body schema: application/json

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

Responses

Request samples

Content type
application/json
{
  • "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"
}

Response samples

Content type
application/json
{ }