Retrieves the skill with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
skill| Name | Description | Type | Additional 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": "bb9791d4-d650-4306-bc64-84e2fda334b7",
"name": "sample string 2",
"sales_organization_id": "c1ad7041-7726-4414-85a6-68f674240399",
"modified_dateutc": "2026-03-07T14:53:13.7195276+00:00"
}
application/xml, text/xml
Sample:
<skill xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>bb9791d4-d650-4306-bc64-84e2fda334b7</id> <modified_dateutc>2026-03-07T14:53:13.719Z</modified_dateutc> <name>sample string 2</name> <sales_organization_id>c1ad7041-7726-4414-85a6-68f674240399</sales_organization_id> </skill>