Skip to main content
PUT
/
v1
/
ui
/
connected-accounts
/
{providerId}
Update a connected Stripe account
curl --request PUT \
  --url https://api.example.com/v1/ui/connected-accounts/{providerId} \
  --header 'Content-Type: application/json' \
  --data '
{
  "externalAccount": {
    "country": "<string>",
    "currency": "<string>",
    "accountHolderName": "<string>",
    "accountHolderType": "individual",
    "routingNumber": "<string>",
    "accountNumber": "<string>"
  },
  "tosAcceptance": {
    "ip": "<string>"
  },
  "website": "<string>"
}
'

Path Parameters

providerId
string
required

The provider ID

Body

application/json
externalAccount
object
required
tosAcceptance
object
required
website
string

Response

Connected account updated successfully