POST api/task-actions/save

Request Information

URI Parameters

None.

Body Parameters

TaskActionSaveRequest
NameDescriptionTypeAdditional information
TaskActionID

integer

None.

TaskID

integer

None.

ActionDate

date

None.

TimeText

string

None.

Description

string

None.

ActionedByUserID

integer

None.

ActionTypeID

integer

None.

Subject

string

None.

UserID

integer

None.

UserTypeId

integer

None.

TaskClientID

integer

None.

BusinessPartnerCode

string

None.

TaskStatusID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "TaskActionID": 1,
  "TaskID": 2,
  "ActionDate": "2026-08-14T17:36:20.4651319+01:00",
  "TimeText": "sample string 4",
  "Description": "sample string 5",
  "ActionedByUserID": 6,
  "ActionTypeID": 7,
  "Subject": "sample string 8",
  "UserID": 9,
  "UserTypeId": 10,
  "TaskClientID": 11,
  "BusinessPartnerCode": "sample string 12",
  "TaskStatusID": 13
}

application/xml, text/xml

Sample:
<TaskActionSaveRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PricingWebAPI.Models">
  <ActionDate>2026-08-14T17:36:20.4651319+01:00</ActionDate>
  <ActionTypeID>7</ActionTypeID>
  <ActionedByUserID>6</ActionedByUserID>
  <BusinessPartnerCode>sample string 12</BusinessPartnerCode>
  <Description>sample string 5</Description>
  <Subject>sample string 8</Subject>
  <TaskActionID>1</TaskActionID>
  <TaskClientID>11</TaskClientID>
  <TaskID>2</TaskID>
  <TaskStatusID>13</TaskStatusID>
  <TimeText>sample string 4</TimeText>
  <UserID>9</UserID>
  <UserTypeId>10</UserTypeId>
</TaskActionSaveRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ApiResponse
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

Response Formats

application/json, text/json

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

application/xml, text/xml

Sample:
<ApiResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PricingWebAPI.Models">
  <Message>sample string 2</Message>
  <Success>true</Success>
</ApiResponse>