Skip to content

Get Domain

connectcases_get_domain R Documentation

Returns information about a specific domain if it exists

Description

Returns information about a specific domain if it exists.

Usage

connectcases_get_domain(domainId)

Arguments

domainId

[required] The unique identifier of the Cases domain.

Value

A list with the following syntax:

list(
  createdTime = as.POSIXct(
    "2015-01-01"
  ),
  domainArn = "string",
  domainId = "string",
  domainStatus = "Active"|"CreationInProgress"|"CreationFailed",
  name = "string",
  tags = list(
    "string"
  )
)

Request syntax

svc$get_domain(
  domainId = "string"
)