GET Integration/GetIntegrationsByType?integrationType={integrationType}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
integrationType

IntegrationTypeEnum

Required

Body Parameters

None.

Response Information

Resource Description

IntegrationListResponseModel
NameDescriptionTypeAdditional information
IntegrationList

Collection of IntegrationResponseModel

None.

Response Formats

application/json, text/json

Sample:
{
  "<IntegrationList>k__BackingField": [
    {
      "CommonIdentifier": "e095e341-6bd4-4329-b7d4-6e4456b36c5a",
      "ArcoroId": "0a87a9ef-79da-4dc1-b023-c900203be35b",
      "SecretName": "sample string 3",
      "IntegrationType": 0,
      "IsDeleted": true
    },
    {
      "CommonIdentifier": "e095e341-6bd4-4329-b7d4-6e4456b36c5a",
      "ArcoroId": "0a87a9ef-79da-4dc1-b023-c900203be35b",
      "SecretName": "sample string 3",
      "IntegrationType": 0,
      "IsDeleted": true
    }
  ]
}

application/xml, text/xml

Sample:
<IntegrationListResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SystemAdmin.Messaging.ResponseModels">
  <_x003C_IntegrationList_x003E_k__BackingField>
    <IntegrationResponseModel>
      <ArcoroId>0a87a9ef-79da-4dc1-b023-c900203be35b</ArcoroId>
      <CommonIdentifier>e095e341-6bd4-4329-b7d4-6e4456b36c5a</CommonIdentifier>
      <IntegrationType>ApplicantExport</IntegrationType>
      <IsDeleted>true</IsDeleted>
      <SecretName>sample string 3</SecretName>
    </IntegrationResponseModel>
    <IntegrationResponseModel>
      <ArcoroId>0a87a9ef-79da-4dc1-b023-c900203be35b</ArcoroId>
      <CommonIdentifier>e095e341-6bd4-4329-b7d4-6e4456b36c5a</CommonIdentifier>
      <IntegrationType>ApplicantExport</IntegrationType>
      <IsDeleted>true</IsDeleted>
      <SecretName>sample string 3</SecretName>
    </IntegrationResponseModel>
  </_x003C_IntegrationList_x003E_k__BackingField>
</IntegrationListResponseModel>