Skip to main content

Lists skills

GET 

/api/skills

Lists all skills the user has access to via OData

Request

Query Parameters

    $select string

    Returns only the selected properties. (ex. FirstName, LastName, City)

    $expand string

    Include only the selected objects. (ex. Childrens, Locations)

    $filter string

    Filter the response with OData filter queries.

    $top string

    Number of objects to return. (ex. 25)

    $skip string

    Number of objects to skip in the current order (ex. 50)

    $orderby string

    Define the order by one or more fields (ex. LastModified)

Responses

Success

Schema
    count int64

    Total items in server

    items object[]nullable

    Items retrieved

  • Array [
  • id uuid

    Skill id (GUID)

    title stringnullable

    Title of the skill

    description objectnullable

    Brief description of the skill in different languages.

    property name* string
    jobReference stringnullable

    Internal field to track jobs associated to this skill

    accessMode SkillAccessMode

    Possible values: [Everyone, MembersOnly]

    type SkillType

    Possible values: [Dialog, Search]

    status SkillStatus

    Possible values: [Draft, Published, Retired]

    trainingStatus SkillTrainingStatus

    Possible values: [Pending, Training, Trained, Error]

    currentSnapshotDateTime date-timenullable

    Date and time of the current skill snapshot.

    tags object[]nullable

    List of tags

  • Array [
  • key stringnullable
    value nullable
  • ]
  • ]
  • continuationToken stringnullable

    A continuation token

Loading...