Skip to main content
POST
/
api
/
payments
/
v3
/
connectors
/
{connectorID}
/
reset
Reset a connector. Be aware that this will delete all data and stop all existing tasks like payment initiations and bank account creations.
curl --request POST \
  --url http://localhost/api/payments/v3/connectors/{connectorID}/reset \
  --header 'Authorization: Bearer <token>'
{
  "data": "<string>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

connectorID
string
required

The connector ID

Response

Accepted

data
string
required

Since this call is asynchronous, the response will contain the ID of the task that was created to reset the connector. You can use the task API to check the status of the task and get the results.

I