GetQueueDescription

GetQueueDescription

Get queue list.

Request

  • SourceIDs - source ids list (package). Data type - array.
  • SourceIDs.SourceID - source ID (package) for which the queues list will be retrieved. Data type - int.
  • SupplierOwner - point of sale parameters.
  • SupplierOwner.Agency - agency ID. Data type - string.
  • SupplierOwner.User - point of sales. Data type - string.

Example

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:avia="http://ws-ibe.com/Avia" xmlns:stl="http://ws-ibe.com/STL" xmlns:avia1="http://websky.travel/Avia">
   <soapenv:Header/>
   <soapenv:Body>
      <avia:GetQueueDescription>
         <avia:Request>
            <stl:Requisites>
               <stl:AuthToken>token</stl:AuthToken>
            </stl:Requisites>
            <stl:UserID>11111</stl:UserID>
            <stl:RequestType>P</stl:RequestType>
            <stl:RequestBody>
               <avia1:SourceIDs>
                  <avia1:SourceID>-10000</avia1:SourceID>
               </avia1:SourceIDs>
               <avia1:SupplierOwner>
                  <avia1:Agency>11110</avia1:Agency>
                  <avia1:User>11111</avia1:User>
               </avia1:SupplierOwner>
            </stl:RequestBody>
         </avia:Request>
      </avia:GetQueueDescription>
   </soapenv:Body>
</soapenv:Envelope>

Ответ

  • QueueDescriptionList - container with a list of queues. Data type - array.
  • QueueDescriptionList.QueueDescription - queue description. Data type - array.
  • QueueDescription.Number - queue number. Data type - string.
  • QueueDescription.Name - queue name. Data type - string.
  • QueueDescription.RecordsCount - count of notifications in queue. Data type - int.
  • QueueDescription.SourceID - source ID (package). Data type - int.
  • QueueDescription.CategoryDescriptionList - container with a list of category queue. Data type - array.
  • CategoryDescriptionList.CategoryDescription - description of category. Data type - array.
  • CategoryDescription.Number - category number. Data type - string.
  • CategoryDescription.Name - category name. Data type - string.
  • CategoryDescription.RecordsCount - count of notifications in category. Data type - int.

Пример

<?xml version="1.0"?>
<ResponseWithGetQueueDescriptionRsBody xmlns="http://ws-ibe.com/STL" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <RequestID>1000000123</RequestID>
  <ResponseBody xmlns:a="http://ws.travel/Avia">
    <a:QueueDescriptionList>
      <a:QueueDescription>
        <a:Number>7</a:Number>
        <a:Name>Name1</a:Name>
        <a:RecordsCount>43383</a:RecordsCount>
        <a:SourceID>-10000</a:SourceID>
        <a:CategoryDescriptionList i:nil="true"/>
      </a:QueueDescription>
      <a:QueueDescription>
        <a:Number>9</a:Number>
        <a:Name>Name2</a:Name>
        <a:RecordsCount>1</a:RecordsCount>
        <a:SourceID>-10000</a:SourceID>
        <a:CategoryDescriptionList i:nil="true"/>
      </a:QueueDescription>
    </a:QueueDescriptionList>
  </ResponseBody>
</ResponseWithGetQueueDescriptionRsBody>