Change information of existing properties with new information. A task’s fields and information in the current channel will be updated.
1 | PATCH odata/tasks({task-id}) |
odata/tasks({task-id}).
PATCH.
This method is not support OData Filter syntax.
Header1
2
3--x-appvity-channelId: [ChannelID]
--x-appvity-teamid: [TeamID]
--Cookie: graphNodeCookie=[ID]
Body
In the requested body, only include all fields that need to update. Other fields that not included will keep it old value.
1 | { |
Success
If successful, this method returns a 204 No Content
response code and no content in the response body.
Error
This method can return any of the HTTP status codes. The most common errors that apps should handle for this method are the 400, 403, 404, 409, and 412 responses.
Request
1 | curl --location --request PATCH 'https://teams.appvity.com/odata/tasks(5f6176d04d596392f54717f8)' \ |
Response
No Content.
Comment