...
Element | Data Type | Required? | Default | Description | Sample Data |
---|---|---|---|---|---|
RequestId | Int32 | No | Click here for more information | ||
SessionTicket | String | Yes | Click here for more information | ||
DisbursingCostCenterIdentity | One of DisbursingCostCenterIdentity , or ExpenseDocumentIdentity or ProjectIdentities or ResourceIdentity is required | For this service, the caller may specify a disbursing cost center identity to retrieve a a list of users that can approve expense documents associated with the disbursing cost center | |||
ExpenseDocumentIdentity | See DisbursingCostCenterIdentity | For this service, the caller may specify an expense document to retrieve a a list of users that can approve expenses on the expense document | |||
ProjectIdentities | See DisbursingCostCenterIdentityNo | For this service, the caller may specify one or more projects to retrieve a a list of users that can approve expense documents associated with the project(s) | |||
ResourceIdentity | See DisbursingCostCenterIdentityNo | For this service, the caller may specify a resource to retrieve a list of users that can approve expense documents associated with the resource. This can only be specified if the document type is an expense report (i.e. "E"). | |||
DocumentType | String | Yes | The expense document type: "E" for Expense Report "C" for Subcontractor Invoice "V" for Vendor Invoice "S" for Soft Cost Batch |
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:PwsGetExpenseDocumentApprovers>
<pws:serviceRequest>
<req:RequestId>1</req:RequestId>
<req:SessionTicket>AXSG6rN0j9gBkWbkRw6OpQ==</req:SessionTicket>
<tim:ExpenseDocumentIdentity>
<com:DocumentNumber>ER00719</com:DocumentNumber>
</tim:ExpenseDocumentIdentity>
<tim:ProjectIdentities>
<com:PwsProjectRef>
<com:ProjectCode>P001407-001</com:ProjectCode>
</com:PwsProjectRef>
</tim:ProjectIdentities>
<tim:DocumentType>E</tim:DocumentType>
</pws:serviceRequest>
</pws:PwsGetExpenseDocumentApprovers>
</soapenv:Body>
</soapenv:Envelope> |