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 #68 from klaviyo/2021_08_adding_post_to_readme
Browse files Browse the repository at this point in the history
added post to readme
  • Loading branch information
ogsmith authored Aug 17, 2021
2 parents 5da11b6 + 184c46d commit b2157a8
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 @@ -39,7 +39,7 @@ $event = new KlaviyoEvent(
)
);

$client->publicAPI->track( $event );
$client->publicAPI->track( $event, true );
```
### You can also add profile properties to the 'customer properties' attribute in the Event model
```php
Expand All @@ -59,7 +59,7 @@ $event = new KlaviyoEvent(
)
);

$client->publicAPI->track( $event );
$client->publicAPI->track( $event, true );
```

### or just add a property to someone
Expand All @@ -75,7 +75,7 @@ $profile = new KlaviyoProfile(
)
);

$client->publicAPI->identify( $profile );
$client->publicAPI->identify( $profile, true );
```

### You can get metrics, a timeline of events and export analytics for a metric. See here for more https://www.klaviyo.com/docs/api/metrics
Expand Down

0 comments on commit b2157a8

Please sign in to comment.