Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Panel
titlePwsGetResourceExpenseSchedule Request

Request Elements


Element

Data Type

Required?

Description

Sample Data

RequestId

Int32

No

Click here for more information.

1

SessionTicket

String

Yes 

Click here for more information.

AfMtiadjKEErha/5LNfifA==

EndDate

DateTime

Yes 

The EndDate and the StartDate (in UTC format) defines the date range that will be applied as a filter in the search

2018-03-31T00:00:00.000Z

ResourceIdentity

PwsResourceRef

No 

The resource identity when acting on behalf of another user. If this value is not set, the expense schedule associated with the authenticated user will be included in the response 

2018-03-01T00:00:00.000Z

StartDate

DateTime

Yes 

See EndDate


ExpenseDocumentIdentityPwsExpenseDocumentRefNo(question)

Request Usage Example(s)


Code Block
languagexml
titleExample 01
collapsetrue
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pws="http://projectorpsa.com/PwsProjectorServices/" xmlns:req="http://projectorpsa.com/DataContracts/Requests/" xmlns:tim="http://projectorpsa.com/DataContracts/Shared/TimeAndCost/" xmlns:com="http://projectorpsa.com/DataContracts/Shared/Common/">
   <soapenv:Header/>
   <soapenv:Body>
      <pws:PwsGetResourceExpenseSchedule>
         <pws:serviceRequest>
            <req:RequestId>1</req:RequestId>
            <req:SessionTicket>AfMtiadjKEErha/5LNfifA==</req:SessionTicket>
            <tim:EndDate>2018-03-31T00:00:00.000Z</tim:EndDate>
            <tim:StartDate>2018-03-01T00:00:00.000Z</tim:StartDate>
         </pws:serviceRequest>
      </pws:PwsGetResourceExpenseSchedule>
   </soapenv:Body>
</soapenv:Envelope>

...