IUserApiClientPatchUserAsync Method |
Partially update an existing user.
You need server access level Administrate in order to execute this REST call.
Additionally, a user can change his/her own data.
Namespace:
ArangoDBNetStandard.UserApi
Assembly:
ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax Task<PatchUserResponse> PatchUserAsync(
string username,
PatchUserBody body
)
Function PatchUserAsync (
username As String,
body As PatchUserBody
) As Task(Of PatchUserResponse)
Task<PatchUserResponse^>^ PatchUserAsync(
String^ username,
PatchUserBody^ body
)
abstract PatchUserAsync :
username : string *
body : PatchUserBody -> Task<PatchUserResponse>
Parameters
- username
- Type: SystemString
The name of the user. - body
- Type: ArangoDBNetStandard.UserApi.ModelsPatchUserBody
The user information used for to replace operation.
Return Value
Type:
TaskPatchUserResponseSee Also