getIntegrationGovernanceInfo
In SOAP web services, the getIntegrationGovernanceInfo operation can be used to retrieve the available concurrency limit for the specific integration.
The operation does not have any parameters and returns the value for concurrency limit and the limit type. The limit type can be:
-
_integrationSpecific, when a limit has been allocated to the integration.
-
_accountLimit, when no specific limit has been allocated to the integration.
-
_internal, when it is an internal application. In this case the limit is not displayed.
SOAP Request
The following request shows the usage of the operation.
<soapenv:Body>
<getIntegrationGovernanceInfo />
</soapenv:Body>
SOAP Response
The following response shows the integration specific concurrency limit.
<soapenv:Body>
<getIntegrationGovernanceInfoResponse>
<platformCore:getIntegrationGovernanceInfoResult>
<platformCore:status isSuccess="true"/>
<platformCore:integrationConcurrencyLimit>2</platformCore:integrationConcurrencyLimit>
<platformCore:limitType>_integrationSpecific</platformCore:limitType> </platformCore:getIntegrationGovernanceInfoResult>
</getIntegrationGovernanceInfoResponse>
</soapenv:Body>
REST Request
In REST web services, you use the governanceLimits operation to retrieve information about concurrency limits.
The governanceLimits operation does not have any parameters and returns (1) the account concurrency limit, which specifies the maximum number of concurrent connections allowed for a given account, (2) the unallocated concurrency limit, which indicates a limit for all integrations without a specifically defined limit, and (3) the limit type.
The following example shows the usage of the governanceLimits operation.
GET https://demo123.suitetalk.api.netsuite.com/services/rest/system/v1/governanceLimits
REST Response
The following sample shows the integration specific concurrency limit.
{
"accountConcurrencyLimit": 5,
"accountUnallocatedConcurrencyLimit": 3,
"integrationConcurrencyLimit": 2,
"integrationLimitType": "integrationSpecific"
}