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
- Type: stringproject
Id requiredProject ID
- Type: stringidrequired
Prospect ID
Body·
required
Note content
Request model for adding a note to a prospect.
- Type: stringcontentmin length:1max length:10000required
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