Zoho Recruit

metadata.profiles.updateOne

Updates an existing Recruit profile by ID. **Scopes:** * ZohoRecruit.settings.profiles.all * ZohoRecruit.settings.profiles.read

Remote zoho/recruit

Remote (network-hosted)

Other tools also called metadata.profiles.updateOne? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "int64",
      "description": "Unique identifier of the note"
    },
    "profiles": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": [
              "string",
              "null"
            ],
            "maxLength": 50,
            "description": "Updated profile name."
          },
          "description": {
            "type": [
              "string",
              "null"
            ],
            "maxLength": 250,
            "description": "Updated profile description."
          },
          "permissions_details": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "id",
                "enabled"
              ],
              "properties": {
                "id": {
                  "type": "string",
                  "format": "int64",
                  "description": "Id of the resource."
                },
                "enabled": {
                  "type": "boolean",
                  "description": "Whether the permission is enabled for the profile."
                }
              },
              "description": "Single permission toggle entry.",
              "additionalProperties": false
            },
            "maxItems": 1000,
            "description": "Permission enablement entries to update for this profile."
          }
        },
        "description": "Profile update payload.",
        "minProperties": 1,
        "additionalProperties": false
      },
      "maxItems": 1,
      "description": "Profiles to update."
    }
  }
}