Update a User Identity
await seam.userIdentities.update({
user_identity_id: "dc378ea9-358e-4999-b295-d0f3e0d5ff51",
user_identity_key: "jane_doe",
email_address: "[email protected]",
phone_number: "+15551234567",
full_name: "Jane Doe",
});// voidcurl --include --request POST "https://connect.getseam.com/user_identities/update" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"user_identity_id": "dc378ea9-358e-4999-b295-d0f3e0d5ff51",
"user_identity_key": "jane_doe",
"email_address": "[email protected]",
"phone_number": "+15551234567",
"full_name": "Jane Doe"
}
EOF{}Request Parameters
Response
Last updated
Was this helpful?

