Tangram's CSV import system allows you to bulk import data into your application.
You can import data for:
You can import photos for users and listings by including photo URLs in your CSV file:
photos_0
, photos_1
, photos_2
, etc.photos_0
will be set as the avatar/profile pictureemail,name,photos_0,photos_1,photos_2
john@example.com,John Doe,https://example.com/avatar.jpg,https://example.com/photo1.jpg,https://example.com/photo2.jpg
jane@example.com,Jane Smith,https://example.com/jane-avatar.jpg,,
Note: Leave cells empty if you don't have photos for all columns.
Without ID column: New records will be created for each row
With ID column: Existing records will be updated based on the ID
Note: Imports with ID columns cannot be undone after completion.
User imports require either:
Without either field, no user records will be imported.
Issue | Solution |
---|---|
CSV parsing error | Check for unmatched quotes, special characters, or incorrect delimiters in your CSV |
Import button disabled | You need to map at least one column before running the import |
No records imported | Verify required fields are mapped (e.g., email for new users) |
Duplicate records created | Map an ID column to update existing records instead of creating new ones |
Photos not importing | Ensure photo URLs are publicly accessible, use correct column names (photos_0, photos_1, etc.), and check that URLs are valid image formats |