POST api/InspectionItems/{id}/Notes

Creates a new note for the given inspection item. Note: Requires a valid access token to be provided in the request's auth header.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Id of inspection item.

string

Required

Body Parameters

Note to insert.

CrmNote
NameDescriptionTypeAdditional 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

Sample:
{
  "Name": "sample string 1",
  "Content": "sample string 2",
  "CreatedBy": "sample string 3",
  "CreatedOn": "2025-05-23T16:29:38.3762007-05:00",
  "Reference": {
    "Id": "e48d54b7-07be-4cf8-893a-b01701fbb422",
    "LogicalName": "sample string 2",
    "Name": "sample string 3"
  },
  "SystemDate": "2025-05-23T16:29:38.3762007-05:00",
  "CapturedDate": "2025-05-23T16:29:38.3762007-05:00"
}

Response Information

Resource Description

Returns note inserted.

CrmNote
NameDescriptionTypeAdditional 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

Sample:
{
  "Name": "sample string 1",
  "Content": "sample string 2",
  "CreatedBy": "sample string 3",
  "CreatedOn": "2025-05-23T16:29:38.3762007-05:00",
  "Reference": {
    "Id": "356494ad-14f4-4ee4-b71a-be2a5fd36791",
    "LogicalName": "sample string 2",
    "Name": "sample string 3"
  },
  "SystemDate": "2025-05-23T16:29:38.3762007-05:00",
  "CapturedDate": "2025-05-23T16:29:38.3762007-05:00"
}