POST api/Areas/{id}/notes
Inserts the given note to CRM. Note: Requires a valid access token to be provided in the request's auth header.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Id of area. |
string |
Required |
Body Parameters
Note to insert.
CrmNote| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
Name (subject) of the note. |
string |
Required |
| Content |
Content of the note. |
string |
Required |
| CreatedBy |
Author of the note. |
string |
Optional |
| CreatedOn |
Date and time the note was created. |
date |
Optional |
| Reference |
Used to reference the entity in CRM. |
EntityReference |
Optional |
| SystemDate |
Current system date of the client that created this object. |
date |
Optional |
| CapturedDate |
Date and time the client created this object. |
date |
Optional |
Request Formats
application/json, text/json
{
"Name": "sample string 1",
"Content": "sample string 2",
"CreatedBy": "sample string 3",
"CreatedOn": "2026-02-03T18:59:13.1635881-06:00",
"Reference": {
"Id": "8bbf0031-73f5-4511-a1c6-ac750687fcde",
"LogicalName": "sample string 2",
"Name": "sample string 3"
},
"SystemDate": "2026-02-03T18:59:13.1635881-06:00",
"CapturedDate": "2026-02-03T18:59:13.1635881-06:00"
}
Response Information
Resource Description
Returns note inserted.
CrmNote| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
Name (subject) of the note. |
string |
Required |
| Content |
Content of the note. |
string |
Required |
| CreatedBy |
Author of the note. |
string |
Optional |
| CreatedOn |
Date and time the note was created. |
date |
Optional |
| Reference |
Used to reference the entity in CRM. |
EntityReference |
Optional |
| SystemDate |
Current system date of the client that created this object. |
date |
Optional |
| CapturedDate |
Date and time the client created this object. |
date |
Optional |
Response Formats
application/json, text/json
{
"Name": "sample string 1",
"Content": "sample string 2",
"CreatedBy": "sample string 3",
"CreatedOn": "2026-02-03T18:59:13.1635881-06:00",
"Reference": {
"Id": "103f5b87-4ce4-4d86-9e12-5658b8ffc5ad",
"LogicalName": "sample string 2",
"Name": "sample string 3"
},
"SystemDate": "2026-02-03T18:59:13.1635881-06:00",
"CapturedDate": "2026-02-03T18:59:13.1635881-06:00"
}