Stripe | Financial Infrastructure to Grow Your Revenue

Stripe | Financial Infrastructure to Grow Your Revenue

5282 articles

List all persons


List all persons

GET / v1 / accounts /:id / persons

Returns a list of people associated with the account’s legal entity. The people are returned sorted by creation date, with the most recent people appearing first.

Parameters

  • relationship object Filters on the list of people returned based on the person’s relationship to the account’s company.

More parameters

  • ending _ before string
  • limit integer
  • starting _ after string

Returns

A dictionary with a data property that contains an array of up to limit people, starting after person starting_after. Each entry in the array is a separate person object. If no more people are available, the resulting array will be empty.

Response

Delete a person

DELETE / v1 / accounts /:id / persons /:id

Deletes an existing person’s relationship to the account’s legal entity. Any person with a relationship for an account can be deleted through the API, except if the person is the representative. If your integration is using the executive parameter, you cannot delete the only verified executive on file.

Parameters

No parameters.

Returns

Returns the deleted person object.

Response

{ "id": "person_1MqjB62eZvKYlo2CaeEJzKVR", "object": "person", "deleted": true}
Last verified 2026-09-24

Is this helpful?