Adds a note to a prospect on a project. Notes capture feedback, meeting summaries, or observations with a full audit trail.

Usage Example

POST /api/v1/projects/123/prospects/456/notes
Content-Type: application/json

{
  "content": "Responded positively via email. Interested in secondary office locations."
}
Path Parameters
  • projectId
    Type: string
    required

    Project ID

  • id
    Type: string
    required

    Prospect ID

Body·
required

Note content

Request model for adding a note to a prospect.

  • content
    Type: string
    min length:  
    1
    max length:  
    10000
    required

    The note text. Required, 1-10000 characters.

Responses
  • 201

    Note added successfully

  • application/problem+json
  • application/problem+json
  • application/problem+json
  • application/problem+json
Request Example for post/api/v1/projects/{projectId}/prospects/{id}/notes
curl 'https://app.propstreet.com/api/v1/projects/{projectId}/prospects/{id}/notes' \
  --request POST \
  --header 'Content-Type: application/json' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN' \
  --data '{
  "content": ""
}'
No Body