updateProfile
client.updateProfile({ accessToken: string, redirectUrl: string, data: Profile })
About this command
Update the information of the profile.
|
Examples
client.updateProfile({
accessToken: 'eyJ0eXAiOiJKV1QiL...',
redirectUrl: 'https://example-email-validate.com',
data: {
givenName: 'John',
familyName: 'Doe'
}
})
Parameters
The authorization credential JSON Web Token (JWT) used to access the ReachFive API. |
|||||||||||||||||||||||||||||||||||||||
The URL sent in the email to which the user is redirected. This URL must be whitelisted in the |
|||||||||||||||||||||||||||||||||||||||
The profile with the new data. Only the provided fields will be updated.
|