Skip to content

List Integrations

customerprofiles_list_integrations R Documentation

Lists all of the integrations in your domain

Description

Lists all of the integrations in your domain.

Usage

customerprofiles_list_integrations(DomainName, NextToken, MaxResults,
  IncludeHidden)

Arguments

DomainName

[required] The unique name of the domain.

NextToken

The pagination token from the previous ListIntegrations API call.

MaxResults

The maximum number of objects returned per page.

IncludeHidden

Boolean to indicate if hidden integration should be returned. Defaults to False.

Value

A list with the following syntax:

list(
  Items = list(
    list(
      DomainName = "string",
      Uri = "string",
      ObjectTypeName = "string",
      CreatedAt = as.POSIXct(
        "2015-01-01"
      ),
      LastUpdatedAt = as.POSIXct(
        "2015-01-01"
      ),
      Tags = list(
        "string"
      ),
      ObjectTypeNames = list(
        "string"
      ),
      WorkflowId = "string",
      IsUnstructured = TRUE|FALSE
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_integrations(
  DomainName = "string",
  NextToken = "string",
  MaxResults = 123,
  IncludeHidden = TRUE|FALSE
)