/domains/{DomainName}/profiles
http://profile.{region}.amazonaws.com/domains/{DomainName}/profiles<p>Updates the properties of a profile. The ProfileId is required for updating a customer profile.</p> <p>When calling the UpdateProfile API, specifying an empty string value means that any existing value will be removed. Not specifying a string value means that any value already there will be kept.</p>
Path Parameters
The unique name of the domain.
Body Params
The gender with which the customer identifies.
Updates associated with the address properties of a customer profile.
The customer’s last name.
The customer’s birth date.
The customer’s first name.
The type of profile used to describe the customer.
The unique identifier of a customer profile.
A key value pair of attributes of a customer profile.
The customer’s middle name.
The customer’s phone number, which has not been specified as a mobile, home, or business number.
The name of the customer’s business.
The customer’s email address, which has not been specified as a personal or business address.
An alternative to <code>Gender</code> which accepts any string as input.
A unique account number that you have given to the customer.
Updates associated with the address properties of a customer profile.
Updates associated with the address properties of a customer profile.
The customer’s home phone number.
An alternative to <code>PartyType</code> which accepts any string as input.
Updates associated with the address properties of a customer profile.
The customer’s mobile phone number.
The customer’s business phone number.
The customer’s business email address.
The customer’s personal email address.
Any additional information relevant to the customer’s profile.
Responses
{
"success": true,
"data": {
"id": "abc123",
"created_at": "2025-01-01T00:00:00Z"
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid request parameters"
}
}1curl --request PUT \2 --url 'http://profile.{region}.amazonaws.com/domains/{DomainName}/profiles' \3 --header 'accept: application/json' \4 --header 'content-type: application/json'1{2 "success": true,3 "data": {4 "id": "abc123",5 "created_at": "2025-01-01T00:00:00Z"6 }7}