Skip to content

File storage integrations

This page covers how to set up Cloud Data Ingestion to sync data from Amazon S3 or Google Cloud Storage to Braze.

How it works

You can use Cloud Data Ingestion (CDI) to directly integrate one or more storage buckets in your cloud account with Braze. When you add a new file to a bucket, your cloud provider publishes a notification, and Braze Cloud Data Ingestion syncs the data.

The notification mechanism depends on your provider:

  • Amazon S3: When new files are published to S3, a message is posted to an Amazon Simple Queue Service (SQS) queue, and Braze consumes that message to ingest the new file.
  • Google Cloud Storage (GCS): When new files are finalized in the bucket, GCS publishes an OBJECT_FINALIZE notification to a Pub/Sub topic. Braze consumes those notifications from a Pub/Sub subscription to ingest the new file.

Cloud Data Ingestion supports the following:

  • JSON files
  • CSV files
  • Parquet files
  • Attribute, custom event, purchase event, user delete, and catalog data

Setting up Cloud Data Ingestion

The setup steps depend on your file storage provider. Select the tab for your provider, then complete the shared configuration in the sections that follow.

The integration requires the following resources:

  • S3 bucket for data storage
  • SQS queue for new file notifications
  • IAM role for Braze access

AWS definitions

Term Definition
Amazon Resource Name (ARN) The ARN is a unique identifier for AWS resources.
Identity and Access Management (IAM) IAM is a web service that lets you securely control access to AWS resources. In this tutorial, create an IAM policy and assign it to an IAM role to integrate your S3 bucket with Braze Cloud Data Ingestion.
Amazon Simple Queue Service (SQS) SQS is a hosted queue that lets you integrate distributed software systems and components.

Setting up Cloud Data Ingestion in AWS

Step 1: Create a source bucket

Create a general-purpose S3 bucket with default settings in your AWS account. S3 buckets can be reused across syncs as long as the folder is unique.

The default settings are:

  • ACLs Disabled
  • Block all public access
  • Disable bucket versioning
  • SSE-S3 encryption
    • SSE-S3 is the only supported server-side encryption type. Amazon KMS encryption is not supported.

Note the region where you created the bucket — you’ll create an SQS queue in the same region in the next step.

Step 2: Create SQS queue

Create an SQS queue to track when objects are added to the bucket you’ve created. Use the default configuration settings for now.

An SQS queue must be unique globally (for example, only one can be used for a CDI sync and cannot be reused in another workspace).

Note the ARN and URL of the SQS queue — you’ll need them frequently during this configuration.

Selecting "Advanced" with an example JSON object to define who can access a queue.

Step 3: Set up access policy

To set up the access policy, choose Advanced options.

Append the following statement to the queue’s access policy, being careful to replace YOUR-BUCKET-NAME-HERE with your bucket name, and YOUR-SQS-ARN with your SQS queue ARN, and YOUR-AWS-ACCOUNT-ID with your AWS account ID:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "Sid": "braze-cdi-s3-sqs-publish",
  "Effect": "Allow",
  "Principal": {
    "Service": "s3.amazonaws.com"
  },
  "Action": "SQS:SendMessage",
  "Resource": "YOUR-SQS-ARN",
  "Condition": {
    "StringEquals": {
      "aws:SourceAccount": "YOUR-AWS-ACCOUNT-ID"
    },
    "ArnLike": {
      "aws:SourceArn": "arn:aws:s3:::YOUR-BUCKET-NAME-HERE"
    }
  }
} 

Step 4: Add an event notification to the S3 bucket

  1. In the bucket created in step 1, go to Properties > Event notifications.
  2. Give the configuration a name. Optionally, specify a prefix or suffix to target if you only want a subset of files to be ingested by Braze.
  3. Under Destination, select SQS queue and provide the ARN of the SQS you created in step 2.

Step 5: Create an IAM policy

