delete_payment_connector¶
Operation¶
delete_payment_connector
async
¶
delete_payment_connector(input: DeletePaymentConnectorInput, plugins: list[Plugin] | None = None) -> DeletePaymentConnectorOutput
Deletes a payment connector.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input
|
DeletePaymentConnectorInput
|
An instance of |
required |
plugins
|
list[Plugin] | None
|
A list of callables that modify the configuration dynamically. Changes made by these plugins only apply for the duration of the operation execution and will not affect any other operation invocations. |
None
|
Returns:
| Type | Description |
|---|---|
DeletePaymentConnectorOutput
|
An instance of |
Input¶
DeletePaymentConnectorInput
dataclass
¶
Dataclass for DeletePaymentConnectorInput structure.
Attributes¶
client_token
class-attribute
instance-attribute
¶
client_token: str | None = None
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.
payment_connector_id
class-attribute
instance-attribute
¶
payment_connector_id: str | None = None
The unique identifier of the payment connector to delete.
payment_manager_id
class-attribute
instance-attribute
¶
payment_manager_id: str | None = None
The unique identifier of the parent payment manager.
Output¶
DeletePaymentConnectorOutput
dataclass
¶
Dataclass for DeletePaymentConnectorOutput structure.
Attributes¶
payment_connector_id
class-attribute
instance-attribute
¶
payment_connector_id: str | None = None
The unique identifier of the deleted payment connector.
status
instance-attribute
¶
status: PaymentConnectorStatus
The current status of the payment connector, set to DELETING when
deletion is initiated. Possible values include CREATING, READY,
UPDATING, DELETING, CREATE_FAILED, UPDATE_FAILED, and
DELETE_FAILED.