CoreBOSBB

Full Version: How to get the webservice ID of a module
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
If you want to get the webservice ID of a module, use the 'describe' method.You can find a PHP version of the library here. The method will give you an overview of the module, including the webservice ID.
and if you are working from inside the application, in a workflow task, for example, you can use the:

PHP Code:
vtws_getEntityId($entityName); 


function like this:

PHP Code:
$accountWSID vtws_getEntityId('Accounts'); 
You can find an example of the web service describe method in the coreBOS Webservice Development tool:

https://github.com/tsolucio/coreBOSwsDevelopment/blob/master/testcode/080lib_describe.php