I’m not totally clear on the difference between Response and Resolve time in the SLA config. The docs say You can define both "Response" and "Resolve" and RT will pick the one that comes earlier as the Due date.
How do I define a “time to first response” vs a time to reply once a customer has been engaged?
Set( %ServiceAgreements, (
Default => '3 Business Days',
Levels => {
'3 Business Days' => {
Starts => { RealMinutes => 0 },
Resolve => { BusinessMinutes => 60*8*3
Response => { BusinessMinutes => 60*8 },
BusinessHours => 'Default',
},
},
));
The above sets the due date to 3 business days on create. When I reply the due date is unchanged instead of being unset. With just Response defined the due date is unset on reply the way I would expect.