ndex_network_delete_permission: Delete Network Permission

Description Usage Arguments Value REST query Note Examples

View source: R/ndex_networks_ndex_properties.r

Description

Removes any permission for the network for the user or group specified

Usage

1
ndex_network_delete_permission(ndexcon, networkId, user = NULL, group = NULL)

Arguments

ndexcon

object of class NDExConnection linkndex_connect

networkId

unique ID of the network

user

character (optional); uuid of the user. Only either user or group may be set!

group

character (optional); uuid of the group. Only either user or group may be set!

Value

1 integer on success, 0 if user/group allready has no permissions on the network

REST query

GET: ndex_config$api$network$permission$delete

Note

Requires an authorized user! (ndex_connect with credentials)

Compatible to NDEx server version 1.3 and 2.0

In version 1.3 the function only works for user permissions!

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
## Establish a server connection with credentials 
# ndexcon = ndex_connect('MyAccountName', 'MyPassword')
## Find one of your networks and get its UUID
# networks = ndex_find_networks(ndexcon, accountName='MyAccountName')
# networkId = networks[1,"externalId"]
## Get the UUID for a user and group
# someUserUuid = "uuuuuuuu-ssss-eeee-rrrr-111111111111"
# someGroupUuid = "ggggggg-rrrr-oooo-uuuu-pppppppppppp"
## Delete the permissions
#ndex_network_delete_permission(ndexcon, networkId, user=someUserUuid)
# => returns 1
#ndex_network_delete_permission(ndexcon, networkId, user=someUserUuid)
# => returns 0, because user already lost permission on network
#ndex_network_delete_permission(ndexcon, networkId, group=someGroupUuid)
NULL

ndexr documentation built on March 13, 2021, 2 a.m.