Profile
Import Profiles
Initiate a profile import by requesting a pre-signed upload URL and an associated importId. Upload your CSV to the returned URL (single PUT). Query the import status endpoint to track processing progress. This endpoint creates the import task and allocates resources for subsequent ingestion.
post/v1/Stores/{storeId}/Profiles/Imports
Request body
Example request
{
"columnMappings": [
{
"columnName": "first_name",
"traitGroup": "Contact",
"traitName": "firstName"
}
]
}Response
Import task created.
Example response
{
"importId": "mem_import_00000000000000000000000000",
"url": "https://unified-profiles-csv-upload-stage-us-east-1.s3.amazonaws.com/object.txt?AWSAccessKeyId=AKIAIOSFODNN7EXAMPLE&Signature=vjbyNxybdZaMmLa%2ByT372YEAiv4%3D&Expires=1741978496"
}