Create an IAM policy to allow Braze to interact with your source bucket. To get started, sign in to the AWS management console as an account administrator.

  1. Go to the IAM section of the AWS Console, select Policies in the navigation bar, then select Create Policy.

    The "Create policy" button in the AWS Console.

  2. Open the JSON tab and input the following code snippet into the Policy Document section, taking care to replace YOUR-BUCKET-NAME-HERE with your bucket name, and YOUR-SQS-ARN-HERE with your SQS queue name:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": ["s3:ListBucket", "s3:GetObjectAttributes", "s3:GetObject"],
            "Resource": ["arn:aws:s3:::YOUR-BUCKET-NAME-HERE"]
        },
        {
            "Effect": "Allow",
            "Action": ["s3:ListBucket", "s3:GetObjectAttributes", "s3:GetObject"],
            "Resource": ["arn:aws:s3:::YOUR-BUCKET-NAME-HERE/*"]
        },
        {
            "Effect": "Allow",
            "Action": [
                "sqs:DeleteMessage",
                "sqs:GetQueueUrl",
                "sqs:ReceiveMessage",
                "sqs:GetQueueAttributes"
            ],
            "Resource": "YOUR-SQS-ARN-HERE"
        }
    ]
}

  1. Select Review Policy when you’re finished.

  2. Give the policy a name and description, then select Create Policy.

An example policy named "new-policy-name."

The description field for the policy.

Step 6: Create an IAM role

To complete the setup on AWS, create an IAM role and attach the IAM policy from step 5 to it.

  1. Within the same IAM section of the console where you created the IAM policy, go to Roles > Create Role.

The "Create role" button.

  1. In AWS, select Another AWS Account as the trusted entity selector type. Provide your Braze account ID. Select the Require external ID checkbox.
  2. In Braze, go to Data Settings > Cloud Data Ingestion > Sources, select Add data source, and select Amazon S3 from the file sources section.
  3. Copy the automatically generated Braze Account ID.

The "Add New Source" page showing the Source Name and S3 Connection Details sections.

  1. In AWS, paste the account ID and then select Next.

The S3 "Create Role" page. This page has fields for role name, role description, trusted entities, policies, and permissions boundary.

  1. Attach the policy created in step 4 to the role. Search for the policy in the search bar, and select a checkmark next to the policy to attach it. Select Next when complete.

Role ARN with the new-policy-name selected.

Give the role a name and a description, and select Create Role.

An example role named "new-role-name".

  1. Take note of the ARN of the role you created and the external ID you generated, because you need them to create the Cloud Data Ingestion integration.

Setting up Cloud Data Ingestion in Braze

  1. First, create a new source in the Braze dashboard. Go to Data Settings > Cloud Data Ingestion > Sources, select Add data source, and then select Amazon S3.
  2. Choose a name for your source and input the information from the AWS setup process to create a new source. Specify the following:
  • Role ARN
  • External ID
  • Bucket name
  • Region

The S3 Connection Details section showing Credentials (AWS setup and Braze setup) and Configuration fields.

  1. Select Test connection to confirm Braze can access your bucket. After a successful test, select Connect to Source. If the connection fails, an error message appears to help troubleshoot the issue.
  1. Next, create a new sync. Go to Data Settings > Cloud Data Ingestion > Syncs and select Create data sync.
  1. Choose a name for your sync. Then, select any active S3 source and input your source table for the sync. Select a data type and select Test Connection.

An option to test the connection with a data preview.

  1. Input the remaining information from the AWS setup process. Specify the following:
    • SQS URL (must be unique for each new integration)
    • Folder path (optional, must be unique across syncs in a workspace)
  2. Select a data type and select Test Connection to confirm Braze can list the files available to ingest (not the data inside those files). Once successful, select Next: Notifications.
  3. Add contact email(s) for notifications if the sync breaks because of access or permissions issues. Optionally, turn on notifications for user-level errors and sync successes.
  4. Create the sync.

The integration requires the following resources:

  • A Cloud Storage bucket for data storage
  • A Pub/Sub topic and subscription for new file notifications
  • A service account whose JSON key you upload to Braze

GCP definitions

Term Definition
Google Cloud project A project organizes all your Google Cloud resources and is identified by a unique project ID and project number.
Cloud Storage bucket A bucket is the container that holds the data files you want Braze to ingest.
Pub/Sub topic A topic is the named resource that receives new-file notifications from your Cloud Storage bucket.
Pub/Sub subscription A subscription attaches to a topic and delivers its messages. Braze consumes new-file notifications from a pull subscription.
Service account A service account is a non-human identity that Braze uses to access your bucket and subscription. You upload its JSON key to Braze.
IAM role An Identity and Access Management (IAM) role is a collection of permissions that you assign to the service account on your bucket and subscription.

