Listing property notes
In order to list the notes for a property, you'll need to use the PropertyNotes.GetPropertyNotesAsync method on the API client:
var notes = await client.PropertyNotes.GetPropertyNotesAsync(12345);
The above example will return the notes for the property with ID 12345.
If the property doesn't exist, or you don't have access to it, a null value will be returned.
The response will be a readonly list of PropertyNoteDetails, and will contain the following properties:
Id
- Type:
int - Description: Gets or sets the ID of the property note.
- Type:
PropertyId
- Type:
int - Description: Gets or sets the ID of the property associated with the note.
- Type:
Type
- Type:
string - Description: Gets or sets the type of the note.
- Type:
Note
- Type:
string? - Description: Gets or sets the content of the note.
- Type:
CreatedOn
- Type:
DateTimeOffset - Description: Gets or sets the date and time when the note was created.
- Type:
CreatedBy
- Type:
string - Description: Gets or sets the name of the user who created the note.
- Type:
ShowNoteToVendor
- Type:
bool - Description: Gets or sets a value indicating whether the note should be shown to the vendor.
- Type:
ShowNoteToApplicant
- Type:
bool - Description: Gets or sets a value indicating whether the note should be shown to the applicant.
- Type: