Get system integrations

This endpoint is deprecated.
POST/api/RPC.common.Api.InterationSystems.get?token=<TOKEN>

Key InterationSystems.get · API version 2.0.0

Parameters

5 body parameters inside data[]
FieldTypeDescription
idIntegerSystem integration ID
namerequiredStringIntegration system name
get_allBooleanGet all
offsetNumberOffset
limitNumberLimit

Request example

Search By Id:
{
   "data" : [
      {
         "id" : 1028939327
      }
   ]
}
Search By Name:
{
   "data" : [
      {
         "name" : "test"
      }
   ]
}
Search By All Params:
{
   "data" : [
      {
         "name" : "test",
         "id" : 1028939327
      }
   ]
}
Get All:
{
	"data":[
		{}
	],
	"get_all":1,
	"limit":10000,
	"offset":0
}

cURL

Search By Id:
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -d '{   "data" : [      {         "id" : 1028939327      }   ]}' "https://<DOMAIN_NAME>/api/RPC.common.Api.InterationSystems.get?token=<TOKEN>"
Search By Name:
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -d '{   "data" : [      {         "name" : "test"      }   ]}' "https://<DOMAIN_NAME>/api/RPC.common.Api.InterationSystems.get?token=<TOKEN>"
Search By All Params:
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -d '{   "data" : [      {         "name" : "test",         "id" : 1028939327      }   ]}' "https://<DOMAIN_NAME>/api/RPC.common.Api.InterationSystems.get?token=<TOKEN>"
Curl example Get All:
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -d '{	"data":[		{}	],	"get_all":1,	"limit":10000,	"offset":0}	' "https://<DOMAIN_NAME>/api/RPC.common.Api.InterationSystems.get?token=<TOKEN>"

Response example