Skip to content

Create Product Page

apigatewayv2_create_product_page R Documentation

Creates a new product page for a portal product

Description

Creates a new product page for a portal product.

Usage

apigatewayv2_create_product_page(DisplayContent, PortalProductId)

Arguments

DisplayContent

[required] The content of the product page.

PortalProductId

[required] The portal product identifier.

Value

A list with the following syntax:

list(
  DisplayContent = list(
    Body = "string",
    Title = "string"
  ),
  LastModified = as.POSIXct(
    "2015-01-01"
  ),
  ProductPageArn = "string",
  ProductPageId = "string"
)

Request syntax

svc$create_product_page(
  DisplayContent = list(
    Body = "string",
    Title = "string"
  ),
  PortalProductId = "string"
)