Property Deck

Property Deck

  • Authentication
  • Getting Started

›API

Getting Started

  • Introduction
  • Authentication
  • Rate Limiting
  • Concepts

API

  • Attachments
  • Competencies
  • Custom Fields
  • Contacts
  • Properties
  • Notes
  • Reminders
  • Statuses
  • Types

Notes

Notes belongs to a Contact or Property.

Object Definition

FieldTypeDescription
uuidstringUnique identifier for the object
created_atstringISO 8601 datetime when the note was originally created
updated_atstringISO 8601 datetime when the note was last updated
contentstringContent of the note

List all Notes

Retrieve a paginated list of all the accounts Notes. GET /notes.

Filters

You may filter the results from the list endpoint using the following query parameters

FieldTypeDescription
contactRelational FilterFilter using contact attributes
propertyRelational FilterFilter using property attributes

Example Response

{
  "data": [
    {
      "uuid": "bed5faf6-3618-4291-942e-64a1e5786343",
      "created_at": "2018-08-02T15:15:55+01:00",
      "updated_at": "2018-08-02T15:15:58+01:00",
      "content": "Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit."
    }
  ],
  "meta": {
    "pagination": {
      "total": 1,
      "count": 1,
      "per_page": 10,
      "current_page": 1,
      "total_pages": 1
    }
  }
}

Get a single Note

Retrieve a single note by it's uuid. GET /notes/:uuid.

Example Response

{
  "data": {
    "uuid": "bed5faf6-3618-4291-942e-64a1e5786343",
    "created_at": "2018-08-02T15:15:55+01:00",
    "updated_at": "2018-08-02T15:15:58+01:00",
    "content": "Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit."
  }
}

Creating a Note

There are two endpoints for creating a note, depending if you want to associate it with a Contact or Property. Perform a POST request to any of the following endpoints, they return a HTTP 201 status code on success.

  • /properties/:uuid/notes
  • /contacts/:uuid/notes

Input

FieldTypeDescription
contentstringContent of the note Required

Updating a Note

You cannot update a note at this time

Deleting a Note

Perform a DELETE request to the /notes/:uuid endpoint. This endpoint will return a HTTP 204 status code on success.

← PropertiesReminders →
  • Object Definition
  • List all Notes
    • Filters
    • Example Response
  • Get a single Note
    • Example Response
  • Creating a Note
  • Updating a Note
  • Deleting a Note
Property Deck
Docs
IntroductionAuthenticationRate LimitingConcepts
API
AttachmentsCompetenciesCustom FieldsContactsProperties
 
NotesRemindersStatusesTypes
Copyright © 2018 Radweb Ltd