Integr8 API Documentation (1)

Integr8 Support: support@integr8.co URL: https://integr8.co

Introduction

The API is organized around REST. Our API has predictable resource-oriented URLs, accepts form-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs.

Authentication

All requests to the 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.
  • For all users you can use your own API key by going to Profile > Security > Enable API Access.

Status Codes

Code Summary Description
200 OK Everything worked as expected.
400 Bad Request The request was unacceptable, often due to missing a required parameter.
401 Unauthorized No valid API key provided.
402 Request Failed The parameters were valid but the request failed.
403 Forbidden The API key doesn't have permissions to perform the request.
404 Not Found The requested resource doesn't exist.
429 Too Many Requests Too many requests hit the API too quickly. We recommend an exponential backoff of your requests.
500, 502, 503, 504 Server Errors Something went wrong on Server's end. (These are rare.)

Errors

We use conventional HTTP response codes to indicate the success or failure of an API request. In general: Codes in the 2xx range indicate success. Codes in the 4xx range indicate an error that failed given the information provided (e.g., a required parameter was omitted, a wrong data type is provided to a json field). Codes in the 5xx range indicate an error with our servers (these are rare).

Filtering

To filter the result you can use the filter query parameter. Format:

filter[field_name][operator] = value
  • field_name - is the field or property name. To filter a property within an object use dots such as filter[outer_field.inner_field]
  • operator - the operators used. If omitted, the default operator is eq.

Sorting

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

Pagination

The API in general is using numbered pages except for Reports.

To paginate the result you can provide the following:

  • page[number] is the number of the page.
  • page[size] is the size of the page. The API max limit is 100.

In the response, meta.total_count shows the number of total objects and meta.total_page shows the number of total pages.

{
  "meta": {
    "total_count": 1000,
    "total_page": 50
  }
}

Example:

Go to the first page:

GET /api/v2/coffees?page[size]=100&page[number]=1

Go to the second page:

GET /api/v2/coffees?page[size]=100&page[number]=2

Offers

Manage Offers

List Offers

List multiple Offers using pagination and filtering.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

Responses

Response Schema: application/json
Array of objects (csapi.Offer)
object (csapi.ListMeta)

Response samples

Content type
application/json
{
}

Create Offer

Create a new Offer.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

Request Body schema: application/json
required

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.

platform
string
Enum: "Unknown" "HasOffers" "Everflow" "Affise"

The platform from which the data was migrated.

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
{
}

Response samples

Content type
application/json
{
}

Bulk Delete Offers

Bulk delete Offers by providing an array of Offer IDs.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

Request Body schema: application/json
required

An array of offer IDs to delete

data
Array of strings

Responses

Response Schema: application/json
object (service.svcBulkDeleteResponse)

Request samples

Content type
application/json
{
}

Response samples

Content type
application/json
{ }

Bulk Update Offers Status

Bulk update Offers status by providing an array of Offer IDs and the new status.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

Request Body schema: application/json
required

An array of offer IDs to update and the new status

active
boolean
data
Array of strings

Responses

Response Schema: application/json
object (service.svcPatchResponse)

Request samples

Content type
application/json
{
}

Response samples

Content type
application/json
{ }

Get Offer

Get Offer information.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

offerID
required
string

The Offer ID

Responses

Response Schema: application/json
object (csapi.Offer)

Response samples

Content type
application/json
{
}

Delete Offer

Delete an Offer. Deleted Offers are archived and can be restored.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

offerID
required
string

The Offer ID

Responses

Response Schema: application/json
object (service.svcDeleteResponse)

Response samples

Content type
application/json
{ }

Update Offer

Update an Offer by providing the object ID.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

offerID
required
string

The Offer ID

Request Body schema: application/json
required

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

Response Schema: application/json
object (service.svcPatchResponse)

Request samples

Content type
application/json
{
}

Response samples

Content type
application/json
{ }

Publishers

List Publishers

List multiple Publishers using pagination and filtering.

Authorizations:
ApiKeyAuthBearerAuth

Responses

Response Schema: application/json
Array of objects (csapi.Publisher)
object (csapi.ListMeta)

Response samples

Content type
application/json
{
}

Create Publisher

Create a new Publisher.

Authorizations:
ApiKeyAuthBearerAuth
Request Body schema: application/json
required

A JSON object containing publisher information

active
boolean

If this is true, the publisher is active.

address
string

The full address of the publisher.

api_access_enabled
boolean
api_key
string
avatar_color
string
Default: "#6F5DE6"
object (csapi.PublisherBilling)
city
string

The city of the publisher's company.

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

The countries this publisher is targeting.

country
string

The country of the publisher's company.

description
string <= 255 characters
email
required
string

