Skip to content

Describe Notification Subscriptions

workdocs_describe_notification_subscriptions R Documentation

Lists the specified notification subscriptions

Description

Lists the specified notification subscriptions.

Usage

workdocs_describe_notification_subscriptions(OrganizationId, Marker,
  Limit)

Arguments

OrganizationId

[required] The ID of the organization.

Marker

The marker for the next set of results. (You received this marker from a previous call.)

Limit

The maximum number of items to return with this call.

Value

A list with the following syntax:

list(
  Subscriptions = list(
    list(
      SubscriptionId = "string",
      EndPoint = "string",
      Protocol = "HTTPS"|"SQS"
    )
  ),
  Marker = "string"
)

Request syntax

svc$describe_notification_subscriptions(
  OrganizationId = "string",
  Marker = "string",
  Limit = 123
)