GET v1/enterprise/carriers?pageSize={pageSize}&pageNumber={pageNumber}&modifiedStartDate={modifiedStartDate}&modifiedEndDate={modifiedEndDate}

API for fetching Enterprise customer carriers data order by tenant Id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
pageSize

Number of results per page Default to 25

integer

Required

pageNumber

PageNumber retrives Defatul to 1

integer

Required

modifiedStartDate

Filters employees modfied on or after this date

date

Required

modifiedEndDate

Filters employees modfied on or after this date

date

Required

Body Parameters

None.

Response Information

Resource Description

Returns Paginated Carriers data order by Tenant Id

EnterpriseCarriersData
NameDescriptionTypeAdditional information
PageNumber

integer

None.

PageSize

integer

None.

TotalItems

integer

None.

TotalPages

integer

None.

Data

Collection of CarrierInfo

None.

Response Formats

application/json, text/json

Sample:
{
  "PageNumber": 10,
  "PageSize": 25,
  "TotalItems": 1291,
  "TotalPages": 30,
  "Data": [
    {
      "QQTenantID": 1212,
      "CarrierID": 3421,
      "NAIC": "19682",
      "BestRatingCode": "A+",
      "PremiumSent": "4258",
      "CarrierName": "Insurance Co Of The State Of PA",
      "ParentCarrierID": 25479,
      "ParentCarrierName": "Southern Ins Co Of VA",
      "BusinessFEIN": "20-5664246",
      "Status": "A",
      "AppCreated": "AP",
      "CreatedBy": 1073,
      "CreatedOn": "2024-05-14 13:25:33",
      "EmployeeLastModified": 1075
    },
    {
      "QQTenantID": 1212,
      "CarrierID": 3421,
      "NAIC": "19682",
      "BestRatingCode": "A+",
      "PremiumSent": "4258",
      "CarrierName": "Insurance Co Of The State Of PA",
      "ParentCarrierID": 25479,
      "ParentCarrierName": "Southern Ins Co Of VA",
      "BusinessFEIN": "20-5664246",
      "Status": "A",
      "AppCreated": "AP",
      "CreatedBy": 1073,
      "CreatedOn": "2024-05-14 13:25:33",
      "EmployeeLastModified": 1075
    }
  ]
}

application/xml, text/xml

Sample:
<EnterpriseCarriersData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QQSolutions.NextGen.ModelLibrary.DataTransferObjects.EnterpriseModels">
  <Data>
    <CarrierInfo>
      <AppCreated>AP</AppCreated>
      <BestRatingCode>A+</BestRatingCode>
      <BusinessFEIN>20-5664246</BusinessFEIN>
      <CarrierID>3421</CarrierID>
      <CarrierName>Insurance Co Of The State Of PA</CarrierName>
      <CreatedBy>1073</CreatedBy>
      <CreatedOn>2024-05-14 13:25:33</CreatedOn>
      <EmployeeLastModified>1075</EmployeeLastModified>
      <LastModified>2024-07-15 15:14:58</LastModified>
      <NAIC>19682</NAIC>
      <ParentCarrierID>25479</ParentCarrierID>
      <ParentCarrierName>Southern Ins Co Of VA</ParentCarrierName>
      <PremiumSent>4258</PremiumSent>
      <QQTenantID>1212</QQTenantID>
      <RowSource>sample string 1</RowSource>
      <Status>A</Status>
    </CarrierInfo>
    <CarrierInfo>
      <AppCreated>AP</AppCreated>
      <BestRatingCode>A+</BestRatingCode>
      <BusinessFEIN>20-5664246</BusinessFEIN>
      <CarrierID>3421</CarrierID>
      <CarrierName>Insurance Co Of The State Of PA</CarrierName>
      <CreatedBy>1073</CreatedBy>
      <CreatedOn>2024-05-14 13:25:33</CreatedOn>
      <EmployeeLastModified>1075</EmployeeLastModified>
      <LastModified>2024-07-15 15:14:58</LastModified>
      <NAIC>19682</NAIC>
      <ParentCarrierID>25479</ParentCarrierID>
      <ParentCarrierName>Southern Ins Co Of VA</ParentCarrierName>
      <PremiumSent>4258</PremiumSent>
      <QQTenantID>1212</QQTenantID>
      <RowSource>sample string 1</RowSource>
      <Status>A</Status>
    </CarrierInfo>
  </Data>
  <PageNumber>10</PageNumber>
  <PageSize>25</PageSize>
  <TotalItems>1291</TotalItems>
  <TotalPages>30</TotalPages>
</EnterpriseCarriersData>