Skip to content

Create Resource

workmail_create_resource R Documentation

Creates a new WorkMail resource

Description

Creates a new WorkMail resource.

Usage

workmail_create_resource(OrganizationId, Name, Type, Description,
  HiddenFromGlobalAddressList)

Arguments

OrganizationId

[required] The identifier associated with the organization for which the resource is created.

Name

[required] The name of the new resource.

Type

[required] The type of the new resource. The available types are equipment and room.

Description

Resource description.

HiddenFromGlobalAddressList

If this parameter is enabled, the resource will be hidden from the address book.

Value

A list with the following syntax:

list(
  ResourceId = "string"
)

Request syntax

svc$create_resource(
  OrganizationId = "string",
  Name = "string",
  Type = "ROOM"|"EQUIPMENT",
  Description = "string",
  HiddenFromGlobalAddressList = TRUE|FALSE
)