Returns the template information for a specific object type.
A template is a predefined ProfileObjectType, such as “Salesforce-Account” or
“Salesforce-Contact.” When a user sends a ProfileObject, using the PutProfileObject API,
with an ObjectTypeName that matches one of the TemplateIds, it uses the mappings from the
template.
example
Use a bare-bones client and the command you need to make an API call.
Returns the template information for a specific object type.
A template is a predefined ProfileObjectType, such as “Salesforce-Account” or “Salesforce-Contact.” When a user sends a ProfileObject, using the PutProfileObject API, with an ObjectTypeName that matches one of the TemplateIds, it uses the mappings from the template.
Use a bare-bones client and the command you need to make an API call.
import { CustomerProfilesClient, GetProfileObjectTypeTemplateCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import // const { CustomerProfilesClient, GetProfileObjectTypeTemplateCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import const client = new CustomerProfilesClient(config); const command = new GetProfileObjectTypeTemplateCommand(input); const response = await client.send(command);
GetProfileObjectTypeTemplateCommandInput for command's
input
shape.GetProfileObjectTypeTemplateCommandOutput for command's
response
shape.config for CustomerProfilesClient's
config
shape.