Name |
Type |
Description |
Notes |
id |
String |
Unique note Id |
[optional] |
text |
String |
Text content of a note |
|
contact_ids |
Array<Integer> |
Contact ids linked to a note |
[optional] |
deal_ids |
Array<String> |
Deal ids linked to a note |
[optional] |
author_id |
Object |
Account details of user which created the note |
[optional] |
created_at |
Time |
Note created date/time |
[optional] |
updated_at |
Time |
Note updated date/time |
[optional] |
require 'brevo'
instance = Brevo::Note.new(
id: 61a5cd07ca1347c82306ad09,
text: In communication with client for resolution of queries.,
contact_ids: [247,1,2],
deal_ids: ["61a5ce58c5d4795761045990","61a5ce58c5d4795761045991"],
author_id: {"id":"61a5ce58y5d4795761045991","email":"johndoe@example.com","locale":"en_GB","timezone":"Asia/Kolkata","name":{"fullName":"John Doe"}},
created_at: 2017-05-01T17:05:03Z,
updated_at: 2017-05-01T17:05:03Z
)