We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8ee404c + d308316 commit d6e976cCopy full SHA for d6e976c
README.md
@@ -242,12 +242,12 @@ $intercom->createNote(array(
242
)
243
));
244
// Iterate over all notes for a user via their email address
245
-$notes = $intercom->getNotes(array("email" => "[email protected]"));
+$notes = $intercom->getNotesForUser(array("email" => "[email protected]"));
246
foreach($notes["notes"] as $note) {
247
echo $note["body"] . PHP_EOL;
248
}
249
// Iterate over all notes for a user via their user_id
250
-$notes = $intercom->getNotes(array("user_id" => "123"));
+$notes = $intercom->getNotesForUser(array("user_id" => "123"));
251
252
253
0 commit comments