Skip to content

List Payment Connectors

bedrockagentcorecontrol_list_payment_connectors R Documentation

Lists all payment connectors for a specified payment manager

Description

Lists all payment connectors for a specified payment manager.

Usage

bedrockagentcorecontrol_list_payment_connectors(paymentManagerId,
  maxResults, nextToken)

Arguments

paymentManagerId

[required] The unique identifier of the payment manager whose connectors to list.

maxResults

The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the nextToken field when making another request to return the next batch of results.

nextToken

If the total number of results is greater than the maxResults value provided in the request, enter the token returned in the nextToken field in the response in this field to return the next batch of results.

Value

A list with the following syntax:

list(
  paymentConnectors = list(
    list(
      paymentConnectorId = "string",
      name = "string",
      type = "CoinbaseCDP"|"StripePrivy",
      status = "CREATING"|"UPDATING"|"DELETING"|"READY"|"CREATE_FAILED"|"UPDATE_FAILED"|"DELETE_FAILED",
      lastUpdatedAt = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_payment_connectors(
  paymentManagerId = "string",
  maxResults = 123,
  nextToken = "string"
)