Retrieves all skills, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of skills.
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": "26d4f3ff-7328-409e-bd30-27d633c98962",
"name": "sample string 2",
"sales_organization_id": "6250f842-680a-4ad7-b463-320e4f97ce3d",
"modified_dateutc": "2026-09-16T08:34:48.6774664+00:00"
}
application/xml, text/xml
Sample:
<skill xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>26d4f3ff-7328-409e-bd30-27d633c98962</id> <modified_dateutc>2026-09-16T08:34:48.677Z</modified_dateutc> <name>sample string 2</name> <sales_organization_id>6250f842-680a-4ad7-b463-320e4f97ce3d</sales_organization_id> </skill>