This is used as the publisher's admin email and login to the dashboard.

first_name
string

The publisher's first name for individual publishers.

fraud_visibility_enabled
boolean
last_name
string

The publisher's last name for individual publishers.

manager_id
string
messenger
string
name
required
string

The publisher's name or company name.

pending
boolean

If this is true, the publisher is pending for approval.

phone
string
platform
string
Enum: "Unknown" "HasOffers" "Everflow" "Affise"

The platform from which the data was migrated.

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"

The promotional methods this publisher are using.

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
{
}

Response samples

Content type
application/json
{
}

Bulk Delete Publishers

Bulk delete Publishers by providing an array of Publisher IDs.

Authorizations:
ApiKeyAuthBearerAuth
Request Body schema: application/json
required

An array of publisher IDs to delete

data
Array of strings

Responses

Response Schema: application/json
object (service.svcDeleteResponse)

Request samples

Content type
application/json
{
}

Response samples

Content type
application/json
{ }

Bulk Update Publishers Status

Bulk update Publishers status by providing an array of Publisher IDs and the new status.

Authorizations:
ApiKeyAuthBearerAuth
Request Body schema: application/json
required

An array of publisher IDs to update and the new status

active
boolean
data
Array of strings

Responses

Response Schema: application/json
object (service.svcPatchResponse)

Request samples

Content type
application/json
{
}

Response samples

Content type
application/json
{ }

Get Publisher

Get a Publisher information.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
publisherID
required
string

The Publisher ID

Responses

Response Schema: application/json
object (csapi.Publisher)

Response samples

Content type
application/json
{
}

Delete Publisher

Delete a Publisher. This will archive the Publisher.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
publisherID
required
string

The Publisher ID

Responses

Response Schema: application/json
object (service.svcDeleteResponse)

Response samples

Content type
application/json
{ }

Update Publisher

Update a Publisher information.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
publisherID
required
string

The Publisher ID

Request Body schema: application/json
required

A JSON object containing publisher information

active
boolean
address
string
api_access_enabled
boolean
avatar_color
string
object (csapi.PublisherBillingPayload)
object (csapi.AdditionalThrottleRateFilters)
conversion_throttle_enabled
boolean
conversion_throttle_percentage
integer
conversion_throttle_status
string
Enum: "Rejected" "Pending"
countries
Array of strings
country
string
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

Response Schema: application/json
object (service.svcPatchResponse)

Request samples

Content type
application/json
{
}

Response samples

Content type
application/json
{ }

Generate Publisher API Key

Generate a new API Key for a Publisher.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
publisherID
required
string

The Publisher ID

Responses

Response Schema: application/json
api_key
string

Response samples

Content type
application/json
{
}

Advertisers

List Advertisers

List multiple Advertisers with pagination and filtering.

Authorizations:
ApiKeyAuthBearerAuth

Responses

Response Schema: application/json
Array of objects (csapi.Advertiser)
object (csapi.ListMeta)

Response samples

Content type
application/json
{
}

Create Advertiser

Create a new Advertiser.

Authorizations:
ApiKeyAuthBearerAuth
Request Body schema: application/json
required

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
manager_id
string
messenger
string
name
required
string
phone
string
platform
string
Enum: "Unknown" "HasOffers" "Everflow" "Affise"

The platform from which the data was migrated.

tags
Array of strings <= 50 items
website
string

Responses

Request samples

Content type
application/json
{
}

Response samples

Content type
application/json
{
}

Bulk Delete Advertisers

Bulk delete Advertisers by providing an array of Advertiser IDs.

Authorizations:
ApiKeyAuthBearerAuth
Request Body schema: application/json
required

An array of advertiser IDs to delete

data
Array of strings

Responses

Response Schema: application/json
object (service.svcDeleteResponse)

Request samples

Content type
application/json
{
}

Response samples

Content type
application/json
{ }

Bulk Update Advertisers Status

Bulk update Advertisers status by providing an array of Advertiser IDs and the new status.

Authorizations:
ApiKeyAuthBearerAuth
Request Body schema: application/json
required

An array of advertiser IDs to update and the new status

active
boolean
data
Array of strings

Responses

Response Schema: application/json
object (service.svcPatchResponse)

Request samples

Content type
application/json
{
}

Response samples

Content type
application/json
{ }

Get Advertiser

Get an Advertiser information.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
advertiserID
required
string

The Advertiser ID

Responses

Response Schema: application/json
object (csapi.Advertiser)

Response samples

Content type
application/json
{
}

Delete Advertiser

Delete an Advertiser. Deleted Advertisers are archived and can be restored.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
advertiserID
required
string

The Advertiser ID

Responses

