v1

latestOpenAPI 3.0.02026-07-2496664456.3 KB
ReportExport

Create a new report export.

Create a new report export.

post/cm/v1/report-exports

Query parameters

ad_account_idstring required

Ad account ID to which the report-export associated.

product_idstring

Product ID to which the report-export associated.

Request body

idstring

Unique identifier of the ReportExport. Automatically set by server on creation.

badgestring

Server generated, user-friendly ReportExport identifier for partner integration.

workplace_idstring required

Workplace ID to which the ReportExport associated.

ad_account_idstring required

Ad account ID to which the ReportExport associated.

product_idstring required

Product ID to which the ReportExport associated.

partner'UNKNOWN_PARTNER' | 'SINGULAR' | 'APPSFLYER' | 'TENJIN' | 'BIDALGO' | 'APPANNIE' | 'APPSUMER' | 'ADJUST' | 'KOCHAVA' | 'AIRBRIDGE' | 'BRANCH' | 'JUSTTRACK' required

Partner enumerates the reporting solution partners to whom we've integrated.

  • SINGULAR: Singular.
  • APPSFLYER: AppsFlyer.
  • TENJIN: Tenjin.
  • BIDALGO: Bidalgo.
  • APPANNIE: Appannie.
  • APPSUMER: Appsumer.
  • ADJUST: Adjust.
  • KOCHAVA: Kochava.
  • AIRBRIDGE: AirBridge.
  • BRANCH: Branch.
  • JUSTTRACK: JustTrack.
created_atstring date-time

Created time.

updated_atstring date-time

Last updated time. Should not modify on the client side.

Example request

{
  "id": "sampleReportExportId",
  "badge": "sampleReportExportId#AdAccount:sampleAdAccountId#App:sampleAppId",
  "workplace_id": "samplePlatformId",
  "ad_account_id": "sampleAdAccountId",
  "product_id": "sampleAppId",
  "partner": "SINGULAR",
  "created_at": "2020-01-03T03:12:50.124101982Z",
  "updated_at": "2020-01-03T03:24:21.109821241Z"
}

Response

A successful response.

Example response

{
  "report_export": {
    "id": "sampleReportExportId",
    "workplace_id": "samplePlatformId",
    "ad_account_id": "sampleAdAccountId",
    "product_id": "sampleProductId",
    "partner": "SINGULAR",
    "created_at": "2020-01-03T03:12:50.124101982Z",
    "updated_at": "2020-01-03T03:24:21.109821241Z"
  }
}