Your Browser is not longer supported

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

{{viewport.spaceProperty.prod}}

getProperties() - Read properties of an inbound user

Function:

BcAdminInboundUser.getProperties()

Reads all the properties of the specified inbound user and returns a dictionary with key-value pairs for the properties.

Parameters:

bc_object (BcObject of type BcObjectType.INBOUND_USER)

Inbound user whose properties are to be read.

Return:

Dictionary with key-value pairs for the properties of the inbound user. You can find the possible values for key in Properties of an inbound user .

Exceptions:

BcObjectException, BcToolException

Example:

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