URL

GET https://{api-url}/api/v2/tenants/{tenantId}/integrations/available/search

Sample URLs

https://{api-url}/api/v2/tenants/client_8/integrations/available/search?pageNo=1&pageSize=10&isDescendingOrder=true&sortName=name&queryString=category:ITSM_INTEGRATION

Parameters

FieldDefault Value
pageNo={pageNo}1
pageSize={pageSize}100
isDescendingOrder={true/false}false
sortName={field}name
queryString={queryString}NA

NA indicates that the value is not applicable.

Status code

200 OK

Sample response

{
	"results": [{
			"id": "ALERTLOGIC",
			"name": "Alert Logic"
		},
		{
			"id": "DELLCOMPELLENT",
			"name": "Dell Compellent"
		},
		{
			"id": "Email Alerts",
			"name": "Email Alerts"
		},
		{
			"id": "GRAPHITE",
			"name": "Graphite"
		},
		{
			"id": "NAGIOS",
			"name": "Nagios"
		},
		{
			"id": "NEUSTAR",
			"name": "Neustar"
		},
		{
			"id": "NEWRELIC_LEGACY",
			"name": "NewRelic_Legacy"
		},
		{
			"id": "NIMSOFT",
			"name": "Nimsoft"
		},
		{
			"id": "OPSMANAGER",
			"name": "OpsManager"
		},
		{
			"id": "CUSTOM",
			"name": "Custom"
		}
	],
	"totalResults": 14,
	"pageNo": 1,
	"pageSize": 10,
	"totalPages": 2,
	"nextPage": true,
	"nextPageNo": 2,
	"previousPageNo": 0,
  "descendingOrder": false
}