Delete Skill of a User

Purpose

To delete a skill assigned to a user.

Request URL

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

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

skill_id - The ID of the skill.

Request Method

DELETE

Scope

scope=ZohoFSM.users.DELETE

Sample Request

Copiedcurl --location --request DELETE 'https://fsm.zoho.com/fsm/v1/users/1003XXXX7012/Skills/1003XXXX7013' \
--header 'Authorization: Zoho-oauthtoken 1000.b3xxxxxx.xxxxxxxx3'

Sample Response

Copied{
    "data": [
        {
            "code": "SUCCESS",
            "details": {
                "id": "1003000004333030"
            },
            "message": "record deleted",
            "status": "success"
        }
    ]
}