Overview
This web service retrieves a an expense document cost cards card (PwsCostCardElement), based upon a unique cost card identifier identifier (PwsCostCardRef), or an expense document (PwsExpenseDocumentRef), or a resource identity (PwsResourceRef).
Request Format
Panel | ||
---|---|---|
| ||
|
Request Elements
Element | Data Type | Required? | Default | Description | Sample Data |
---|---|---|---|---|---|
RequestId | Int32 | No | Click here for more information. | 1 | |
SessionTicket | String | Yes | Click here for more information. | AeB+IjyAtjb5x8rPrBUjXA== | |
CostCardIdentity | Yes | The cost card to be retrieved | |||
ExpenseDocumentIdentity | Yes | The expense document associated with the cost card. This must match the expense document of the specified cost card |
. | ||
ResourceIdentity | No |
** This field has been deprecated. |
Request Usage Example(s)
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<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:PwsGetExpenseDocumentCostCard> <pws:serviceRequest> <req:RequestId>1</req:RequestId> <req:SessionTicket>AeB+IjyAtjb5x8rPrBUjXA==</req:SessionTicket> <tim:CostCardIdentity> <com:CostCardUid>1152921504614515296</com:CostCardUid> </tim:CostCardIdentity> <tim:ExpenseDocumentIdentity> <com:DocumentNumber>ER00721</com:DocumentNumber> <com:ExpenseDocumentUid>1152921504607683575</com:ExpenseDocumentUid> </tim:ExpenseDocumentIdentity> <!--tim:ResourceIdentity> <com:ResourceDisplayName>Jack Spratt</com:ResourceDisplayName> <com:ResourceReferenceSystemId>E123</com:ResourceReferenceSystemId> <com:ResourceUid>1152921504607111573</com:ResourceUid> </tim:ResourceIdentity--> </pws:serviceRequest> </pws:PwsGetExpenseDocumentCostCard> </soapenv:Body> </soapenv:Envelope> |
...