Versions Compared

Key

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

Overview

This web service deletes a specified skill (PwsSkillRef). 

Request Format

Panel
titlePwsDeleteSkill Request

...

Element

Data Type

Required?

Default

Description

Sample Data

RequestId

Int32

No


Click here for more information.


SessionTicket

String

Yes


Click here for more information.


InactivateIfInUseFlag

Boolean

No

fals

If set to "true" and the skill is in use, the skill will be inactivated instead of deleted.  If set to "false" and the skill is in use, the delete request will fail. 


SkillIdentity

PwsSkillRef

Yes


This structure represents the unique key fields associated with identifying a resource the skill to be deleted.



Request Usage Example(s)


Code Block
languagexml
titleExample 01
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:com="http://projectorpsa.com/DataContracts/Shared/Common/">
   <soapenv:Header/>
   <soapenv:Body>
      <pws:PwsDeleteSkill>
         <!--Optional:-->
         <pws:serviceRequest>
            <req:SessionTicket>AQztUvxG5aNFjPJheSuItw==</req:SessionTicket>
            <req:SkillIdentity>
               <!--Optional:-->
               <com:SkillGroupIdentity>
                  <com:SkillGroupName>Technology</com:SkillGroupName>
               </com:SkillGroupIdentity>
               <com:SkillName>NoLongerInUse</com:SkillName>
            </req:SkillIdentity>
         </pws:serviceRequest>
      </pws:PwsDeleteSkill>
   </soapenv:Body>
</soapenv:Envelope>

...

Element

Data Type

Description

Sample Data

Messages

PwsMessage[]

The web service response status and message. Click here for more information


ResponseId

Int32

Click here for more information.

0

Status

RequestStatusClick here for more informationOk

ServerTimestampUtc

DateTime

Click here for more information.

2018-03-07T18:49:19.6612047Z

SkillIdentity

PwsSkillRef

This structure represents the unique key fields associated with identifying a resource the skill that was deleted.



Response Usage Example(s)

...