Skip to content

Delete Payment Connector

bedrockagentcorecontrol_delete_payment_connector R Documentation

Deletes a payment connector

Description

Deletes a payment connector.

Usage

bedrockagentcorecontrol_delete_payment_connector(paymentManagerId,
  paymentConnectorId, clientToken)

Arguments

paymentManagerId

[required] The unique identifier of the parent payment manager.

paymentConnectorId

[required] The unique identifier of the payment connector to delete.

clientToken

A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If you don't specify this field, a value is randomly generated for you. If this token matches a previous request, the service ignores the request, but doesn't return an error. For more information, see Ensuring idempotency.

Value

A list with the following syntax:

list(
  status = "CREATING"|"UPDATING"|"DELETING"|"READY"|"CREATE_FAILED"|"UPDATE_FAILED"|"DELETE_FAILED",
  paymentConnectorId = "string"
)

Request syntax

svc$delete_payment_connector(
  paymentManagerId = "string",
  paymentConnectorId = "string",
  clientToken = "string"
)