Retrieves the skill with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The skill id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the skill, or 404 Not Found if it doesn't exist.

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": "c78fa632-4a00-40b2-b2cf-2ad04240eac7",
  "name": "sample string 2",
  "sales_organization_id": "85ca8463-4a0e-4502-bbcc-3426ce08b283",
  "modified_dateutc": "2026-09-16T11:04:27.9659965+00:00"
}

application/xml, text/xml

Sample:
<skill xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <id>c78fa632-4a00-40b2-b2cf-2ad04240eac7</id>
  <modified_dateutc>2026-09-16T11:04:27.965Z</modified_dateutc>
  <name>sample string 2</name>
  <sales_organization_id>85ca8463-4a0e-4502-bbcc-3426ce08b283</sales_organization_id>
</skill>