GET api/QMS/UserSkills/DefaultAction   QMS   All Services

This service returns a list of all the users and their associated skills. (Note: It does not include deleted skills or inactive/deleted users.)

Request Information

Headers

Fields Type M/O/C Definition
AccountLoginName String(50) Mandatory Login name of an account used for logging into Galaxy application to perform the service call
AccountPassword String(50) Mandatory Password of an account used for logging into Galaxy application to perform the service call
SourceSystemID String(50) Mandatory Name or ID of application or system that initiated the call.
DomainID String(50) Mandatory Name or ID of the domain that the call is being made to. (Value will be 1, if the site only has one domain)
Accept String Optional Format in which client expects the response: [application/json] (default), [application/xml]
ContentType String Optional Format in which client is sending the request: [application/json] (default), [application/xml]

Return Type

Return typeUserSkillDTO[]
UserSkillDTO:
PropertyNameTypeRequiredDescription
LoginName String Mandatory
SkillName String Optional
ExperiencePeriod Nullable<Double> Optional
Description String Optional
PeriodType String Optional
TreeIndex String Optional
UserSkillName String Optional

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "LoginName": "sample string 1",
    "SkillName": "sample string 2",
    "ExperiencePeriod": 1.1,
    "Description": "sample string 3",
    "PeriodType": "sample string 4",
    "TreeIndex": "sample string 5",
    "UserSkillName": "sample string 6"
  },
  {
    "LoginName": "sample string 1",
    "SkillName": "sample string 2",
    "ExperiencePeriod": 1.1,
    "Description": "sample string 3",
    "PeriodType": "sample string 4",
    "TreeIndex": "sample string 5",
    "UserSkillName": "sample string 6"
  },
  {
    "LoginName": "sample string 1",
    "SkillName": "sample string 2",
    "ExperiencePeriod": 1.1,
    "Description": "sample string 3",
    "PeriodType": "sample string 4",
    "TreeIndex": "sample string 5",
    "UserSkillName": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfUserSkillDTO xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <UserSkillDTO>
    <LoginName>sample string 1</LoginName>
    <SkillName>sample string 2</SkillName>
    <ExperiencePeriod>1.1</ExperiencePeriod>
    <Description>sample string 3</Description>
    <PeriodType>sample string 4</PeriodType>
    <TreeIndex>sample string 5</TreeIndex>
    <UserSkillName>sample string 6</UserSkillName>
  </UserSkillDTO>
  <UserSkillDTO>
    <LoginName>sample string 1</LoginName>
    <SkillName>sample string 2</SkillName>
    <ExperiencePeriod>1.1</ExperiencePeriod>
    <Description>sample string 3</Description>
    <PeriodType>sample string 4</PeriodType>
    <TreeIndex>sample string 5</TreeIndex>
    <UserSkillName>sample string 6</UserSkillName>
  </UserSkillDTO>
  <UserSkillDTO>
    <LoginName>sample string 1</LoginName>
    <SkillName>sample string 2</SkillName>
    <ExperiencePeriod>1.1</ExperiencePeriod>
    <Description>sample string 3</Description>
    <PeriodType>sample string 4</PeriodType>
    <TreeIndex>sample string 5</TreeIndex>
    <UserSkillName>sample string 6</UserSkillName>
  </UserSkillDTO>
</ArrayOfUserSkillDTO>