Setting up Cloud Data Ingestion in Google Cloud

Step 1: Create a Cloud Storage bucket

In the Google Cloud console, go to Cloud Storage > Buckets > Create. Note the project ID and the bucket name — you’ll need them when you configure the source in Braze. We recommend enabling uniform bucket-level access so that permissions are managed with IAM.

Alternatively, create the bucket with gcloud:

1
2
3
4
gcloud storage buckets create gs://YOUR-BUCKET-NAME \
  --project=YOUR-PROJECT-ID \
  --location=YOUR-REGION \
  --uniform-bucket-level-access

Step 2: Create a Pub/Sub topic and subscription

In the Google Cloud console, go to Pub/Sub > Topics > Create topic. You can let Google create a default subscription, or create one separately. Then, create a pull subscription on that topic.

Alternatively, use gcloud:

1
2
3
gcloud pubsub topics create YOUR-TOPIC --project=YOUR-PROJECT-ID
gcloud pubsub subscriptions create YOUR-SUBSCRIPTION \
  --topic=YOUR-TOPIC --project=YOUR-PROJECT-ID --ack-deadline=60

Note the subscription ID — Braze needs the subscription (not the topic) when you create the sync. The subscription must be a pull subscription.

Step 3: Send bucket notifications to the topic

First, assign the Cloud Storage service agent permission to publish to the topic, then create the notification for OBJECT_FINALIZE. The OBJECT_FINALIZE event fires whenever a new object is created or finalized in the bucket.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Get the Cloud Storage service agent for your project
gcloud storage service-agent --project=YOUR-PROJECT-ID

# Assign it Pub/Sub Publisher on the topic
gcloud pubsub topics add-iam-policy-binding YOUR-TOPIC \
  --project=YOUR-PROJECT-ID \
  --member="serviceAccount:service-YOUR-PROJECT-NUMBER@gs-project-accounts.iam.gserviceaccount.com" \
  --role="roles/pubsub.publisher"

# Create the OBJECT_FINALIZE notification (optionally scope to a folder with --object-prefix)
gcloud storage buckets notifications create gs://YOUR-BUCKET-NAME \
  --topic=YOUR-TOPIC \
  --event-types=OBJECT_FINALIZE \
  --payload-format=json

Replace the following placeholders in these commands:

  • YOUR-PROJECT-ID: Your Google Cloud project ID, the human-readable identifier (for example, my-gcp-project).
  • YOUR-TOPIC: The Pub/Sub topic you created in Step 2.
  • YOUR-BUCKET-NAME: Your Cloud Storage bucket name.
  • YOUR-PROJECT-NUMBER: Your project number, the numeric identifier used in the Cloud Storage service agent’s email address. This is different from the project ID. Find it on the Dashboard in the Google Cloud console, or run the following command:
1
gcloud projects describe YOUR-PROJECT-ID --format="value(projectNumber)"

Step 4: Create a service account

In the Google Cloud console, go to IAM & Admin > Service Accounts > Create service account.

Alternatively, use gcloud:

1
2
3
gcloud iam service-accounts create braze-cdi-gcs \
  --project=YOUR-PROJECT-ID \
  --display-name="Braze CDI GCS"

Step 5: Assign permissions

The connector needs exactly these permissions: storage.buckets.get, storage.objects.get, and storage.objects.list on the bucket, and pubsub.subscriptions.consume on the subscription. You can assign them with either a custom role or predefined roles.

Custom role: Create a custom role with exactly those permissions and bind it to the bucket and the subscription:

1
2
3
4
5
6
7
8
9
10
11
12
13
gcloud iam roles create brazeCdiGcs --project=YOUR-PROJECT-ID \
  --title="Braze CDI GCS" \
  --permissions=storage.buckets.get,storage.objects.get,storage.objects.list,pubsub.subscriptions.consume \
  --stage=GA

gcloud storage buckets add-iam-policy-binding gs://YOUR-BUCKET-NAME \
  --member="serviceAccount:[email protected]" \
  --role="projects/YOUR-PROJECT-ID/roles/brazeCdiGcs"

