Retrieves all skills

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

skill
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
name

Name of the skill

string

Required

Max length: 255

sales_organization_id

FK of sales_organization. Filled if specific of one SO, empty if can be used by all

globally unique identifier
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "54e817e4-00b0-4a57-836c-e96f645decbc",
  "name": "sample string 2",
  "sales_organization_id": "8c957af6-b983-4434-b1b0-50ac4027051e",
  "modified_dateutc": "2026-03-07T14:50:45.647083+00:00"
}

application/xml, text/xml

Sample:
<skill xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <id>54e817e4-00b0-4a57-836c-e96f645decbc</id>
  <modified_dateutc>2026-03-07T14:50:45.647Z</modified_dateutc>
  <name>sample string 2</name>
  <sales_organization_id>8c957af6-b983-4434-b1b0-50ac4027051e</sales_organization_id>
</skill>