Retrieves the skill with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

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": "bd8c99e5-cacf-4e9d-b342-7536e0c54113",
  "name": "sample string 2",
  "sales_organization_id": "3be999c6-2b6c-4a09-aeb2-752839835894",
  "modified_dateutc": "2026-01-11T21:03:30.500007+00:00"
}

application/xml, text/xml

Sample:
<skill xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <id>bd8c99e5-cacf-4e9d-b342-7536e0c54113</id>
  <modified_dateutc>2026-01-11T21:03:30.500Z</modified_dateutc>
  <name>sample string 2</name>
  <sales_organization_id>3be999c6-2b6c-4a09-aeb2-752839835894</sales_organization_id>
</skill>