gcloud pubsub subscriptions add-iam-policy-binding YOUR-SUBSCRIPTION \
  --project=YOUR-PROJECT-ID \
  --member="serviceAccount:[email protected]" \
  --role="projects/YOUR-PROJECT-ID/roles/brazeCdiGcs"

Predefined roles: Assign roles/storage.objectViewer and roles/storage.legacyBucketReader on the bucket, and roles/pubsub.subscriber on the subscription. The objectViewer role provides storage.objects.get and storage.objects.list, and legacyBucketReader provides storage.buckets.get:

1
2
3
4
5
6
7
8
9
10
gcloud storage buckets add-iam-policy-binding gs://YOUR-BUCKET-NAME \
  --member="serviceAccount:[email protected]" \
  --role="roles/storage.objectViewer"
gcloud storage buckets add-iam-policy-binding gs://YOUR-BUCKET-NAME \
  --member="serviceAccount:[email protected]" \
  --role="roles/storage.legacyBucketReader"
gcloud pubsub subscriptions add-iam-policy-binding YOUR-SUBSCRIPTION \
  --project=YOUR-PROJECT-ID \
  --member="serviceAccount:[email protected]" \
  --role="roles/pubsub.subscriber"

Step 6: Create a JSON key

In the Google Cloud console, open the service account, go to Keys > Add key > Create new key, and select JSON.

Alternatively, use gcloud:

1
2
gcloud iam service-accounts keys create braze-cdi-gcs-key.json \
  --iam-account=[email protected]

Setting up Cloud Data Ingestion in Braze

  1. In Braze, go to Data Settings > Cloud Data Ingestion > Sources, select Add data source, and then select Google Cloud Storage.

The "Add New Source" screen with Google Cloud Storage selected from the list of data sources.

  1. Complete the source fields:
    • Bucket — your bucket name
    • Project ID — your GCP project ID
    • Service account JSON key — upload the key file from step 6 and give the credential a name

The Google Cloud Storage source form showing Bucket, Project ID, and credential upload fields.

  1. Select Test connection, then select Connect to Source.
  2. Create a sync. Go to Data Settings > Cloud Data Ingestion > Syncs and select Create data sync. Choose a sync name and a Data Type (such as User Attributes, Custom Events, Purchase Events, Catalog, or Delete Users), then select Next.
  3. On the Data definition step, select your GCS source, then specify the following:
    • Pub/Sub subscription ID — the subscription ID from step 2 (not the topic)
    • Folder path (optional) — a path prefix within the bucket (see Syncing a folder in a shared bucket)

The Google Cloud Storage sync form showing the Pub/Sub subscription ID and folder path fields.

  1. Select Preview and validate to confirm Braze can reach the subscription and list the files available to ingest. A successful test will list existing files in the bucket, but those files will not be synced automatically.
  2. Add contact email(s) for error notifications. Google Cloud Storage syncs are event-driven, so no schedule is required — Braze ingests new files as they’re uploaded. Review the summary, then select Create sync.

Syncing a folder in a shared bucket

You can reuse one bucket across multiple syncs, but each sync must target a distinct folder and have its own dedicated Pub/Sub subscription.

For each folder you want to sync in a shared bucket:

  1. Set the sync’s Folder field to the path prefix (for example, attributes/). Braze only lists and ingests objects whose path starts with that prefix.
  2. Create a dedicated topic and a prefix-scoped notification for that folder, then create a subscription on that topic:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    
     # One topic per folder
     gcloud pubsub topics create YOUR-ATTRIBUTES-TOPIC --project=YOUR-PROJECT-ID
    
     # Assign the Cloud Storage service agent publisher on the topic
     gcloud pubsub topics add-iam-policy-binding YOUR-ATTRIBUTES-TOPIC \
       --project=YOUR-PROJECT-ID \
       --member="serviceAccount:service-YOUR-PROJECT-NUMBER@gs-project-accounts.iam.gserviceaccount.com" \
       --role="roles/pubsub.publisher"
    
     # Notification scoped to the folder with --object-prefix
     gcloud storage buckets notifications create gs://YOUR-BUCKET-NAME \
       --topic=YOUR-ATTRIBUTES-TOPIC --event-types=OBJECT_FINALIZE \
       --payload-format=json --object-prefix=attributes/
    
     # One subscription per sync
     gcloud pubsub subscriptions create YOUR-ATTRIBUTES-SUBSCRIPTION \
       --topic=YOUR-ATTRIBUTES-TOPIC --project=YOUR-PROJECT-ID --ack-deadline=60
    
  3. Assign the Braze service account consume permission on that subscription, as in Step 5:

    1
    2
    3
    4
    
     gcloud pubsub subscriptions add-iam-policy-binding YOUR-ATTRIBUTES-SUBSCRIPTION \
       --project=YOUR-PROJECT-ID \
       --member="serviceAccount:[email protected]" \
       --role="roles/pubsub.subscriber"
    

    If you created the custom role in Step 5, use --role="projects/YOUR-PROJECT-ID/roles/brazeCdiGcs" instead.

  4. When you create the sync in Braze, enter this folder’s new Pub/Sub subscription ID and Folder path so the sync ingests only that folder’s files.

