You are not logged in.
Pages: 1
hello everyone ,
if solution is add to a ticket how can i post refuse or approvement to that solution using api request .
thanks
Offline
approval:
PUT ITILSolution/(id_solution)
{"input": { "status":3,"date_approval":"'.$date_approval.'","users_id_approval":'.$users_id_approval.'}
refused:
POST Ticket/(id_ticket)/ITILFollowup
by default adding a message rejects the solution.
Offline
ty but adding followup to reject a solution didn't work for me
Offline
ty but adding followup to reject a solution didn't work for me
ok replace "status": 3 by 4
( 2 = in progress ; 3 = approval ; 4=refused)
PUT ITILSolution/(id_solution)
{"input": { "status":4,"date_approval":"'.$date_approval.'","users_id_approval":'.$users_id_approval.'}
Offline
is there a way to only change the status in the playload with (3 approved or 4 refused) and the date_approval and users_id_approval gets updated automatically.
Offline
Pages: 1