put https://yourorgsite.com/api/TaskActionLog/~|
Updates an instance of TaskActionLog by id
Log in to see full request history
Response
200The request was successful.
Updates an instance of TaskActionLog by id
200The request was successful.
xxxxxxxxxx
21const options = {
method: 'PUT',
headers: {accept: 'application/json', 'content-type': 'application/json'},
body: JSON.stringify({
$type: 'Asi.Soa.Communications.DataContracts.TaskActionLogData, Asi.Contracts',
Status: 'InProgress',
TaskAction: {
$type: 'Asi.Soa.Communications.DataContracts.ITaskDefinitionActionData, Asi.Contracts',
ActionNotification: {
$type: 'Asi.Soa.Communications.DataContracts.NotificationDefinitionData, Asi.Contracts'
}
},
TaskActionType: 'DuesInvoiceReversal',
UpdateInformation: {$type: 'Asi.Soa.Core.DataContracts.EntityUpdateInformationData, Asi.Contracts'}
})
};
fetch('https://yourorgsite.com/api/TaskActionLog/~TaskActionLogId%7CTaskLogDetailId', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
Try It!
to start a request and see the response here!