Required file formats

The required file formats are the same for Amazon S3 and Google Cloud Storage. Cloud Data Ingestion supports JSON, CSV, and Parquet files. The required columns depend on the data type:

  • User data (attributes, custom events, purchase events) uses user identifiers and a payload
  • Catalog data uses catalog identifiers

If you’re using file storage for catalog data, use this page with Sync and delete catalog data for catalog-specific requirements and behavior.

Braze doesn’t enforce any additional filename requirements beyond what’s enforced by your file storage provider. Filenames should be unique. Appending a timestamp helps ensure uniqueness.

For examples of all supported file types (attributes, custom events, purchases, catalogs, and user deletes), see the sample files in braze-examples.

User identifiers

For user data syncs (attributes, custom events, purchase events), each row in your source file requires exactly one user identifier and a PAYLOAD column. A source file may contain rows with different identifier types, but each individual row should only use one.

Identifier Description
EXTERNAL_ID This identifies the user you want to update. This should match the external_id value used in Braze.
ALIAS_NAME and ALIAS_LABEL These two columns create a user alias object. alias_name should be a unique identifier, and alias_label specifies the type of alias. Users may have multiple aliases with different labels, but only one alias_name per alias_label.
BRAZE_ID The Braze user identifier. This is generated by the Braze SDK, and new users cannot be created using a Braze ID through Cloud Data Ingestion. To create new users, specify an external user ID or user alias.
EMAIL The user’s email address. If multiple profiles with the same email address exist, the most recently updated profile is prioritized for updates. If you include both email and phone, Braze uses the email as the primary identifier.
PHONE The user’s phone number. If multiple profiles with the same phone number exist, the most recently updated profile is prioritized for updates.

In addition to an identifier, each row must include a PAYLOAD column containing a JSON string of the fields you want to sync to the user in Braze.

Catalog identifiers

For catalog syncs, your source file must contain the following columns. Catalog files use different identifiers than user data files.

Column Required Description
ID Yes The unique identifier for the catalog item. Used to create, update, or delete the item in Braze.
PAYLOAD Yes A JSON string of the catalog fields and values to sync. Must match the schema of your catalog in Braze.
DELETED No When true, the catalog item with the matching ID is removed from the catalog in Braze. Omit this column or set to false for create or update operations.

Examples

