POST api/crmconnect/property/salesprogressionnotes

Get all the sales progression notes for a property as a list Processes this crm connect API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

None.

Body Parameters

A value usable to identify the item in the crm, this key is generated by the selected domain service

Object

None.

Request Formats

application/x-www-form-urlencoded

Sample:

Sample not available.

application/json, text/json

Sample:
{}

Response Information

Resource Description

The response returned after the operation completes.

Collection of AddProgressionNoteCommandDataContract
NameDescriptionTypeAdditional information
RoleId

The unique identifier of the related role resource.

integer

None.

DateTime

The date time, expressed as a date and time.

date

None.

NegotiatorIds

The unique identifiers of the related negotiator resources.

Collection of integer

None.

Title

The title value.

string

None.

Note

The note value.

string

None.

Pinned

Indicates whether pinned is true.

boolean

None.

Related

The related value.

AddProgressionNoteRelatedCommandDataContract

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "RoleId": 1,
    "DateTime": "2026-07-23T03:53:02.6237251Z",
    "NegotiatorIds": [
      1,
      2
    ],
    "Title": "sample string 2",
    "Note": "sample string 3",
    "Pinned": true,
    "Related": {
      "RelatedType": 0,
      "RelatedId": 1
    }
  },
  {
    "RoleId": 1,
    "DateTime": "2026-07-23T03:53:02.6237251Z",
    "NegotiatorIds": [
      1,
      2
    ],
    "Title": "sample string 2",
    "Note": "sample string 3",
    "Pinned": true,
    "Related": {
      "RelatedType": 0,
      "RelatedId": 1
    }
  }
]