Update Skill of a User

Purpose

To update the skill assigned to a user.

Request URL

https://fsm.zoho.com/fsm/v1/users/<user_id>/Skills

user_id - The ID (the value of User in the Service_Resources key present in the List Users API response) of the user.

Request Method

PUT

Scope

scope=ZohoFSM.users.UPDATE

Input JSON Keys

NameDescriptionType

id

(mandatory)

The ID of the skill entry you want to update. Refer to this API doc to get this ID.String

Sample Request

Copiedcurl --request PUT 'https://fsm.zoho.com/fsm/v1/users/6191XXXX7001/Skills' \
--header 'Authorization: Zoho-oauthtoken 1000.26xxxxxxxxxx.xxxxxxxxxx0' \
--header 'content-type: application/json' \
--data "{"field1":"value1","field2":"value2"}"

Sample Input

Copied{
    "data": [
        {
            "Rating": 30,
            "id": "1003000004333042"
        }
    ]
}

Sample Response

Copied{
    "data": [
        {
            "code": "SUCCESS",
            "details": {
                "Modified_Time": "2026-04-13T18:07:59+05:30",
                "Modified_By": {
                    "name": "Marianne Sheehan",
                    "id": "1003000000208001"
                },
                "Created_Time": "2026-04-13T15:18:36+05:30",
                "id": "1003000004333042",
                "Created_By": {
                    "name": "Marianne Sheehan",
                    "id": "1003000000208001"
                }
            },
            "message": "record updated",
            "status": "success"
        }
    ]
}