1
2
3
4
5
6
7
{"external_id":"s3-qa-0","payload":"{\"name\": \"GT896\", \"age\": 74, \"subscriber\": true, \"retention\": {\"previous_purchases\": 21, \"vip\": false}, \"last_visit\": \"2023-08-08T16:03:26.600803\"}"}
{"external_id":"s3-qa-1","payload":"{\"name\": \"HSCJC\", \"age\": 86, \"subscriber\": false, \"retention\": {\"previous_purchases\": 0, \"vip\": false}, \"last_visit\": \"2023-08-08T16:03:26.600824\"}"}
{"external_id":"s3-qa-2","payload":"{\"name\": \"YTMQZ\", \"age\": 43, \"subscriber\": false, \"retention\": {\"previous_purchases\": 23, \"vip\": true}, \"last_visit\": \"2023-08-08T16:03:26.600831\"}"}
{"external_id":"s3-qa-3","payload":"{\"name\": \"5P44M\", \"age\": 15, \"subscriber\": true, \"retention\": {\"previous_purchases\": 7, \"vip\": true}, \"last_visit\": \"2023-08-08T16:03:26.600838\"}"}
{"external_id":"s3-qa-4","payload":"{\"name\": \"WMYS7\", \"age\": 11, \"subscriber\": true, \"retention\": {\"previous_purchases\": 0, \"vip\": false}, \"last_visit\": \"2023-08-08T16:03:26.600844\"}"}
{"external_id":"s3-qa-5","payload":"{\"name\": \"KCBLK\", \"age\": 47, \"subscriber\": true, \"retention\": {\"previous_purchases\": 11, \"vip\": true}, \"last_visit\": \"2023-08-08T16:03:26.600850\"}"}
{"external_id":"s3-qa-6","payload":"{\"name\": \"T93MJ\", \"age\": 47, \"subscriber\": true, \"retention\": {\"previous_purchases\": 10, \"vip\": false}, \"last_visit\": \"2023-08-08T16:03:26.600856\"}"}
1
2
{"external_id":"s3-qa-0","payload":"{\"app_id\": \"YOUR_APP_ID\", \"name\": \"view-206\", \"time\": \"2024-04-02T14:34:08\", \"properties\": {\"bool_value\": false, \"preceding_event\": \"unsubscribe\", \"important_number\": 206}}"}
{"external_id":"s3-qa-1","payload":"{\"app_id\": \"YOUR_APP_ID\", \"name\": \"view-206\", \"time\": \"2024-04-02T14:34:08\", \"properties\": {\"bool_value\": false, \"preceding_event\": \"unsubscribe\", \"important_number\": 206}}"}
1
2
{"external_id":"s3-qa-0","payload":"{\"app_id\": \"YOUR_APP_ID\", \"product_id\": \"product-11\", \"currency\": \"BSD\", \"price\": 8.511527858335066, \"time\": \"2024-04-02T14:34:08\", \"quantity\": 19, \"properties\": {\"is_a_boolean\": true, \"important_number\": 40, \"preceding_event\": \"click\"}}"}
{"external_id":"s3-qa-1","payload":"{\"app_id\": \"YOUR_APP_ID\", \"product_id\": \"product-11\", \"currency\": \"BSD\", \"price\": 8.511527858335066, \"time\": \"2024-04-02T14:34:08\", \"quantity\": 19, \"properties\": {\"is_a_boolean\": true, \"important_number\": 40, \"preceding_event\": \"click\"}}"}
1
2
3
4
external_id,payload
s3-qa-load-0-d0daa196-cdf5-4a69-84ae-4797303aee75,"{""name"": ""SNXIM"", ""age"": 54, ""subscriber"": true, ""retention"": {""previous_purchases"": 19, ""vip"": true}, ""last_visit"": ""2023-08-08T16:03:26.598806""}"
s3-qa-load-1-d0daa196-cdf5-4a69-84ae-4797303aee75,"{""name"": ""0J747"", ""age"": 73, ""subscriber"": false, ""retention"": {""previous_purchases"": 22, ""vip"": false}, ""last_visit"": ""2023-08-08T16:03:26.598816""}"
s3-qa-load-2-d0daa196-cdf5-4a69-84ae-4797303aee75,"{""name"": ""EP1U0"", ""age"": 99, ""subscriber"": false, ""retention"": {""previous_purchases"": 23, ""vip"": false}, ""last_visit"": ""2023-08-08T16:03:26.598822""}"
1
2
3
ID,PAYLOAD,DELETED
85,"{""product_name"": ""Product 85"", ""price"": 85.85}",false
1,"{""product_name"": ""Product 1"", ""price"": 1.01}",true

Include an optional DELETED column. When DELETED is true, that catalog item is removed from the catalog in Braze. For the full list of required columns, see Catalog identifiers. For delete behavior, see Deleting catalog items. For an end-to-end catalog setup flow (including creating the target catalog and sync behavior), see Sync and delete catalog data.

Deleting data

Cloud Data Ingestion for file storage supports deleting users and catalog items through file uploads. Use separate syncs and file formats for each.

  • Deleting users – Create a sync with data type Delete Users and upload files that contain only user identifiers (no payload).
  • Deleting catalog items – Use your existing catalog sync and add a deleted (or DELETED) column to mark items for removal.

Deleting users

