Skill APIs
Skills refer to the professional abilities and competencies that the field agents and crews possess to perform their job duties effectively. When a work order is created, the skills required to accomplish the work order are added.
List Skills
Purpose
To fetch the list of all available skills. The records fetched will be sorted by Created Time in descending order (recent ones first).
Request URL
https://fsm.zoho.com/fsm/v1/Skills
Request Method
GET
Scope
scope=ZohoFSM.modules.Skills.READ
Query Parameters
Parameter Name | Data Type | Description | Possible Values |
page (optional) | Integer | The page from which you want to fetch the records. The default value is 1. | Positive Integer values only |
per_page (optional) | Integer | The number of records you want to fetch in a page. The default value is 200. | Positive Integer values only |
Sample Request
Copiedcurl --request GET 'https://fsm.zoho.com/fsm/v1/Skills' \
--header 'Authorization: Zoho-oauthtoken 1000.3xxxxxxxxx.xxxxxxxxxxxxx0e'
Sample Response
Copied{
"data": [
{
"Owner": {
"name": "Mary Cooper",
"id": "1439000000161001",
"email": "mary.cooper@noemail.com"
},
"Modified_Time": "2024-08-22T17:17:49+05:30",
"Description": "All type of system & laptop",
"$currency_symbol": "$",
"Created_Time": "2023-09-19T11:36:20+05:30",
"$editable": true,
"isActive": true,
"$permissions": {
"read": true,
"edit": true,
"delete": true
},
"Name": "Dry AC Service",
"Modified_By": {
"name": "Mary Cooper",
"id": "1439000000161001",
"email": "mary.cooper@noemail.com"
},
"Exchange_Rate": 1,
"Currency": "USD",
"$inactive": false,
"id": "1439000000695211",
"Created_By": {
"name": "Mary Cooper",
"id": "1439000000161001",
"email": "mary.cooper@noemail.com"
}
},
{
"Owner": {
"name": "Mary Cooper",
"id": "1439000000161001",
"email": "mary.cooper@noemail.com"
},
"Modified_Time": "2024-08-22T17:16:01+05:30",
"Description": null,
"$currency_symbol": "$",
"Created_Time": "2022-08-08T14:34:41+05:30",
"$editable": true,
"isActive": true,
"$permissions": {
"read": true,
"edit": true,
"delete": true
},
"Name": "AC Repair",
"Modified_By": {
"name": "Mary Cooper",
"id": "1439000000161001",
"email": "mary.cooper@noemail.com"
},
"Exchange_Rate": 1,
"Currency": "USD",
"$inactive": false,
"id": "1439000000260224",
"Created_By": {
"name": "Mary Cooper",
"id": "1439000000161001",
"email": "mary.cooper@noemail.com"
}
},
{
"Owner": {
"name": "Mary Cooper",
"id": "1439000000161001",
"email": "mary.cooper@noemail.com"
},
"Modified_Time": "2024-08-22T17:16:41+05:30",
"Description": null,
"$currency_symbol": "$",
"Created_Time": "2022-06-29T10:51:02+05:30",
"$editable": true,
"isActive": true,
"$permissions": {
"read": true,
"edit": true,
"delete": true
},
"Name": "AC Installation",
"Modified_By": {
"name": "Mary Cooper",
"id": "1439000000161001",
"email": "mary.cooper@noemail.com"
},
"Exchange_Rate": 1,
"Currency": "USD",
"$inactive": false,
"id": "1439000000226010",
"Created_By": {
"name": "Mary Cooper",
"id": "1439000000161001",
"email": "mary.cooper@noemail.com"
}
},
{
"Owner": {
"name": "Mary Cooper",
"id": "1439000000161001",
"email": "mary.cooper@noemail.com"
},
"Modified_Time": "2024-08-22T17:18:03+05:30",
"Description": null,
"$currency_symbol": "$",
"Created_Time": "2022-04-28T18:31:22+05:30",
"$editable": true,
"isActive": true,
"$permissions": {
"read": true,
"edit": true,
"delete": true
},
"Name": "Wet AC Service",
"Modified_By": {
"name": "Mary Cooper",
"id": "1439000000161001",
"email": "mary.cooper@noemail.com"
},
"Exchange_Rate": 1,
"Currency": "USD",
"$inactive": false,
"id": "1439000000174290",
"Created_By": {
"name": "Mary Cooper",
"id": "1439000000161001",
"email": "mary.cooper@noemail.com"
}
}
],
"info": {
"per_page": 200,
"count": 4,
"page": 1,
"more_records": false
}
}
Show full
Show less