Response Schema: application/json
object (service.svcDeleteResponse)

Response samples

Content type
application/json
{ }

Update Advertiser

Update an Advertiser information.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
advertiserID
required
string

The Advertiser ID

Request Body schema: application/json
required

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

Response Schema: application/json
object (service.svcPatchResponse)

Request samples

Content type
application/json
{
}

Response samples

Content type
application/json
{ }

Reports

Pagination

The Reports API page[size] limit is only 100. If you need to quickly and efficiently export a massive amount of data, we recommend to use the Download Center Export APIs.

Reports API methods use cursor-based pagination through the page[after] and page[before] parameters. Both parameters accept an existing value in transaction ID format which matches the objects real_tx_id field.

The values to use can be found under pageInfo.startCursor and pageInfo.endCursor from the response and return objects in reverse chronological order. The page[before] parameter returns objects listed before object.real_tx_id. The page[after] parameter returns objects listed after object.real_tx_id. These parameters are mutually exclusive. You can use either the page[after] or page[before] parameter, but not both simultaneously.

  • data.pageInfo.startCursor is the cursor of first object in the current page.
  • data.pageInfo.endCursor is the cursor of the last object in the current page.
  • data.pageInfo.hasNextPage shows you if there is a next page.
  • data.pageInfo.hasPreviousPage shows you if there is a previous page.
GET /api/v2/reports/v2/conversion-table?page[size]=25&integration_id={integrationID}&start_date=2025-02-01&end_date=2025-02-27

Example response:

{
  "data": {
    "data": [
      {
        "real_tx_id": "ABC"
      },
      {
        "real_tx_id": "............"
      },
      {
        "real_tx_id": "XYZ"
      }
    ],
    "pageInfo": {
      "startCursor": "ABC",
      "endCursor": "XYZ",
      "hasPreviousPage": true,
      "hasNextPage": true
    }
  }
}

Fetch the next page by adding &page[after]=XYZ in the request.

GET /api/v2/reports/v2/conversion-table?page[size]=25&integration_id={integrationID}&start_date=2025-02-01&end_date=2025-02-27&page[after]=XYZ'

Example response:

{
  "data": {
    "data": [
      {
        "real_tx_id": "{startCursor}"
      },
      {
        "real_tx_id": "............"
      },
      {
        "real_tx_id": "{endCursor}"
      }
    ],
    "pageInfo": {
      "startCursor": "{startCursor}",
      "endCursor": "{endCursor}",
      "hasPreviousPage": true,
      "hasNextPage": true
    }
  }
}

Sorting

Sorting is NOT SUPPORTED. Objects are always are sorted in reverse chronological order.

Download Clicks

Use Download Center to export Clicks to a CSV file. Use Reporting filters to narrow down the data.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

query Parameters
delimiter
string

Delimiter to be used in CSV. Default is comma.

start_date
string <date>

start date

end_date
string <date>

end date

fields
required
string

The columns to include in the CSV

extra_parameters
required
string

The extra parameters data that will be converted as columns in the CSV

Responses

Response Schema: application/json
object (csapi.Artifact)
created_at
string
error
string
object

new csapi fields

object (report.CSVExportFormat)
id
required
string
integration
required
string
last_updated_by
string
organization
required
string
object

nolint: lll

requested_by
string
object (report.ReportsResultsMeta)
status
required
string
Enum: "PENDING" "IN_PROGRESS" "ERROR" "CANCELED" "COMPLETED"
type
required
string
updated_at
string

Response samples

Content type
application/json
{
}

Download Conversions

Use Download Center to export Conversions to a CSV file. Use Reporting filters to narrow down the data.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

query Parameters
delimiter
string

Delimiter to be used in CSV. Default is comma.

start_date
string <date>

start date

end_date
string <date>

end date

fields
required
string

The columns to include in the CSV

extra_parameters
required
string

The extra parameters data that will be converted as columns in the CSV

Responses

Response Schema: application/json
object (csapi.Artifact)
created_at
string
error
string
object

new csapi fields

object (report.CSVExportFormat)
id
required
string
integration
required
string
last_updated_by
string
organization
required
string
object

nolint: lll

requested_by
string
object (report.ReportsResultsMeta)
status
required
string
Enum: "PENDING" "IN_PROGRESS" "ERROR" "CANCELED" "COMPLETED"
type
required
string
updated_at
string

Response samples

Content type
application/json
{
}

Download Impressions

Use Download Center to export Impressions to a CSV file. Use Reporting filters to narrow down the data.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
integrationID
required
string

The Integration ID

query Parameters
delimiter
string

Delimiter to be used in CSV. Default is comma.

start_date
string <date>

start date

end_date
string <date>

end date

