Add a record comment | Parallel Developer Documentation
Version: Current – v2.x
On this page
This endpoint creates a new record comment for a given record.
HTTP Request
POST https://api.parallelmarkets.com/v2/partner-records/{id}/comments
{id}- The individual or business ID in your case management account. If an external_id has been set, theexternal_idvalue can be used instead.
Request Parameters
| Parameter | Description |
|---|---|
text (string) |
Required The text of the comment. |
Sample payload
{
"text": "This is a comment added via the API."
}
Response Parameters
Returns a Record Comment after successful status creation.
Example Response
{
"data": {
"text": "This is a comment added via the API.",
"source": "api",
"created_at": "2025-01-27T18:13:13Z",
"created_by": null
}
}