Reputation: 1290
Sometimes I am getting error like
.SNGL
itemfield.not ent BGNG
with
But most of the time I getting success result. I am not sure where I am doing wrong. Here is my PAX Payload.
<AddRemarkRQ>
<RemarkInfo>
<FOP_Remark Type="CHECK" />
<Remark Code="H" SegmentNumber="A" Type="General">
<Text>GDS FARE 23156.00/Tax 1990.00</Text>
</Remark>
</RemarkInfo>
</AddRemarkRQ>
<TravelItineraryAddInfoRQ>
<AgencyInfo>
<Address>
<AddressLine>Go Hi Fly</AddressLine>
<CityName>Kuala Lumpur</CityName>
<CountryCode>MY</CountryCode>
<PostalCode>55100</PostalCode>
<StreetNmbr>NO 3</StreetNmbr>
<VendorPrefs>
<Airline Hosted="false" />
</VendorPrefs>
</Address>
<Ticketing PseudoCityCode="PCC" QueueNumber="56" TicketType="7TAW" TicketTimeLimit="08-22T01:00" ShortText="Test text" />
</AgencyInfo>
<CustomerInfo>
<ContactNumbers>
<ContactNumber NameNumber="1.1" Phone="1875950000" PhoneUseType="H" />
</ContactNumbers>
<Email Address="[email protected]" NameNumber="1.1" Type="TO" ShortText="Online Booking" />
<PersonName NameNumber="1.1" PassengerType="ADT">
<GivenName>AbuMR</GivenName>
<Surname>Sayem</Surname>
</PersonName>
</CustomerInfo>
</AddRemarkRQ>
Upvotes: 0
Views: 2121
Reputation: 1427
I think you called the same service twice without doing an ignore transaction in between, and the agency address information can be added just once.
So, the first works and the 2nd time fails with that error.
Upvotes: 2