fields
required
string

The columns to include in the CSV

extra_parameters
required
string

The extra parameters data that will be converted as columns in the CSV

Responses

Response Schema: application/json
object (csapi.Artifact)
created_at
string
error
string
object

new csapi fields

object (report.CSVExportFormat)
id
required
string
integration
required
string
last_updated_by
string
organization
required
string
object

nolint: lll

requested_by
string
object (report.ReportsResultsMeta)
status
required
string
Enum: "PENDING" "IN_PROGRESS" "ERROR" "CANCELED" "COMPLETED"
type
required
string
updated_at
string

Response samples

Content type
application/json
{
}

Click Report

Authorizations:
ApiKeyAuthBearerAuth
query Parameters
integration_id
required
string

The Integration ID

start_date
required
string <date>

Fetch data where request_time is starting from this date

end_date
required
string <date>

Fetch data where request_time is until this date

page[size]
required
integer

The number of items to return

page[before]
string

Fetch the previous data before this cursor

page[after]
string

Fetch the next data after this cursor

Responses

Response Schema: application/json
object (report.ClickTable)

Response samples

Content type
application/json
{
}

Conversion Report

Authorizations:
ApiKeyAuthBearerAuth
query Parameters
integration_id
required
string

The Integration ID

start_date
required
string <date>

Fetch data where conversion_time is starting from this date

end_date
required
string <date>

Fetch data where conversion_time is until this date

page[size]
required
integer

The number of items to return

page[before]
string

Fetch the previous data before this cursor

page[after]
string

Fetch the next data after this cursor

Responses

Response Schema: application/json
object (report.ConversionTable)

Response samples

Content type
application/json
{
}

Impression Report

Authorizations:
ApiKeyAuthBearerAuth
query Parameters
integration_id
required
string

The Integration ID

start_date
required
string <date>

Fetch data where request_time is starting from this date

end_date
required
string <date>

Fetch data where request_time is until this date

page[size]
required
integer

The number of items to return

page[before]
string

Fetch the previous data before this cursor

page[after]
string

Fetch the next data after this cursor

Responses

Response Schema: application/json
object (report.ImpressionTable)

Response samples

Content type
application/json
{
}

DownloadCenter

Get Download Center Export URL

Get the signed url for a download center file. You need this URL in order to download the file.

Authorizations:
ApiKeyAuthBearerAuth
query Parameters
artifact_name
required
string

The Download Export object artifact name

Responses

Response Schema: application/json
url
string

Response samples

Content type
application/json
{
}

List Download Center Exports

List all the Download Center exports.

Authorizations:
ApiKeyAuthBearerAuth
query Parameters
filter[reports_query_option.filters.offer_id.equalvalues]
Array of strings

The offer IDs filter used in the exported data.

filter[reports_query_option.filters.publisher.equalvalues]
Array of strings

The publishers filter used in the exported data.

filter[reports_query_option.filters.advertiser.equalvalues]
Array of strings

The advertisers filter used in the exported data.

filter[reports_query_option.filters.integration_id.equalvalues]
Array of strings

The integration ID filter used in the exported data.

filter[reports_query_option.start_date]
string <date>

The start date filter used in the exported data. This is a string and date range logic does not apply. Use this if you know the exact start date filter used during the export.

filter[reports_query_option.end_date]
string <date>

The end date filter used in the exported data. This is a string and date range logic does not apply. Use this if you know the exact end date filter used during the export.

filter[status]
string
Enum: "UNKNOWN" "PENDING" "IN_PROGRESS" "ERROR" "CANCELED"

The report export status

filter[type]
string
Enum: "conversion_logs" "click_logs"

The report type

filter[results_meta.total][gte]
integer

Greater than or equals to the total number of rows of exported data.

filter[results_meta.total][lte]
integer

Less than or equals to the total number of rows of exported data.

filter[results_meta.duration_seconds][gte]
integer

Greater than or equals to the export completion time in seconds.

filter[results_meta.duration_seconds][lte]
integer

Less than or equals to the export completion time in seconds.

Responses

Response Schema: application/json
Array of objects (report.DownloadCenterExport)
object (csapi.ListMeta)

Response samples

Content type
application/json
{
}

Get Download Center Export

Get the Download Center export object.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
exportID
required
string

The Export ID

Responses

Response Schema: application/json
object (report.DownloadCenterExport)

Response samples

Content type
application/json
{
}

Delete Download Center Export

Delete the Download Center export object and the associated file.

Authorizations:
ApiKeyAuthBearerAuth
path Parameters
exportID
required
string

The Export ID

Responses

Response Schema: application/json
object (service.svcDeleteResponse)

Response samples

Content type
application/json
{ }