Zoho Recruit
metadata.roles.create
Create one or more new Recruit roles in the organization
Remote zoho/recruit
Remote (network-hosted)
Other tools also called metadata.roles.create?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"roles": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"reporting_to"
],
"properties": {
"name": {
"type": "string",
"maxLength": 200,
"description": "Display name of the role"
},
"description": {
"type": [
"string",
"null"
],
"maxLength": 250,
"description": "Detailed description of the role"
},
"reporting_to": {
"type": "object",
"properties": {
"id": {
"type": [
"string",
"null"
],
"maxLength": 19,
"description": "Unique identifier of the parent role"
}
},
"description": "Parent role information",
"additionalProperties": false
},
"share_with_peers": {
"type": [
"boolean",
"null"
],
"description": "Whether this role can share data with peer roles"
}
},
"description": "Role object to create",
"additionalProperties": false
},
"maxItems": 100,
"description": "Array of role objects to create"
}
}
}