Click or drag to resize

UserApiClientPutCollectionAccessLevelAsync Method

Sets the collection access levels of a user for a given database. You need the Administrate server access level in order to execute this REST call.

Namespace:  ArangoDBNetStandard.UserApi
Assembly:  ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax
public virtual Task<PutAccessLevelResponse> PutCollectionAccessLevelAsync(
	string username,
	string dbName,
	string collectionName,
	PutAccessLevelBody body
)

Parameters

username
Type: SystemString
The name of the user.
dbName
Type: SystemString
The name of the database.
collectionName
Type: SystemString
The name of the collection.
body
Type: ArangoDBNetStandard.UserApi.ModelsPutAccessLevelBody
The body of the request containing the access level.

Return Value

Type: TaskPutAccessLevelResponse

Implements

IUserApiClientPutCollectionAccessLevelAsync(String, String, String, PutAccessLevelBody)
See Also