Description

You have to call this method when you want to edit info of an existing user in DRUID.

If you edit any confirmable id (email, mobile), and mark it as not confirmed (because yo have not confirmed it externally), new id need to be confirmed. The user’s new email/mobile will not be established until the confirmation process is completed.

Please, read first https://dru-id.com/developers/apis/oauth-2/ to learn about Oauth2 protocol and the meaning of each token, and https://dru-id.com/developers/apis/oauth-2/obtain-challenge_code-token to know how to obtain the token needed to perform this operation.

Scope needed for obtain token is update.

Note that your app must have appropriate permissions to allow use of challenge code flow. Please contact with you manager to request this permissions.

Warning!: this is a replacement operation. Any data that the user already has and is not sent in the request will be removed from the user. Please check that the json is well formed before making the call to avoid possible unwanted data loss.

Endpoint URL:

POST https://{your-endpoint-domain.com}/activityid/v1/user/update

Request parameters

ParameterDescriptionTypeRequired
AuthorizationBearer ${challenge_code_token}

Literal text Bearer followed by challenge_code_token that is the token obtained from /oauth2/token endpoint

stringyes
Content-Typeapplication/sonstringyes
Acceptapplication/sonstringyes
FromId of the entry pointstringyes
Accept-LanguageLanguage of this requestLocaleno

Query string parameters

ParameterDescriptionTypeRequired
code_verifierThe code verifier for the PKCE request, that the app originally generated before the authorization request, as defined in https://dru-id.com/developers/apis/oauth-2/obtain-challenge_code-tokenstringyes

Request example

ParameterDescriptionTypeRequiredValue
actor.idapp_id of the application you are using to log userstringyesapp id
actor.objectTypeType of the object which represents the actor.stringyes‘application’
verbVerb used for create userstringyes‘create’
object.objectTypeObjectType represents the userstringyes‘user’
object.passwordPassword of the user. it must be send plainstringyesuser password
object.idsUser identifiers. More info about user identifiers User Infostructyesstruct
object.datasUser datas. More info about user datas User Infostructyesstruct
object.assertionsStruct that defines legalities manage by the user. More info about user assertions User Infostructyesstruct
source.idType of device doing the activitystringyes‘unknown’ | ‘pc’ | ‘mobile’ | ‘tablet’ | ‘game_console’ | ‘itv’
source.objectTypeType of sourcestringyes‘device’

Response examples

Response: user updated successfully

Response: user updated successfully, and email or mobile needs confirmation

Response: no changes in update

You will receive Http Response  304 Not Modified

Response: Errors in request