Skip to content
This repository has been archived by the owner on Aug 18, 2023. It is now read-only.

Commit

Permalink
Merge pull request #70 from klaviyo/202108_update_docs
Browse files Browse the repository at this point in the history
Update docs for data privacy endpoint
  • Loading branch information
smoucka committed Aug 19, 2021
2 parents b2157a8 + 8485fff commit b85a3bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,13 +157,13 @@ $client->profiles->getProfileIdByEmail('someone@mailinator.com');
### You can request a privacy-compliant profile deletion given an identifying property
```php
#Request profile deletion by email
$client->dataprivacy->requestProfileDeletion('someone@mailinator.com');
$client->dataPrivacy->requestProfileDeletion('someone@mailinator.com');

#Request profile deletion by phone number
$client->dataprivacy->requestProfileDeletion('1-234-567-8910', 'phone_number');
$client->dataPrivacy->requestProfileDeletion('1-234-567-8910', 'phone_number');

#Request profile deletion by person ID
$client->dataprivacy->requestProfileDeletion('abc123', 'person_id');
$client->dataPrivacy->requestProfileDeletion('abc123', 'person_id');
```

## Exceptions
Expand Down

0 comments on commit b85a3bf

Please sign in to comment.