POST api/task/worklogs/detail/save
Request Information
URI Parameters
None.
Body Parameters
TaskWorklogDetailSaveDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| MemberID | globally unique identifier |
None. |
|
| WorklogId | globally unique identifier |
None. |
|
| SessionId | string |
None. |
|
| ChatJson | string |
None. |
|
| ActionsJson | string |
None. |
|
| LastResultText | string |
None. |
|
| ClearChat | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"MemberID": "1ec6d296-d0f7-4269-976d-b5179929bab5",
"WorklogId": "7fbaf69f-c515-4ba7-9145-08e3566edc59",
"SessionId": "sample string 3",
"ChatJson": "sample string 4",
"ActionsJson": "sample string 5",
"LastResultText": "sample string 6",
"ClearChat": true
}
application/xml, text/xml
Sample:
<TaskWorklogDetailSaveDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AIProject.API.Models.DTO"> <ActionsJson>sample string 5</ActionsJson> <ChatJson>sample string 4</ChatJson> <ClearChat>true</ClearChat> <LastResultText>sample string 6</LastResultText> <MemberID>1ec6d296-d0f7-4269-976d-b5179929bab5</MemberID> <SessionId>sample string 3</SessionId> <WorklogId>7fbaf69f-c515-4ba7-9145-08e3566edc59</WorklogId> </TaskWorklogDetailSaveDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.