getAccountGovernanceInfo

The getAccountGovernanceInfo operation can be used to retrieve the account concurrency limit and the unallocated concurrency limit through SOAP web services.

If an integration has insufficient concurrency limit allocated to it, it can use the getAccountGovernanceInfo operation. With the retrieved information the integration can determine whether there is sufficient unallocated concurrency limit for the account and can suggest the administrator to increase the concurrency limit allocated to the integration.

If an integration does not have concurrency limit allocated to it, and the unallocated concurrency limit is insufficient, the application can use the getAccountGovernanceInfo operation. With the retrieved information the integration can advise the administrator to concider decreasing the concurrency limit allocated for other integrations and calculate if that is feasible.

Note:

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

SOAP Request

            <soapenv:Body>
        <getAccountGovernanceInfo/>
</soapenv:Body> 

          

SOAP Response

            <soapenv:Body>
        <getAccountGovernanceInfoResponse>
            <platformCore:getAccountGovernanceInfoResult>
                <platformCore:status isSuccess="true"/>
                                  <platformCore:accountConcurrencyLimit>5</platformCore:accountConcurrencyLimit>
                                  <platformCore:unallocatedConcurrencyLimit>3</platformCore:unallocatedConcurrencyLimit>
            </platformCore:getAccountGovernanceInfoResult>
        </getAccountGovernanceInfoResponse>
    </soapenv:Body> 

          

Related Topics

General Notices