Your Browser is not longer supported

Please use Google Chrome, Mozilla Firefox or Microsoft Edge to view the page correctly
Loading...

{{viewport.spaceProperty.prod}}

remove() - Remove inbound user

Function:

BcAdminInboundUser.remove()

Removes the specified inbound user from the configuration.

Parameters:

bc_object (BcObject of type BcObjectType.INBOUND_USER)

Inbound user that is to be removed.

Return:

None

Exceptions:

BcObjectException, BcParameterException, BcToolException

Example:

...
import BcAdminInboundUser
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
user_obj=BcAdminInboundUser.getObject("USR",proxy_obj)
BcAdminInboundUser.remove (user_obj)
...