Overview
This web service inserts or updates a single skill based on a detailed user structure (PwsSkillDetail). The service returns the identity (PwsSkillRef) of the skill that has been inserted or updated. The caller can optionally request that the full skill detail (PwsSkillElement) be included in the response.
Request Format
Panel | ||
---|---|---|
| ||
|
Request Elements
Element | Data Type | Required? | Default | Description | Sample Data |
---|---|---|---|---|---|
RequestId | Int32 | No | Click here for more information. | ||
SessionTicket | String | Yes | Click here for more information. | ||
FullDetailFlag | Boolean | No | No | If set to "true", the complete resource detail will be included in response. | |
Skill | Yes | This structure contains the complete set of information about a skill | |||
SkillVersionStamp | Int32 | No | ????? |
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:com="http://projectorpsa.com/DataContracts/Shared/Common/"> <soapenv:Header/> <soapenv:Body> <pws:PwsSaveSkill> <!--Optional:--> <pws:serviceRequest> <req:SessionTicket>AQztUvxG5aNFjPJheSuItw==</req:SessionTicket> <req:Skill> <!--Optional:--> <com:SkillGroupIdentity> <com:SkillGroupName>Technology</com:SkillGroupName> </com:SkillGroupIdentity> <com:SkillName>HTML</com:SkillName> <com:InactiveFlag>0</com:InactiveFlag> <!--Optional:--> <com:NewSkillName>HTML2</com:NewSkillName> <!--Optional:--> <com:SortOrder>3</com:SortOrder> </req:Skill> </pws:serviceRequest> </pws:PwsSaveSkill> </soapenv:Body> </soapenv:Envelope> |
...
Panel | ||
---|---|---|
| ||
|
Response Elements
Element | Data Type | Description |
---|
Messages | 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. | |
Skill | This structure contains the complete set of information about a skill. | |
SkillIdentity | This structure represents the unique key fields associated with identifying a resource skill. | |
SkillVersionStamp | Int32 | ????? |
Response Usage Example(s)
...