Versions Compared

Key

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

...

Element

Data Type

Required?

Default

Description

Sample Data

RequestId

Int32

No


Click here for more information.


SessionTicket

String

Yes


Click here for more information.

AQ6SEBGgdJSg3aZ5kSDsDg==

BeginDate

DateTime

No




EndDate

DateTime

No




ListType

String (1)

Yes


The type of on-behalf-of users:

C: Cost

T: Time


MaximumRows

Int32

No


The maximum number of resources to be returned. This value is disregarded if a client is specified in ResourceIdentity.


ResourceIdentity

PwsResourceRef

No




SearchString

String (255)

No


A search string to narrow down the results. A resource will be included in the results if the search string matches the resource's display name based upon the criteria. This value is disregarded if a client is specified in ResourceIdentity.


Usage Example(s)


Code Block
languagejava
titleExample 01 - without resource
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:PwsGetOnBehalfOfResources>
         <pws:serviceRequest>
            <req:SessionTicket>AQ6SEBGgdJSg3aZ5kSDsDg==</req:SessionTicket>
            <tim:BeginDate>2018-01-01z</tim:BeginDate>
            <tim:EndDate>2018-03-31z</tim:EndDate>
            <tim:ListType>T</tim:ListType>
            <tim:MaximumRows>3</tim:MaximumRows>
            <tim:SearchString>br</tim:SearchString>
         </pws:serviceRequest>
      </pws:PwsGetOnBehalfOfResources>
   </soapenv:Body>
</soapenv:Envelope>

...