External Account Cards ​
External account cards are debit cards associated with a Stripe platform’s connected accounts for the purpose of transferring funds to or from the connected accounts Stripe balance.
Endpoints ​
Create a card ​
- POST /v1/accounts/:id/external_accounts
Update a card ​
- POST /v1/accounts/:id/external_accounts/:id
Retrieve a card ​
- GET /v1/accounts/:id/external_accounts/:id
List all cards ​
- GET /v1/accounts/:id/external_accounts
Delete a card ​
- DELETE /v1/accounts/:id/external_accounts/:id
Events ​
account.external_account.createdOccurs whenever an external account is created.account.external_account.deletedOccurs whenever an external account is deleted.account.external_account.updatedOccurs whenever an external account is updated.customer.source.createdOccurs whenever a new source is created for a customer.customer.source.deletedOccurs whenever a source is removed from a customer.customer.source.expiringOccurs whenever a card or source will expire at the end of the month. This event only works with legacy integrations using Card or Source objects. If you use the PaymentMethod API, this event won’t occur.customer.source.updatedOccurs whenever a source’s details are changed.