getIntegrationGovernanceInfo

Important:

In many cases, you can achieve the equivalent of SOAP operations using REST web services. For a comparison of available operations in SOAP and REST web services, see SOAP Web Services vs. REST Web Services Operation Mapping.

The getIntegrationGovernanceInfo operation can be used to retrieve the available concurrency limit for the specific integration using the operation through SOAP web services.

The operation does not have any parameters and returns the value for concurrency limit and the limit type.

The limit type can be:

With this information the integration can determine how many concurrent requests it can send.

Every integration should use this operation to get information about the available limit and to not exceed the number of available threads that send requests to NetSuite.

Note:

The operation will return results only if you are logged in as an administrator.

SOAP Request

            <soapenv:Body>
        <getIntegrationGovernanceInfo />
</soapenv:Body> 

          

SOAP Response

            <soapenv:Body>
        <getIntegrationGovernanceInfoResponse>
            <platformCore:getIntegrationGovernanceInfoResult>
                <platformCore:status isSuccess="true"/>
                       <platformCore:integrationConcurrencyLimit>2</platformCore:integrationConcurrencyLimit>
                       <platformCore:limitType>_integrationSpecific</platformCore:limitType>                                                              </platformCore:getIntegrationGovernanceInfoResult>
        </getIntegrationGovernanceInfoResponse>
</soapenv:Body> 

          

Related Topics

General Notices