GetRequestCountInfo

GetRequestCountInfo

Getting information on amount of requests.

Request

Format Description
  • StartDate — Start date of the period on which information is required (mandatory field). Format is yyyy-MM-dd. Data type — string.
  • EndDate — End date of the period on which information is required (mandatory field). Format is yyyy-MM-dd. Data type — string.
  • SubAgenciesIDs — list of external subagencies on which information is required (optional field). Data type — array.
  • SubAgencyID — ID of external subagency. Data type — 32-bit integer.
Examples
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:avia="http://ws-ibe.com/Avia" xmlns:stl="http://ws-ibe.com/STL">
   <soapenv:Header/>
   <soapenv:Body>
      <avia:GetRequestCountInfo>
         <avia:Request>
            <stl:Requisites>
               <stl:AuthToken>token</stl:AuthToken>
            </stl:Requisites>
            <stl:UserID>11111</stl:UserID>
            <stl:RequestType>P</stl:RequestType>
            <stl:RequestBody>
               <avia:StartDate>2024-12-01</avia:StartDate>
               <avia:EndDate>2024-12-31</avia:EndDate>
               <avia:SubAgenciesIDs>
                  <avia:ID>11333</avia:ID>
               </avia:SubAgenciesIDs>
            </stl:RequestBody>
         </avia:Request>
      </avia:GetRequestCountInfo>
   </soapenv:Body>
</soapenv:Envelope>

Response

Format Description
  • RequestCountInfo — Information on amount of requests by date. Data type — complex.
  • RequestCountInfo.Date — Date of requests. Format is yyyy-MM-dd. Data type — string.
  • RequestCountInfo.RequestCountBySubAgencies — Information on amount of requests by external subagencies. Data type — array.
  • RequestCountInfo.RequestCountBySubAgencies.RequestCountBySubAgency — Information on amount of requests for specific subagency. Data type — complex.
  • RequestCountInfo.RequestCountBySubAgencies.RequestCountBySubAgency.SubAgencyID — ID of external subagency. Data type — 32-bit integer.
  • RequestCountInfo.RequestCountBySubAgencies.RequestCountBySubAgency.RequestCountInfo — Information on amount of requests. Data type — complex.
  • RequestCountInfo.RequestCountBySubAgencies.RequestCountBySubAgency.RequestCountInfo.Searches — Amount of searches. Data type — 32-bit integer.
  • RequestCountInfo.RequestCountBySubAgencies.RequestCountBySubAgency.RequestCountInfo.Tickets — Amount of requests for tickets. Data type — 32-bit integer.
Examples
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
   <s:Body>
      <GetRequestCountInfoResponse xmlns="http://ws-ibe.com/Avia">
         <GetRequestCountInfoResult xmlns:a="http://ws-ibe.com/STL" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
            <a:RequestID>100000000</a:RequestID>
            <a:ResponseBody>
               <RequestCountInfo>
                  <DatedRequestCountInfo>
                     <Date>2024-12-01T00:00:00</Date>
                     <RequestCountBySubAgencies>
                        <RequestCountBySubAgency>
                           <SubAgencyID>11333</SubAgencyID>
                           <RequestCountInfo>
                              <Searches>0</Searches>
                              <Tickets>0</Tickets>
                           </RequestCountInfo>
                        </RequestCountBySubAgency>
                     </RequestCountBySubAgencies>
                  </DatedRequestCountInfo>
                  <DatedRequestCountInfo>
                     <Date>2024-12-02T00:00:00</Date>
                     <RequestCountBySubAgencies>
                        <RequestCountBySubAgency>
                           <SubAgencyID>11333</SubAgencyID>
                           <RequestCountInfo>
                              <Searches>0</Searches>
                              <Tickets>0</Tickets>
                           </RequestCountInfo>
                        </RequestCountBySubAgency>
                     </RequestCountBySubAgencies>
                  </DatedRequestCountInfo>
               </RequestCountInfo>
            </a:ResponseBody>
         </GetRequestCountInfoResult>
      </GetRequestCountInfoResponse>
   </s:Body>
</s:Envelope>