...
This web service retrieves a list of project task types (PwsProjectProjectTaskTypes), based upon a unique project identifier (PwsProjectRef).
...
|
Request Elements
Element | Data Type | Required? | DefaultDescriptionDescription | Sample Data |
---|---|---|---|---|
Int32 | No | Click here for more information. |
| |
String | Yes | Click here for more information. |
| |
ProjectIdentities | PwsProjectRef [1-100] | Yes | This structure represents the unique key fields associated with a project. Click here for more information. |
...
Element | Data Type | Description | Sample Data |
---|---|---|---|
Messages | PwsMessage [1-100] | The web service response status and message. Click here for more information | |
Int32 | Click here for more information. |
| |
RequestStatus | Click here for more information |
| |
DateTime | Click here for more information. |
| |
TaskTypesByProject | PwsProjectProjectTaskTypes [1-100] | This structure represents the unique key fields associated with identifying a project task type. |
...
Code Block |
---|
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> <s:Body> <PwsGetProjectTaskTypesResponse xmlns="http://projectorpsa.com/PwsProjectorServices/"> <PwsGetProjectTaskTypesResult xmlns:a="http://projectorpsa.com/DataContracts/Shared/Scheduling/" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <Messages xmlns="http://projectorpsa.com/CommonServices/" xmlns:b="http://projectorpsa.com/DataContracts/Shared/Common/"> <b:PwsMessage> <b:AdditionalErrorText>Message 136: This request was executed against the QA [appqa.projectorpsa.com] environment.</b:AdditionalErrorText> <b:ErrorCode>NonProductionEnvironment</b:ErrorCode> <b:ErrorNumber>136</b:ErrorNumber> <b:ErrorText>This web service request was executed against a non-production instance of Projector.</b:ErrorText> <b:Type>Information</b:Type> <b:ReferenceId1 i:nil="true"/> <b:ReferenceId2 i:nil="true"/> <PwsMessage></b:PwsMessage> </Messages> <ResponseId xmlns="http://projectorpsa.com/CommonServices/">1</ResponseId> <Status xmlns="http://projectorpsa.com/CommonServices/">Ok</Status> <ServerTimestampUtc xmlns="http://projectorpsa.com/CommonServices/">2024-10-11T19:18:02.7483931Z</ServerTimestampUtc> <a:TaskTypesByProject xmlns:b="http://projectorpsa.com/DataContracts/Shared/Common/"> <b:PwsProjectProjectTaskTypes> <b:ProjectIdentity> <b:ProjectCode>E001057-P001</b:ProjectCode> <b:ProjectId i:nil="true"/> <b:ProjectUid>1152921504607670227</b:ProjectUid> </b:ProjectIdentity> <b:ProjectTaskTypes> <b:PwsProjectTaskTypeElement> <b:ProjectTaskTypeDetail> <b:ExternalSystemIdentifier>PD-4325 (TaskType01)</b:ExternalSystemIdentifier> <b:ProjectTaskTypeId i:nil="true"/> <b:ProjectTaskTypeUid>1152921504609318633</b:ProjectTaskTypeUid> <b:ProjectTaskTypeName>September</b:ProjectTaskTypeName> <b:AllowedProjectRateTypeIdentities> <b:PwsProjectRateTypeRef> <b:ExternalSystemIdentifier>40</b:ExternalSystemIdentifier> <b:ProjectRateTypeId i:nil="true"/> <b:ProjectRateTypeUid>1152921504607828301</b:ProjectRateTypeUid> </b:PwsProjectRateTypeRef> </b:AllowedProjectRateTypeIdentities> <b:DefaultProjectRateTypeIdentity> <b:ExternalSystemIdentifier>40</b:ExternalSystemIdentifier> <b:ProjectRateTypeId i:nil="true"/> <b:ProjectRateTypeUid>1152921504607828301</b:ProjectRateTypeUid> </b:DefaultProjectRateTypeIdentity> <b:InactiveFlag>false</b:InactiveFlag> <b:NarrativeRequiredFlag>false</b:NarrativeRequiredFlag> <b:NewExternalSystemIdentifier i:nil="true"/> <b:SortOrder>1</b:SortOrder> <b:StandardTaskTypeIdentity> <b:StandardTaskTypeCode>Apr</b:StandardTaskTypeCode> <b:StandardTaskTypeId i:nil="true"/> <b:StandardTaskTypeName>April</b:StandardTaskTypeName> <b:StandardTaskTypeUid>1152921504606848775</b:StandardTaskTypeUid> </b:StandardTaskTypeIdentity> <b:InheritPurchaseOrderNumberFlag>false</b:InheritPurchaseOrderNumberFlag> <b:PurchaseOrderNumber>PwsSaveProjectTaskType</b:PurchaseOrderNumber> </b:ProjectTaskTypeDetail> </b:PwsProjectTaskTypeElement> </b:ProjectTaskTypes> </b:PwsProjectProjectTaskTypes> </a:TaskTypesByProject> </PwsGetProjectTaskTypesResult> </PwsGetProjectTaskTypesResponse> </s:Body> </s:Envelope> |
...