Delete External Contact
Deletes/unlinks a contact, identified by the composite key (type, id) (same pattern as banking/accounts/{rail_type}/{id}/): the auto-incrementing IDs of the crypto/bank store and of the rp_tag store collide with each other, so type is required to disambiguate and is authoritative for resolving the entity. type=crypto/type=bank unlinks (soft delete) the contact from the account; type=rp_tag deletes the P2P contact. Returns 404 if the id does not exist within the store selected by type, including when the id exists but belongs to a different type (no existence leak across types).
Requires the contacts_write permission. The account must be fully operative.
Authorization
- Requires a valid API key.
Headers
The API key as a string.
See the Generating Signature section for more details.
A timestamp in milliseconds. See the Timestamp Security section for more details.
An additional, non-required parameter, that you can send to specify the number of milliseconds after the timestamp for the request to be valid. See the Timestamp Security section for more details.
Path Parameters
Contact type discriminator. Required to disambiguate colliding IDs across the crypto/bank and rp_tag stores.
"crypto"
ID of the contact/entity to delete, within the store selected by type.
42