Zoho Recruit

metadata.customViews.changeSort

Change the sort order of a custom view

Remote zoho/recruit

Remote (network-hosted)

Other tools also called metadata.customViews.changeSort? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "module": {
      "type": "string",
      "maxLength": 100,
      "description": "Specifies the module name"
    },
    "custom_views": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "sort_by",
          "sort_order"
        ],
        "properties": {
          "id": {
            "type": "string",
            "maxLength": 25,
            "description": "ID of the custom view to update"
          },
          "sort_by": {
            "type": "object",
            "properties": {
              "id": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "field id"
              },
              "api_name": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "API name of the field"
              }
            },
            "description": "field of customview",
            "additionalProperties": false
          },
          "sort_order": {
            "enum": [
              "asc",
              "desc"
            ],
            "type": "string",
            "description": "Order of sorting"
          }
        },
        "description": "Custom view sort order details",
        "additionalProperties": false
      },
      "maxItems": 200,
      "description": "List of custom views to update sort order"
    }
  }
}