To delete user profiles in Braze using files in your source bucket:

  1. Create a new Cloud Data Ingestion sync (same setup as for other syncs).
  2. When configuring the sync in Braze, set Data Type to Delete Users.
  3. Upload files to your source bucket that contain only user identifier columns. Do not include a PAYLOAD column—the sync fails if payload is present, to avoid accidental deletions.

Each row in the file must identify exactly one user using one of:

Identifier Description
EXTERNAL_ID Matches the external_id used in Braze.
ALIAS_NAME and ALIAS_LABEL Both columns together identify the user by alias.
BRAZE_ID Braze-generated user ID (existing users only).

Example – JSON (user deletes):

{"external_id":"user-to-delete-001"}
{"external_id":"user-to-delete-002"}
{"braze_id":"braze-id-from-profile"}

Example – CSV (user deletes):

1
2
3
external_id
user-to-delete-001
user-to-delete-002

When the sync runs, Braze processes new files in the bucket and deletes the corresponding user profiles.

Deleting catalog items

To remove items from a catalog using file storage:

  1. Use the same sync you use to sync catalog data (data type Catalogs).
  2. In your CSV or JSON files, add an optional deleted (or DELETED) column.
  3. Set deleted to true for any catalog item you want removed from the catalog in Braze.

Each row still needs ID and PAYLOAD. For rows marked for deletion, the payload can be minimal; Braze removes the item by ID.

Example – JSON (catalog item delete):

{"id":"85","payload":"{\"product_name\": \"Product 85\", \"price\": 85.85}"}
{"id":"1","payload":"{\"product_name\": \"Product 1\", \"price\": 1.01}","deleted":true}

Example – CSV (catalog item delete):

1
2
3
ID,PAYLOAD,DELETED
85,"{""product_name"": ""Product 85"", ""price"": 85.85}",false
1,"{""product_name"": ""Product 1"", ""price"": 1.01}",true

When the sync runs, rows with deleted: true cause the matching catalog item to be deleted in Braze. For full catalog sync and delete behavior, see Sync and delete catalog data.

Things to know

  • Files added to the source bucket should not exceed 512 MB. This limit applies to both Amazon S3 and Google Cloud Storage. Files larger than 512 MB result in an error and are not synced to Braze.
  • While there is no additional limit on the number of rows per file, we recommend using smaller files to improve how fast your syncs run. For example, a 500 MB file would take considerably longer to ingest than five separate 100 MB files.
  • There’s no additional limit on the number of files uploaded in a given time.
  • Ordering isn’t supported in or between files. We recommend batching updates periodically if you’re monitoring for any expected race conditions.

Troubleshooting

Uploading files and processing

CDI will only process files that are added after the sync is created. In this process, Braze looks for new files to be added, which triggers a new notification. This kicks off a new sync to process the new file. For Amazon S3, the notification is a message to SQS. For Google Cloud Storage, it’s an OBJECT_FINALIZE message to Pub/Sub.

You can use existing files to validate that Braze can access your bucket and detect files to ingest, but they are not synced to Braze. For the CDI to process them, you must re-upload to the source bucket any existing files that you want synced.

Handling unexpected file errors (Amazon S3)

If you’re observing a high number of errors or failed files, you may have another process adding files to the S3 bucket in a folder other than the target folder for CDI.

When files are uploaded to the source bucket but not in the source folder, CDI will process the SQS notification, but it does not take any action on the file, so this may appear as an error.

If your issue is related to S3 notifications or SQS destination permissions (for example, destination validation errors), refer to AWS documentation:

Handling unexpected file errors (Google Cloud Storage)

Like Amazon S3, CDI only processes files uploaded after the sync is created. Each new object triggers an OBJECT_FINALIZE message to your Pub/Sub topic. To ingest files that already exist in the bucket, re-upload them.

If files are not ingested, verify the following:

  • The bucket notification exists. List the notifications on the bucket with gcloud storage buckets notifications list gs://YOUR-BUCKET-NAME.
  • The Cloud Storage service agent has roles/pubsub.publisher on the topic.
  • The Braze service account has consume permission on the subscription (pubsub.subscriptions.consume, assigned through either the custom role or roles/pubsub.subscriber).
  • The subscription doesn’t have a dead-letter queue configured. Braze doesn’t support dead-letter queues for Cloud Data Ingestion subscriptions.

For more information, see Pub/Sub notifications for Cloud Storage in the Google Cloud documentation.

New Stuff!