Sample Soap Request for Method: getOfferStateHistory( String nationalDonorId, Long offerId )

Request: get the offer state history for the specified offer ID.

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ctr="http://ctr3ws.cbs.com/"> <soapenv:Header> <wsse:Security soapenv:mustUnderstand="0" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"> <wsse:UsernameToken wsu:Id="UsernameToken-3" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"> <wsse:Username>someCTRuser</wsse:Username> <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">anypw</wsse:Password> </wsse:UsernameToken> </wsse:Security> </soapenv:Header> <soapenv:Body> <ctr:getOfferStateHistory> <arg0>CTD000613</arg0> <arg1>182</arg1> </ctr:getOfferStateHistory> </soapenv:Body> </soapenv:Envelope>

Response:the offer state history record.

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <ns2:getOfferStateHistoryResponse xmlns:ns2="http://ctr3ws.cbs.com/"> <return> <nationalDonorId>CTD000613</nationalDonorId> <consentedOrganId>3689</consentedOrganId> <organ> <id>5</id> <bizRef>KIDNEY</bizRef> </organ> <organType> <id>7</id> <bizRef>RIGHT_KIDNEY</bizRef> </organType> <offerID>182</offerID> <offerState> <id>3</id> <bizRef>ACCEPTED</bizRef> </offerState> <offerStateTime>2021-01-27T19:55:08-05:00</offerStateTime> </return> <return> <nationalDonorId>CTD000613</nationalDonorId> <consentedOrganId>3689</consentedOrganId> <organ> <id>5</id> <bizRef>KIDNEY</bizRef> </organ> <organType> <id>7</id> <bizRef>RIGHT_KIDNEY</bizRef> </organType> <offerID>182</offerID> <offerState> <id>1</id> <bizRef>PROPOSED</bizRef> </offerState> <offerStateTime>2021-01-27T19:54:54-05:00</offerStateTime> </return> </ns2:getOfferStateHistoryResponse> </soap:Body> </soap:Envelope>