Auth0 Node.js SDK - v6.4.0
    Preparing search index...

    Interface CreateRoleRequestContent

    {
    * name: "name"
    * }
    interface CreateRoleRequestContent {
        name: string;
        description?: string;
        type?: Management.RoleTypeEnum;
        owner_id?: string;
    }
    Index
    name: string

    Name of the role.

    description?: string

    Description of the role.

    The type of the role. Defaults to tenant.

    owner_id?: string

    The ID of the organization that owns this role. Required when type is "organization".