yes, it should.
First make sure you have the following user preferences:
Enable WAAPI: True
Allowed Origins: #unknown,#file
WAMP Port: 8080
HTTP Port: 8090
For instance, this python script should run with the latest waapi python client and Wwise 2017.2.10:
from waapi import WaapiClient
import pprint
# Connect (default URL)
client = WaapiClient()
# Return all targets
args = {
"from": {"path": ['\\Actor-Mixer Hierarchy']},
"transform": [
{"select": ['children']}
]
}
options = {
"return": ['name']
}
result = client.call("ak.wwise.core.object.get", args, options=options)
pprint.pprint(result)