Delete a Person v2

Core Resources
Persons
Delete a Person

Delete a Person associated with an Account.

Learn more about calling API v2 endpoints.

Parameters

  • account_idstringRequired

    The Account the Person is associated with.

  • idstringRequired

    The ID of the Person to delete.

Returns

Response attributes

  • idstring

    Person deleted.

  • objectstring

    String representing the object’s type. Objects of the same type share the same value.

  • deletedboolean

    Always true for a deleted object.

Error Codes
400account_not_yet_compatible_with_v2

Account is not yet compatible with V2 APIs.

400accounts_v2_access_blocked

Accounts v2 is not enabled for your platform.

400v1_account_instead_of_v2_account

V1 Account ID cannot be used in V2 Account APIs.

400v1_customer_instead_of_v2_account

V1 Customer ID cannot be used in V2 Account APIs.

404not_found

The resource wasn’t found.

DELETE /v2/core/accounts/:id/persons/:id
curl -X DELETE https://api.stripe.com/v2/core/accounts/acct_1Nv0FGQ9RKHgCVdK/persons/person_test_61RS0CgWt1xBt8M1Q16RS0Cg0WSQO5ZXUVpZxZ9tAIbY \
-H "Authorization: Bearer sk_test_BQokikJ...2HlWgH4olfQ2sk_test_BQokikJOvBiI2HlWgH4olfQ2" \
-H "Stripe-Version: 2025-11-17.preview"
Response
{
"id": "person_test_61RS0CgWt1xBt8M1Q16RS0Cg0WSQO5ZXUVpZxZ9tAIbY",
"object": "v2.core.account_person",
"deleted": true
}