Adds additional objects to customer profiles of a given ObjectType.
When adding a specific profile object, like a Contact Record, an inferred profile can
get created if it is not mapped to an existing profile. The resulting profile will only
have a phone number populated in the standard ProfileObject. Any additional Contact Records
with the same phone number will be mapped to the same inferred profile.
When a ProfileObject is created and if a ProfileObjectType already exists for the
ProfileObject, it will provide data to a standard profile depending on the
ProfileObjectType definition.
PutProfileObject needs an ObjectType, which can be created using
PutProfileObjectType.
example
Use a bare-bones client and the command you need to make an API call.
Adds additional objects to customer profiles of a given ObjectType.
When adding a specific profile object, like a Contact Record, an inferred profile can get created if it is not mapped to an existing profile. The resulting profile will only have a phone number populated in the standard ProfileObject. Any additional Contact Records with the same phone number will be mapped to the same inferred profile.
When a ProfileObject is created and if a ProfileObjectType already exists for the ProfileObject, it will provide data to a standard profile depending on the ProfileObjectType definition.
PutProfileObject needs an ObjectType, which can be created using PutProfileObjectType.
Use a bare-bones client and the command you need to make an API call.
import { CustomerProfilesClient, PutProfileObjectCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import // const { CustomerProfilesClient, PutProfileObjectCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import const client = new CustomerProfilesClient(config); const command = new PutProfileObjectCommand(input); const response = await client.send(command);
PutProfileObjectCommandInput for command's
input
shape.PutProfileObjectCommandOutput for command's
response
shape.config for CustomerProfilesClient's
config
shape.