Get Payment Connector
| bedrockagentcorecontrol_get_payment_connector | R Documentation |
Retrieves information about a specific payment connector¶
Description¶
Retrieves information about a specific payment connector.
Usage¶
bedrockagentcorecontrol_get_payment_connector(paymentManagerId,
paymentConnectorId)
Arguments¶
paymentManagerId |
[required] The unique identifier of the parent payment manager. |
paymentConnectorId |
[required] The unique identifier of the payment connector to retrieve. |
Value¶
A list with the following syntax:
list(
paymentConnectorId = "string",
name = "string",
description = "string",
type = "CoinbaseCDP"|"StripePrivy",
credentialProviderConfigurations = list(
list(
coinbaseCDP = list(
credentialProviderArn = "string"
),
stripePrivy = list(
credentialProviderArn = "string"
)
)
),
createdAt = as.POSIXct(
"2015-01-01"
),
lastUpdatedAt = as.POSIXct(
"2015-01-01"
),
status = "CREATING"|"UPDATING"|"DELETING"|"READY"|"CREATE_FAILED"|"UPDATE_FAILED"|"DELETE_FAILED"
)
Request syntax¶
svc$get_payment_connector(
paymentManagerId = "string",
paymentConnectorId = "string"
)