POST api/SaveTaskTrackingNotes

Request Information

URI Parameters

None.

Body Parameters

TaskTrackingNotesModel
Name Description Type Additional information
TASK_TRACKING_NOTE_ID

integer

None.

STR_TASK_TRACKING_NOTE_ID

string

None.

CLIENT_ID

integer

None.

NOTES_DATE

date

None.

StrNOTES_DATE

string

None.

TITLE

string

None.

NOTES

string

None.

CREATED_BY

integer

None.

CREATED_ON

date

None.

UPDATED_BY

integer

None.

UPDATED_ON

date

None.

Request Formats

application/json, text/json

Sample:
{
  "TASK_TRACKING_NOTE_ID": 1,
  "STR_TASK_TRACKING_NOTE_ID": "sample string 2",
  "CLIENT_ID": 3,
  "NOTES_DATE": "2025-06-23T11:44:21.5328314+00:00",
  "StrNOTES_DATE": "sample string 5",
  "TITLE": "sample string 6",
  "NOTES": "sample string 7",
  "CREATED_BY": 8,
  "CREATED_ON": "2025-06-23T11:44:21.5328314+00:00",
  "UPDATED_BY": 1,
  "UPDATED_ON": "2025-06-23T11:44:21.5328314+00:00"
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BaseApiResponse
Name Description Type Additional information
Success

boolean

None.

Message

Collection of string

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Message": [
    "sample string 1",
    "sample string 2"
  ]
}