Zoho Recruit

metadata.profiles.clone

Creates a clone of the specified profile. **Scopes:** * ZohoRecruit.settings.profiles.all * ZohoRecruit.settings.profiles.read

Remote zoho/recruit

Remote (network-hosted)

Other tools also called metadata.profiles.clone? 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",
        "required": [
          "name"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 50,
            "description": "Name for the new profile."
          },
          "description": {
            "type": [
              "string",
              "null"
            ],
            "maxLength": 250,
            "description": "Optional description for the new profile."
          }
        },
        "description": "new profile definition.",
        "additionalProperties": false
      },
      "maxItems": 1,
      "description": "Profile to create from the clone profile."
    }
  }
}