airbyte.SourceFacebookMarketing
Explore with Pulumi AI
SourceFacebookMarketing Resource
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.airbyte.SourceFacebookMarketing;
import com.pulumi.airbyte.SourceFacebookMarketingArgs;
import com.pulumi.airbyte.inputs.SourceFacebookMarketingConfigurationArgs;
import com.pulumi.airbyte.inputs.SourceFacebookMarketingConfigurationCredentialsArgs;
import com.pulumi.airbyte.inputs.SourceFacebookMarketingConfigurationCredentialsAuthenticateViaFacebookMarketingOauthArgs;
import com.pulumi.airbyte.inputs.SourceFacebookMarketingConfigurationCredentialsServiceAccountKeyAuthenticationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var mySourceFacebookmarketing = new SourceFacebookMarketing("mySourceFacebookmarketing", SourceFacebookMarketingArgs.builder()
.configuration(SourceFacebookMarketingConfigurationArgs.builder()
.access_token("...my_access_token...")
.account_ids("...")
.ad_statuses("ADSET_PAUSED")
.adset_statuses("IN_PROCESS")
.campaign_statuses("PAUSED")
.credentials(SourceFacebookMarketingConfigurationCredentialsArgs.builder()
.authenticateViaFacebookMarketingOauth(SourceFacebookMarketingConfigurationCredentialsAuthenticateViaFacebookMarketingOauthArgs.builder()
.accessToken("...my_access_token...")
.clientId("...my_client_id...")
.clientSecret("...my_client_secret...")
.build())
.serviceAccountKeyAuthentication(SourceFacebookMarketingConfigurationCredentialsServiceAccountKeyAuthenticationArgs.builder()
.accessToken("...my_access_token...")
.build())
.build())
.custom_insights(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.end_date("2017-01-26T00:00:00Z")
.fetch_thumbnail_images(false)
.insights_job_timeout(55)
.insights_lookback_window(9)
.page_size(7)
.start_date("2017-01-25T00:00:00Z")
.build())
.definitionId("efac1af8-dd35-4940-8819-0027d27f358d")
.secretId("...my_secret_id...")
.workspaceId("1c443315-5b54-4630-ad55-2f2c6821ece4")
.build());
}
}
resources:
mySourceFacebookmarketing:
type: airbyte:SourceFacebookMarketing
properties:
configuration:
access_token: '...my_access_token...'
account_ids:
- '...'
ad_statuses:
- ADSET_PAUSED
adset_statuses:
- IN_PROCESS
campaign_statuses:
- PAUSED
credentials:
authenticateViaFacebookMarketingOauth:
accessToken: '...my_access_token...'
clientId: '...my_client_id...'
clientSecret: '...my_client_secret...'
serviceAccountKeyAuthentication:
accessToken: '...my_access_token...'
custom_insights:
- actionBreakdowns:
- action_reaction
actionReportTime: impression
breakdowns:
- media_type
endDate: 2017-01-26T00:00:00Z
fields:
- cost_per_unique_action_type
insightsJobTimeout: 50
insightsLookbackWindow: 9
level: account
name: '...my_name...'
startDate: 2017-01-25T00:00:00Z
timeIncrement: 33
end_date: 2017-01-26T00:00:00Z
fetch_thumbnail_images: false
insights_job_timeout: 55
insights_lookback_window: 9
page_size: 7
start_date: 2017-01-25T00:00:00Z
definitionId: efac1af8-dd35-4940-8819-0027d27f358d
secretId: '...my_secret_id...'
workspaceId: 1c443315-5b54-4630-ad55-2f2c6821ece4
Create SourceFacebookMarketing Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SourceFacebookMarketing(name: string, args: SourceFacebookMarketingArgs, opts?: CustomResourceOptions);
@overload
def SourceFacebookMarketing(resource_name: str,
args: SourceFacebookMarketingArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SourceFacebookMarketing(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourceFacebookMarketingConfigurationArgs] = None,
workspace_id: Optional[str] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None,
secret_id: Optional[str] = None)
func NewSourceFacebookMarketing(ctx *Context, name string, args SourceFacebookMarketingArgs, opts ...ResourceOption) (*SourceFacebookMarketing, error)
public SourceFacebookMarketing(string name, SourceFacebookMarketingArgs args, CustomResourceOptions? opts = null)
public SourceFacebookMarketing(String name, SourceFacebookMarketingArgs args)
public SourceFacebookMarketing(String name, SourceFacebookMarketingArgs args, CustomResourceOptions options)
type: airbyte:SourceFacebookMarketing
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SourceFacebookMarketingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SourceFacebookMarketingArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SourceFacebookMarketingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SourceFacebookMarketingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SourceFacebookMarketingArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var sourceFacebookMarketingResource = new Airbyte.SourceFacebookMarketing("sourceFacebookMarketingResource", new()
{
Configuration = new Airbyte.Inputs.SourceFacebookMarketingConfigurationArgs
{
Credentials = new Airbyte.Inputs.SourceFacebookMarketingConfigurationCredentialsArgs
{
AuthenticateViaFacebookMarketingOauth = new Airbyte.Inputs.SourceFacebookMarketingConfigurationCredentialsAuthenticateViaFacebookMarketingOauthArgs
{
ClientId = "string",
ClientSecret = "string",
AccessToken = "string",
},
ServiceAccountKeyAuthentication = new Airbyte.Inputs.SourceFacebookMarketingConfigurationCredentialsServiceAccountKeyAuthenticationArgs
{
AccessToken = "string",
},
},
AccountIds = new[]
{
"string",
},
CustomInsights = new[]
{
new Airbyte.Inputs.SourceFacebookMarketingConfigurationCustomInsightArgs
{
Name = "string",
ActionBreakdowns = new[]
{
"string",
},
ActionReportTime = "string",
Breakdowns = new[]
{
"string",
},
EndDate = "string",
Fields = new[]
{
"string",
},
InsightsJobTimeout = 0,
InsightsLookbackWindow = 0,
Level = "string",
StartDate = "string",
TimeIncrement = 0,
},
},
AdsetStatuses = new[]
{
"string",
},
CampaignStatuses = new[]
{
"string",
},
AdStatuses = new[]
{
"string",
},
AccessToken = "string",
EndDate = "string",
FetchThumbnailImages = false,
InsightsJobTimeout = 0,
InsightsLookbackWindow = 0,
PageSize = 0,
StartDate = "string",
},
WorkspaceId = "string",
DefinitionId = "string",
Name = "string",
SecretId = "string",
});
example, err := airbyte.NewSourceFacebookMarketing(ctx, "sourceFacebookMarketingResource", &airbyte.SourceFacebookMarketingArgs{
Configuration: &.SourceFacebookMarketingConfigurationArgs{
Credentials: &.SourceFacebookMarketingConfigurationCredentialsArgs{
AuthenticateViaFacebookMarketingOauth: &.SourceFacebookMarketingConfigurationCredentialsAuthenticateViaFacebookMarketingOauthArgs{
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
AccessToken: pulumi.String("string"),
},
ServiceAccountKeyAuthentication: &.SourceFacebookMarketingConfigurationCredentialsServiceAccountKeyAuthenticationArgs{
AccessToken: pulumi.String("string"),
},
},
AccountIds: pulumi.StringArray{
pulumi.String("string"),
},
CustomInsights: .SourceFacebookMarketingConfigurationCustomInsightArray{
&.SourceFacebookMarketingConfigurationCustomInsightArgs{
Name: pulumi.String("string"),
ActionBreakdowns: pulumi.StringArray{
pulumi.String("string"),
},
ActionReportTime: pulumi.String("string"),
Breakdowns: pulumi.StringArray{
pulumi.String("string"),
},
EndDate: pulumi.String("string"),
Fields: pulumi.StringArray{
pulumi.String("string"),
},
InsightsJobTimeout: pulumi.Float64(0),
InsightsLookbackWindow: pulumi.Float64(0),
Level: pulumi.String("string"),
StartDate: pulumi.String("string"),
TimeIncrement: pulumi.Float64(0),
},
},
AdsetStatuses: pulumi.StringArray{
pulumi.String("string"),
},
CampaignStatuses: pulumi.StringArray{
pulumi.String("string"),
},
AdStatuses: pulumi.StringArray{
pulumi.String("string"),
},
AccessToken: pulumi.String("string"),
EndDate: pulumi.String("string"),
FetchThumbnailImages: pulumi.Bool(false),
InsightsJobTimeout: pulumi.Float64(0),
InsightsLookbackWindow: pulumi.Float64(0),
PageSize: pulumi.Float64(0),
StartDate: pulumi.String("string"),
},
WorkspaceId: pulumi.String("string"),
DefinitionId: pulumi.String("string"),
Name: pulumi.String("string"),
SecretId: pulumi.String("string"),
})
var sourceFacebookMarketingResource = new SourceFacebookMarketing("sourceFacebookMarketingResource", SourceFacebookMarketingArgs.builder()
.configuration(SourceFacebookMarketingConfigurationArgs.builder()
.credentials(SourceFacebookMarketingConfigurationCredentialsArgs.builder()
.authenticateViaFacebookMarketingOauth(SourceFacebookMarketingConfigurationCredentialsAuthenticateViaFacebookMarketingOauthArgs.builder()
.clientId("string")
.clientSecret("string")
.accessToken("string")
.build())
.serviceAccountKeyAuthentication(SourceFacebookMarketingConfigurationCredentialsServiceAccountKeyAuthenticationArgs.builder()
.accessToken("string")
.build())
.build())
.accountIds("string")
.customInsights(SourceFacebookMarketingConfigurationCustomInsightArgs.builder()
.name("string")
.actionBreakdowns("string")
.actionReportTime("string")
.breakdowns("string")
.endDate("string")
.fields("string")
.insightsJobTimeout(0)
.insightsLookbackWindow(0)
.level("string")
.startDate("string")
.timeIncrement(0)
.build())
.adsetStatuses("string")
.campaignStatuses("string")
.adStatuses("string")
.accessToken("string")
.endDate("string")
.fetchThumbnailImages(false)
.insightsJobTimeout(0)
.insightsLookbackWindow(0)
.pageSize(0)
.startDate("string")
.build())
.workspaceId("string")
.definitionId("string")
.name("string")
.secretId("string")
.build());
source_facebook_marketing_resource = airbyte.SourceFacebookMarketing("sourceFacebookMarketingResource",
configuration={
"credentials": {
"authenticate_via_facebook_marketing_oauth": {
"client_id": "string",
"client_secret": "string",
"access_token": "string",
},
"service_account_key_authentication": {
"access_token": "string",
},
},
"account_ids": ["string"],
"custom_insights": [{
"name": "string",
"action_breakdowns": ["string"],
"action_report_time": "string",
"breakdowns": ["string"],
"end_date": "string",
"fields": ["string"],
"insights_job_timeout": 0,
"insights_lookback_window": 0,
"level": "string",
"start_date": "string",
"time_increment": 0,
}],
"adset_statuses": ["string"],
"campaign_statuses": ["string"],
"ad_statuses": ["string"],
"access_token": "string",
"end_date": "string",
"fetch_thumbnail_images": False,
"insights_job_timeout": 0,
"insights_lookback_window": 0,
"page_size": 0,
"start_date": "string",
},
workspace_id="string",
definition_id="string",
name="string",
secret_id="string")
const sourceFacebookMarketingResource = new airbyte.SourceFacebookMarketing("sourceFacebookMarketingResource", {
configuration: {
credentials: {
authenticateViaFacebookMarketingOauth: {
clientId: "string",
clientSecret: "string",
accessToken: "string",
},
serviceAccountKeyAuthentication: {
accessToken: "string",
},
},
accountIds: ["string"],
customInsights: [{
name: "string",
actionBreakdowns: ["string"],
actionReportTime: "string",
breakdowns: ["string"],
endDate: "string",
fields: ["string"],
insightsJobTimeout: 0,
insightsLookbackWindow: 0,
level: "string",
startDate: "string",
timeIncrement: 0,
}],
adsetStatuses: ["string"],
campaignStatuses: ["string"],
adStatuses: ["string"],
accessToken: "string",
endDate: "string",
fetchThumbnailImages: false,
insightsJobTimeout: 0,
insightsLookbackWindow: 0,
pageSize: 0,
startDate: "string",
},
workspaceId: "string",
definitionId: "string",
name: "string",
secretId: "string",
});
type: airbyte:SourceFacebookMarketing
properties:
configuration:
accessToken: string
accountIds:
- string
adStatuses:
- string
adsetStatuses:
- string
campaignStatuses:
- string
credentials:
authenticateViaFacebookMarketingOauth:
accessToken: string
clientId: string
clientSecret: string
serviceAccountKeyAuthentication:
accessToken: string
customInsights:
- actionBreakdowns:
- string
actionReportTime: string
breakdowns:
- string
endDate: string
fields:
- string
insightsJobTimeout: 0
insightsLookbackWindow: 0
level: string
name: string
startDate: string
timeIncrement: 0
endDate: string
fetchThumbnailImages: false
insightsJobTimeout: 0
insightsLookbackWindow: 0
pageSize: 0
startDate: string
definitionId: string
name: string
secretId: string
workspaceId: string
SourceFacebookMarketing Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The SourceFacebookMarketing resource accepts the following input properties:
- Configuration
Source
Facebook Marketing Configuration - Workspace
Id string - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Configuration
Source
Facebook Marketing Configuration Args - Workspace
Id string - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Facebook Marketing Configuration - workspace
Id String - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Facebook Marketing Configuration - workspace
Id string - definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name string
- Name of the source e.g. dev-mysql-instance.
- secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Facebook Marketing Configuration Args - workspace_
id str - definition_
id str - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name str
- Name of the source e.g. dev-mysql-instance.
- secret_
id str - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration Property Map
- workspace
Id String - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
Outputs
All input properties are implicitly available as output properties. Additionally, the SourceFacebookMarketing resource produces the following output properties:
- Created
At double - Id string
- The provider-assigned unique ID for this managed resource.
- Source
Id string - Source
Type string
- Created
At float64 - Id string
- The provider-assigned unique ID for this managed resource.
- Source
Id string - Source
Type string
- created
At Double - id String
- The provider-assigned unique ID for this managed resource.
- source
Id String - source
Type String
- created
At number - id string
- The provider-assigned unique ID for this managed resource.
- source
Id string - source
Type string
- created_
at float - id str
- The provider-assigned unique ID for this managed resource.
- source_
id str - source_
type str
- created
At Number - id String
- The provider-assigned unique ID for this managed resource.
- source
Id String - source
Type String
Look up Existing SourceFacebookMarketing Resource
Get an existing SourceFacebookMarketing resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: SourceFacebookMarketingState, opts?: CustomResourceOptions): SourceFacebookMarketing
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourceFacebookMarketingConfigurationArgs] = None,
created_at: Optional[float] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None,
secret_id: Optional[str] = None,
source_id: Optional[str] = None,
source_type: Optional[str] = None,
workspace_id: Optional[str] = None) -> SourceFacebookMarketing
func GetSourceFacebookMarketing(ctx *Context, name string, id IDInput, state *SourceFacebookMarketingState, opts ...ResourceOption) (*SourceFacebookMarketing, error)
public static SourceFacebookMarketing Get(string name, Input<string> id, SourceFacebookMarketingState? state, CustomResourceOptions? opts = null)
public static SourceFacebookMarketing get(String name, Output<String> id, SourceFacebookMarketingState state, CustomResourceOptions options)
resources: _: type: airbyte:SourceFacebookMarketing get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Configuration
Source
Facebook Marketing Configuration - Created
At double - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Source
Id string - Source
Type string - Workspace
Id string
- Configuration
Source
Facebook Marketing Configuration Args - Created
At float64 - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Source
Id string - Source
Type string - Workspace
Id string
- configuration
Source
Facebook Marketing Configuration - created
At Double - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id String - source
Type String - workspace
Id String
- configuration
Source
Facebook Marketing Configuration - created
At number - definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name string
- Name of the source e.g. dev-mysql-instance.
- secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id string - source
Type string - workspace
Id string
- configuration
Source
Facebook Marketing Configuration Args - created_
at float - definition_
id str - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name str
- Name of the source e.g. dev-mysql-instance.
- secret_
id str - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source_
id str - source_
type str - workspace_
id str
- configuration Property Map
- created
At Number - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id String - source
Type String - workspace
Id String
Supporting Types
SourceFacebookMarketingConfiguration, SourceFacebookMarketingConfigurationArgs
- Account
Ids List<string> - The Facebook Ad account ID(s) to pull data from. The Ad account ID number is in the account dropdown menu or in your browser's address bar of your \n\nMeta Ads Manager\n\n. See the \n\ndocs\n\n for more information.
- Credentials
Source
Facebook Marketing Configuration Credentials - Credentials for connecting to the Facebook Marketing API
- Access
Token string - The value of the generated access token. From your App’s Dashboard, click on "Marketing API" then "Tools". Select permissions \n\nadsmanagement, adsread, readinsights, businessmanagement\n\n. Then click on "Get token". See the \n\ndocs\n\n for more information.
- Ad
Statuses List<string> - Select the statuses you want to be loaded in the stream. If no specific statuses are selected, the API's default behavior applies, and some statuses may be filtered out.
- Adset
Statuses List<string> - Select the statuses you want to be loaded in the stream. If no specific statuses are selected, the API's default behavior applies, and some statuses may be filtered out.
- Campaign
Statuses List<string> - Select the statuses you want to be loaded in the stream. If no specific statuses are selected, the API's default behavior applies, and some statuses may be filtered out.
- Custom
Insights List<SourceFacebook Marketing Configuration Custom Insight> - A list which contains ad statistics entries, each entry must have a name and can contains fields, breakdowns or action*breakdowns. Click on "add" to fill this field.
- End
Date string - The date until which you'd like to replicate data for all incremental streams, in the format YYYY-MM-DDT00:00:00Z. All data generated between the start date and this end date will be replicated. Not setting this option will result in always syncing the latest data.
- Fetch
Thumbnail boolImages - Set to active if you want to fetch the thumbnailurl and store the result in thumbnaildata_url for each Ad Creative. Default: false
- Insights
Job doubleTimeout - Insights Job Timeout establishes the maximum amount of time (in minutes) of waiting for the report job to complete. When timeout is reached the job is considered failed and we are trying to request smaller amount of data by breaking the job to few smaller ones. If you definitely know that 60 minutes is not enough for your report to be processed then you can decrease the timeout value, so we start breaking job to smaller parts faster. Default: 60
- Insights
Lookback doubleWindow - The attribution window. Facebook freezes insight data 28 days after it was generated, which means that all data from the past 28 days may have changed since we last emitted it, so you can retrieve refreshed insights from the past by setting this parameter. If you set a custom lookback window value in Facebook account, please provide the same value here. Default: 28
- Page
Size double - Page size used when sending requests to Facebook API to specify number of records per page when response has pagination. Most users do not need to set this field unless they specifically need to tune the connector to address specific issues or use cases. Default: 100
- Start
Date string - The date from which you'd like to replicate data for all incremental streams, in the format YYYY-MM-DDT00:00:00Z. If not set then all data will be replicated for usual streams and only last 2 years for insight streams.
- Account
Ids []string - The Facebook Ad account ID(s) to pull data from. The Ad account ID number is in the account dropdown menu or in your browser's address bar of your \n\nMeta Ads Manager\n\n. See the \n\ndocs\n\n for more information.
- Credentials
Source
Facebook Marketing Configuration Credentials - Credentials for connecting to the Facebook Marketing API
- Access
Token string - The value of the generated access token. From your App’s Dashboard, click on "Marketing API" then "Tools". Select permissions \n\nadsmanagement, adsread, readinsights, businessmanagement\n\n. Then click on "Get token". See the \n\ndocs\n\n for more information.
- Ad
Statuses []string - Select the statuses you want to be loaded in the stream. If no specific statuses are selected, the API's default behavior applies, and some statuses may be filtered out.
- Adset
Statuses []string - Select the statuses you want to be loaded in the stream. If no specific statuses are selected, the API's default behavior applies, and some statuses may be filtered out.
- Campaign
Statuses []string - Select the statuses you want to be loaded in the stream. If no specific statuses are selected, the API's default behavior applies, and some statuses may be filtered out.
- Custom
Insights []SourceFacebook Marketing Configuration Custom Insight - A list which contains ad statistics entries, each entry must have a name and can contains fields, breakdowns or action*breakdowns. Click on "add" to fill this field.
- End
Date string - The date until which you'd like to replicate data for all incremental streams, in the format YYYY-MM-DDT00:00:00Z. All data generated between the start date and this end date will be replicated. Not setting this option will result in always syncing the latest data.
- Fetch
Thumbnail boolImages - Set to active if you want to fetch the thumbnailurl and store the result in thumbnaildata_url for each Ad Creative. Default: false
- Insights
Job float64Timeout - Insights Job Timeout establishes the maximum amount of time (in minutes) of waiting for the report job to complete. When timeout is reached the job is considered failed and we are trying to request smaller amount of data by breaking the job to few smaller ones. If you definitely know that 60 minutes is not enough for your report to be processed then you can decrease the timeout value, so we start breaking job to smaller parts faster. Default: 60
- Insights
Lookback float64Window - The attribution window. Facebook freezes insight data 28 days after it was generated, which means that all data from the past 28 days may have changed since we last emitted it, so you can retrieve refreshed insights from the past by setting this parameter. If you set a custom lookback window value in Facebook account, please provide the same value here. Default: 28
- Page
Size float64 - Page size used when sending requests to Facebook API to specify number of records per page when response has pagination. Most users do not need to set this field unless they specifically need to tune the connector to address specific issues or use cases. Default: 100
- Start
Date string - The date from which you'd like to replicate data for all incremental streams, in the format YYYY-MM-DDT00:00:00Z. If not set then all data will be replicated for usual streams and only last 2 years for insight streams.
- account
Ids List<String> - The Facebook Ad account ID(s) to pull data from. The Ad account ID number is in the account dropdown menu or in your browser's address bar of your \n\nMeta Ads Manager\n\n. See the \n\ndocs\n\n for more information.
- credentials
Source
Facebook Marketing Configuration Credentials - Credentials for connecting to the Facebook Marketing API
- access
Token String - The value of the generated access token. From your App’s Dashboard, click on "Marketing API" then "Tools". Select permissions \n\nadsmanagement, adsread, readinsights, businessmanagement\n\n. Then click on "Get token". See the \n\ndocs\n\n for more information.
- ad
Statuses List<String> - Select the statuses you want to be loaded in the stream. If no specific statuses are selected, the API's default behavior applies, and some statuses may be filtered out.
- adset
Statuses List<String> - Select the statuses you want to be loaded in the stream. If no specific statuses are selected, the API's default behavior applies, and some statuses may be filtered out.
- campaign
Statuses List<String> - Select the statuses you want to be loaded in the stream. If no specific statuses are selected, the API's default behavior applies, and some statuses may be filtered out.
- custom
Insights List<SourceFacebook Marketing Configuration Custom Insight> - A list which contains ad statistics entries, each entry must have a name and can contains fields, breakdowns or action*breakdowns. Click on "add" to fill this field.
- end
Date String - The date until which you'd like to replicate data for all incremental streams, in the format YYYY-MM-DDT00:00:00Z. All data generated between the start date and this end date will be replicated. Not setting this option will result in always syncing the latest data.
- fetch
Thumbnail BooleanImages - Set to active if you want to fetch the thumbnailurl and store the result in thumbnaildata_url for each Ad Creative. Default: false
- insights
Job DoubleTimeout - Insights Job Timeout establishes the maximum amount of time (in minutes) of waiting for the report job to complete. When timeout is reached the job is considered failed and we are trying to request smaller amount of data by breaking the job to few smaller ones. If you definitely know that 60 minutes is not enough for your report to be processed then you can decrease the timeout value, so we start breaking job to smaller parts faster. Default: 60
- insights
Lookback DoubleWindow - The attribution window. Facebook freezes insight data 28 days after it was generated, which means that all data from the past 28 days may have changed since we last emitted it, so you can retrieve refreshed insights from the past by setting this parameter. If you set a custom lookback window value in Facebook account, please provide the same value here. Default: 28
- page
Size Double - Page size used when sending requests to Facebook API to specify number of records per page when response has pagination. Most users do not need to set this field unless they specifically need to tune the connector to address specific issues or use cases. Default: 100
- start
Date String - The date from which you'd like to replicate data for all incremental streams, in the format YYYY-MM-DDT00:00:00Z. If not set then all data will be replicated for usual streams and only last 2 years for insight streams.
- account
Ids string[] - The Facebook Ad account ID(s) to pull data from. The Ad account ID number is in the account dropdown menu or in your browser's address bar of your \n\nMeta Ads Manager\n\n. See the \n\ndocs\n\n for more information.
- credentials
Source
Facebook Marketing Configuration Credentials - Credentials for connecting to the Facebook Marketing API
- access
Token string - The value of the generated access token. From your App’s Dashboard, click on "Marketing API" then "Tools". Select permissions \n\nadsmanagement, adsread, readinsights, businessmanagement\n\n. Then click on "Get token". See the \n\ndocs\n\n for more information.
- ad
Statuses string[] - Select the statuses you want to be loaded in the stream. If no specific statuses are selected, the API's default behavior applies, and some statuses may be filtered out.
- adset
Statuses string[] - Select the statuses you want to be loaded in the stream. If no specific statuses are selected, the API's default behavior applies, and some statuses may be filtered out.
- campaign
Statuses string[] - Select the statuses you want to be loaded in the stream. If no specific statuses are selected, the API's default behavior applies, and some statuses may be filtered out.
- custom
Insights SourceFacebook Marketing Configuration Custom Insight[] - A list which contains ad statistics entries, each entry must have a name and can contains fields, breakdowns or action*breakdowns. Click on "add" to fill this field.
- end
Date string - The date until which you'd like to replicate data for all incremental streams, in the format YYYY-MM-DDT00:00:00Z. All data generated between the start date and this end date will be replicated. Not setting this option will result in always syncing the latest data.
- fetch
Thumbnail booleanImages - Set to active if you want to fetch the thumbnailurl and store the result in thumbnaildata_url for each Ad Creative. Default: false
- insights
Job numberTimeout - Insights Job Timeout establishes the maximum amount of time (in minutes) of waiting for the report job to complete. When timeout is reached the job is considered failed and we are trying to request smaller amount of data by breaking the job to few smaller ones. If you definitely know that 60 minutes is not enough for your report to be processed then you can decrease the timeout value, so we start breaking job to smaller parts faster. Default: 60
- insights
Lookback numberWindow - The attribution window. Facebook freezes insight data 28 days after it was generated, which means that all data from the past 28 days may have changed since we last emitted it, so you can retrieve refreshed insights from the past by setting this parameter. If you set a custom lookback window value in Facebook account, please provide the same value here. Default: 28
- page
Size number - Page size used when sending requests to Facebook API to specify number of records per page when response has pagination. Most users do not need to set this field unless they specifically need to tune the connector to address specific issues or use cases. Default: 100
- start
Date string - The date from which you'd like to replicate data for all incremental streams, in the format YYYY-MM-DDT00:00:00Z. If not set then all data will be replicated for usual streams and only last 2 years for insight streams.
- account_
ids Sequence[str] - The Facebook Ad account ID(s) to pull data from. The Ad account ID number is in the account dropdown menu or in your browser's address bar of your \n\nMeta Ads Manager\n\n. See the \n\ndocs\n\n for more information.
- credentials
Source
Facebook Marketing Configuration Credentials - Credentials for connecting to the Facebook Marketing API
- access_
token str - The value of the generated access token. From your App’s Dashboard, click on "Marketing API" then "Tools". Select permissions \n\nadsmanagement, adsread, readinsights, businessmanagement\n\n. Then click on "Get token". See the \n\ndocs\n\n for more information.
- ad_
statuses Sequence[str] - Select the statuses you want to be loaded in the stream. If no specific statuses are selected, the API's default behavior applies, and some statuses may be filtered out.
- adset_
statuses Sequence[str] - Select the statuses you want to be loaded in the stream. If no specific statuses are selected, the API's default behavior applies, and some statuses may be filtered out.
- campaign_
statuses Sequence[str] - Select the statuses you want to be loaded in the stream. If no specific statuses are selected, the API's default behavior applies, and some statuses may be filtered out.
- custom_
insights Sequence[SourceFacebook Marketing Configuration Custom Insight] - A list which contains ad statistics entries, each entry must have a name and can contains fields, breakdowns or action*breakdowns. Click on "add" to fill this field.
- end_
date str - The date until which you'd like to replicate data for all incremental streams, in the format YYYY-MM-DDT00:00:00Z. All data generated between the start date and this end date will be replicated. Not setting this option will result in always syncing the latest data.
- fetch_
thumbnail_ boolimages - Set to active if you want to fetch the thumbnailurl and store the result in thumbnaildata_url for each Ad Creative. Default: false
- insights_
job_ floattimeout - Insights Job Timeout establishes the maximum amount of time (in minutes) of waiting for the report job to complete. When timeout is reached the job is considered failed and we are trying to request smaller amount of data by breaking the job to few smaller ones. If you definitely know that 60 minutes is not enough for your report to be processed then you can decrease the timeout value, so we start breaking job to smaller parts faster. Default: 60
- insights_
lookback_ floatwindow - The attribution window. Facebook freezes insight data 28 days after it was generated, which means that all data from the past 28 days may have changed since we last emitted it, so you can retrieve refreshed insights from the past by setting this parameter. If you set a custom lookback window value in Facebook account, please provide the same value here. Default: 28
- page_
size float - Page size used when sending requests to Facebook API to specify number of records per page when response has pagination. Most users do not need to set this field unless they specifically need to tune the connector to address specific issues or use cases. Default: 100
- start_
date str - The date from which you'd like to replicate data for all incremental streams, in the format YYYY-MM-DDT00:00:00Z. If not set then all data will be replicated for usual streams and only last 2 years for insight streams.
- account
Ids List<String> - The Facebook Ad account ID(s) to pull data from. The Ad account ID number is in the account dropdown menu or in your browser's address bar of your \n\nMeta Ads Manager\n\n. See the \n\ndocs\n\n for more information.
- credentials Property Map
- Credentials for connecting to the Facebook Marketing API
- access
Token String - The value of the generated access token. From your App’s Dashboard, click on "Marketing API" then "Tools". Select permissions \n\nadsmanagement, adsread, readinsights, businessmanagement\n\n. Then click on "Get token". See the \n\ndocs\n\n for more information.
- ad
Statuses List<String> - Select the statuses you want to be loaded in the stream. If no specific statuses are selected, the API's default behavior applies, and some statuses may be filtered out.
- adset
Statuses List<String> - Select the statuses you want to be loaded in the stream. If no specific statuses are selected, the API's default behavior applies, and some statuses may be filtered out.
- campaign
Statuses List<String> - Select the statuses you want to be loaded in the stream. If no specific statuses are selected, the API's default behavior applies, and some statuses may be filtered out.
- custom
Insights List<Property Map> - A list which contains ad statistics entries, each entry must have a name and can contains fields, breakdowns or action*breakdowns. Click on "add" to fill this field.
- end
Date String - The date until which you'd like to replicate data for all incremental streams, in the format YYYY-MM-DDT00:00:00Z. All data generated between the start date and this end date will be replicated. Not setting this option will result in always syncing the latest data.
- fetch
Thumbnail BooleanImages - Set to active if you want to fetch the thumbnailurl and store the result in thumbnaildata_url for each Ad Creative. Default: false
- insights
Job NumberTimeout - Insights Job Timeout establishes the maximum amount of time (in minutes) of waiting for the report job to complete. When timeout is reached the job is considered failed and we are trying to request smaller amount of data by breaking the job to few smaller ones. If you definitely know that 60 minutes is not enough for your report to be processed then you can decrease the timeout value, so we start breaking job to smaller parts faster. Default: 60
- insights
Lookback NumberWindow - The attribution window. Facebook freezes insight data 28 days after it was generated, which means that all data from the past 28 days may have changed since we last emitted it, so you can retrieve refreshed insights from the past by setting this parameter. If you set a custom lookback window value in Facebook account, please provide the same value here. Default: 28
- page
Size Number - Page size used when sending requests to Facebook API to specify number of records per page when response has pagination. Most users do not need to set this field unless they specifically need to tune the connector to address specific issues or use cases. Default: 100
- start
Date String - The date from which you'd like to replicate data for all incremental streams, in the format YYYY-MM-DDT00:00:00Z. If not set then all data will be replicated for usual streams and only last 2 years for insight streams.
SourceFacebookMarketingConfigurationCredentials, SourceFacebookMarketingConfigurationCredentialsArgs
SourceFacebookMarketingConfigurationCredentialsAuthenticateViaFacebookMarketingOauth, SourceFacebookMarketingConfigurationCredentialsAuthenticateViaFacebookMarketingOauthArgs
- Client
Id string - Client ID for the Facebook Marketing API
- Client
Secret string - Client Secret for the Facebook Marketing API
- Access
Token string - The value of the generated access token. From your App’s Dashboard, click on "Marketing API" then "Tools". Select permissions \n\nadsmanagement, adsread, readinsights, businessmanagement\n\n. Then click on "Get token". See the \n\ndocs\n\n for more information.
- Client
Id string - Client ID for the Facebook Marketing API
- Client
Secret string - Client Secret for the Facebook Marketing API
- Access
Token string - The value of the generated access token. From your App’s Dashboard, click on "Marketing API" then "Tools". Select permissions \n\nadsmanagement, adsread, readinsights, businessmanagement\n\n. Then click on "Get token". See the \n\ndocs\n\n for more information.
- client
Id String - Client ID for the Facebook Marketing API
- client
Secret String - Client Secret for the Facebook Marketing API
- access
Token String - The value of the generated access token. From your App’s Dashboard, click on "Marketing API" then "Tools". Select permissions \n\nadsmanagement, adsread, readinsights, businessmanagement\n\n. Then click on "Get token". See the \n\ndocs\n\n for more information.
- client
Id string - Client ID for the Facebook Marketing API
- client
Secret string - Client Secret for the Facebook Marketing API
- access
Token string - The value of the generated access token. From your App’s Dashboard, click on "Marketing API" then "Tools". Select permissions \n\nadsmanagement, adsread, readinsights, businessmanagement\n\n. Then click on "Get token". See the \n\ndocs\n\n for more information.
- client_
id str - Client ID for the Facebook Marketing API
- client_
secret str - Client Secret for the Facebook Marketing API
- access_
token str - The value of the generated access token. From your App’s Dashboard, click on "Marketing API" then "Tools". Select permissions \n\nadsmanagement, adsread, readinsights, businessmanagement\n\n. Then click on "Get token". See the \n\ndocs\n\n for more information.
- client
Id String - Client ID for the Facebook Marketing API
- client
Secret String - Client Secret for the Facebook Marketing API
- access
Token String - The value of the generated access token. From your App’s Dashboard, click on "Marketing API" then "Tools". Select permissions \n\nadsmanagement, adsread, readinsights, businessmanagement\n\n. Then click on "Get token". See the \n\ndocs\n\n for more information.
SourceFacebookMarketingConfigurationCredentialsServiceAccountKeyAuthentication, SourceFacebookMarketingConfigurationCredentialsServiceAccountKeyAuthenticationArgs
- Access
Token string - The value of the generated access token. From your App’s Dashboard, click on "Marketing API" then "Tools". Select permissions \n\nadsmanagement, adsread, readinsights, businessmanagement\n\n. Then click on "Get token". See the \n\ndocs\n\n for more information.
- Access
Token string - The value of the generated access token. From your App’s Dashboard, click on "Marketing API" then "Tools". Select permissions \n\nadsmanagement, adsread, readinsights, businessmanagement\n\n. Then click on "Get token". See the \n\ndocs\n\n for more information.
- access
Token String - The value of the generated access token. From your App’s Dashboard, click on "Marketing API" then "Tools". Select permissions \n\nadsmanagement, adsread, readinsights, businessmanagement\n\n. Then click on "Get token". See the \n\ndocs\n\n for more information.
- access
Token string - The value of the generated access token. From your App’s Dashboard, click on "Marketing API" then "Tools". Select permissions \n\nadsmanagement, adsread, readinsights, businessmanagement\n\n. Then click on "Get token". See the \n\ndocs\n\n for more information.
- access_
token str - The value of the generated access token. From your App’s Dashboard, click on "Marketing API" then "Tools". Select permissions \n\nadsmanagement, adsread, readinsights, businessmanagement\n\n. Then click on "Get token". See the \n\ndocs\n\n for more information.
- access
Token String - The value of the generated access token. From your App’s Dashboard, click on "Marketing API" then "Tools". Select permissions \n\nadsmanagement, adsread, readinsights, businessmanagement\n\n. Then click on "Get token". See the \n\ndocs\n\n for more information.
SourceFacebookMarketingConfigurationCustomInsight, SourceFacebookMarketingConfigurationCustomInsightArgs
- Name string
- The name value of insight
- Action
Breakdowns List<string> - A list of chosen actionbreakdowns for actionbreakdowns
- Action
Report stringTime - Determines the report time of action stats. For example, if a person saw the ad on Jan 1st but converted on Jan 2nd, when you query the API with actionreporttime=impression, you see a conversion on Jan 1st. When you query the API with actionreporttime=conversion, you see a conversion on Jan 2nd. Default: "mixed"; must be one of ["conversion", "impression", "mixed"]
- Breakdowns List<string>
- A list of chosen breakdowns for breakdowns
- End
Date string - The date until which you'd like to replicate data for this stream, in the format YYYY-MM-DDT00:00:00Z. All data generated between the start date and this end date will be replicated. Not setting this option will result in always syncing the latest data.
- Fields List<string>
- A list of chosen fields for fields parameter
- Insights
Job doubleTimeout - The insights job timeout. Default: 60
- Insights
Lookback doubleWindow - The attribution window. Default: 28
- Level string
- Chosen level for API. Default: "ad"; must be one of ["ad", "adset", "campaign", "account"]
- Start
Date string - The date from which you'd like to replicate data for this stream, in the format YYYY-MM-DDT00:00:00Z.
- Time
Increment double - Time window in days by which to aggregate statistics. The sync will be chunked into N day intervals, where N is the number of days you specified. For example, if you set this value to 7, then all statistics will be reported as 7-day aggregates by starting from the start_date. If the start and end dates are October 1st and October 30th, then the connector will output 5 records: 01 - 06, 07 - 13, 14 - 20, 21 - 27, and 28 - 30 (3 days only). The minimum allowed value for this field is 1, and the maximum is 89. Default: 1
- Name string
- The name value of insight
- Action
Breakdowns []string - A list of chosen actionbreakdowns for actionbreakdowns
- Action
Report stringTime - Determines the report time of action stats. For example, if a person saw the ad on Jan 1st but converted on Jan 2nd, when you query the API with actionreporttime=impression, you see a conversion on Jan 1st. When you query the API with actionreporttime=conversion, you see a conversion on Jan 2nd. Default: "mixed"; must be one of ["conversion", "impression", "mixed"]
- Breakdowns []string
- A list of chosen breakdowns for breakdowns
- End
Date string - The date until which you'd like to replicate data for this stream, in the format YYYY-MM-DDT00:00:00Z. All data generated between the start date and this end date will be replicated. Not setting this option will result in always syncing the latest data.
- Fields []string
- A list of chosen fields for fields parameter
- Insights
Job float64Timeout - The insights job timeout. Default: 60
- Insights
Lookback float64Window - The attribution window. Default: 28
- Level string
- Chosen level for API. Default: "ad"; must be one of ["ad", "adset", "campaign", "account"]
- Start
Date string - The date from which you'd like to replicate data for this stream, in the format YYYY-MM-DDT00:00:00Z.
- Time
Increment float64 - Time window in days by which to aggregate statistics. The sync will be chunked into N day intervals, where N is the number of days you specified. For example, if you set this value to 7, then all statistics will be reported as 7-day aggregates by starting from the start_date. If the start and end dates are October 1st and October 30th, then the connector will output 5 records: 01 - 06, 07 - 13, 14 - 20, 21 - 27, and 28 - 30 (3 days only). The minimum allowed value for this field is 1, and the maximum is 89. Default: 1
- name String
- The name value of insight
- action
Breakdowns List<String> - A list of chosen actionbreakdowns for actionbreakdowns
- action
Report StringTime - Determines the report time of action stats. For example, if a person saw the ad on Jan 1st but converted on Jan 2nd, when you query the API with actionreporttime=impression, you see a conversion on Jan 1st. When you query the API with actionreporttime=conversion, you see a conversion on Jan 2nd. Default: "mixed"; must be one of ["conversion", "impression", "mixed"]
- breakdowns List<String>
- A list of chosen breakdowns for breakdowns
- end
Date String - The date until which you'd like to replicate data for this stream, in the format YYYY-MM-DDT00:00:00Z. All data generated between the start date and this end date will be replicated. Not setting this option will result in always syncing the latest data.
- fields List<String>
- A list of chosen fields for fields parameter
- insights
Job DoubleTimeout - The insights job timeout. Default: 60
- insights
Lookback DoubleWindow - The attribution window. Default: 28
- level String
- Chosen level for API. Default: "ad"; must be one of ["ad", "adset", "campaign", "account"]
- start
Date String - The date from which you'd like to replicate data for this stream, in the format YYYY-MM-DDT00:00:00Z.
- time
Increment Double - Time window in days by which to aggregate statistics. The sync will be chunked into N day intervals, where N is the number of days you specified. For example, if you set this value to 7, then all statistics will be reported as 7-day aggregates by starting from the start_date. If the start and end dates are October 1st and October 30th, then the connector will output 5 records: 01 - 06, 07 - 13, 14 - 20, 21 - 27, and 28 - 30 (3 days only). The minimum allowed value for this field is 1, and the maximum is 89. Default: 1
- name string
- The name value of insight
- action
Breakdowns string[] - A list of chosen actionbreakdowns for actionbreakdowns
- action
Report stringTime - Determines the report time of action stats. For example, if a person saw the ad on Jan 1st but converted on Jan 2nd, when you query the API with actionreporttime=impression, you see a conversion on Jan 1st. When you query the API with actionreporttime=conversion, you see a conversion on Jan 2nd. Default: "mixed"; must be one of ["conversion", "impression", "mixed"]
- breakdowns string[]
- A list of chosen breakdowns for breakdowns
- end
Date string - The date until which you'd like to replicate data for this stream, in the format YYYY-MM-DDT00:00:00Z. All data generated between the start date and this end date will be replicated. Not setting this option will result in always syncing the latest data.
- fields string[]
- A list of chosen fields for fields parameter
- insights
Job numberTimeout - The insights job timeout. Default: 60
- insights
Lookback numberWindow - The attribution window. Default: 28
- level string
- Chosen level for API. Default: "ad"; must be one of ["ad", "adset", "campaign", "account"]
- start
Date string - The date from which you'd like to replicate data for this stream, in the format YYYY-MM-DDT00:00:00Z.
- time
Increment number - Time window in days by which to aggregate statistics. The sync will be chunked into N day intervals, where N is the number of days you specified. For example, if you set this value to 7, then all statistics will be reported as 7-day aggregates by starting from the start_date. If the start and end dates are October 1st and October 30th, then the connector will output 5 records: 01 - 06, 07 - 13, 14 - 20, 21 - 27, and 28 - 30 (3 days only). The minimum allowed value for this field is 1, and the maximum is 89. Default: 1
- name str
- The name value of insight
- action_
breakdowns Sequence[str] - A list of chosen actionbreakdowns for actionbreakdowns
- action_
report_ strtime - Determines the report time of action stats. For example, if a person saw the ad on Jan 1st but converted on Jan 2nd, when you query the API with actionreporttime=impression, you see a conversion on Jan 1st. When you query the API with actionreporttime=conversion, you see a conversion on Jan 2nd. Default: "mixed"; must be one of ["conversion", "impression", "mixed"]
- breakdowns Sequence[str]
- A list of chosen breakdowns for breakdowns
- end_
date str - The date until which you'd like to replicate data for this stream, in the format YYYY-MM-DDT00:00:00Z. All data generated between the start date and this end date will be replicated. Not setting this option will result in always syncing the latest data.
- fields Sequence[str]
- A list of chosen fields for fields parameter
- insights_
job_ floattimeout - The insights job timeout. Default: 60
- insights_
lookback_ floatwindow - The attribution window. Default: 28
- level str
- Chosen level for API. Default: "ad"; must be one of ["ad", "adset", "campaign", "account"]
- start_
date str - The date from which you'd like to replicate data for this stream, in the format YYYY-MM-DDT00:00:00Z.
- time_
increment float - Time window in days by which to aggregate statistics. The sync will be chunked into N day intervals, where N is the number of days you specified. For example, if you set this value to 7, then all statistics will be reported as 7-day aggregates by starting from the start_date. If the start and end dates are October 1st and October 30th, then the connector will output 5 records: 01 - 06, 07 - 13, 14 - 20, 21 - 27, and 28 - 30 (3 days only). The minimum allowed value for this field is 1, and the maximum is 89. Default: 1
- name String
- The name value of insight
- action
Breakdowns List<String> - A list of chosen actionbreakdowns for actionbreakdowns
- action
Report StringTime - Determines the report time of action stats. For example, if a person saw the ad on Jan 1st but converted on Jan 2nd, when you query the API with actionreporttime=impression, you see a conversion on Jan 1st. When you query the API with actionreporttime=conversion, you see a conversion on Jan 2nd. Default: "mixed"; must be one of ["conversion", "impression", "mixed"]
- breakdowns List<String>
- A list of chosen breakdowns for breakdowns
- end
Date String - The date until which you'd like to replicate data for this stream, in the format YYYY-MM-DDT00:00:00Z. All data generated between the start date and this end date will be replicated. Not setting this option will result in always syncing the latest data.
- fields List<String>
- A list of chosen fields for fields parameter
- insights
Job NumberTimeout - The insights job timeout. Default: 60
- insights
Lookback NumberWindow - The attribution window. Default: 28
- level String
- Chosen level for API. Default: "ad"; must be one of ["ad", "adset", "campaign", "account"]
- start
Date String - The date from which you'd like to replicate data for this stream, in the format YYYY-MM-DDT00:00:00Z.
- time
Increment Number - Time window in days by which to aggregate statistics. The sync will be chunked into N day intervals, where N is the number of days you specified. For example, if you set this value to 7, then all statistics will be reported as 7-day aggregates by starting from the start_date. If the start and end dates are October 1st and October 30th, then the connector will output 5 records: 01 - 06, 07 - 13, 14 - 20, 21 - 27, and 28 - 30 (3 days only). The minimum allowed value for this field is 1, and the maximum is 89. Default: 1
Import
$ pulumi import airbyte:index/sourceFacebookMarketing:SourceFacebookMarketing my_airbyte_source_facebook_marketing ""
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- airbyte airbytehq/terraform-provider-airbyte
- License
- Notes
- This Pulumi package is based on the
airbyte
Terraform Provider.