Update active Gather
Update the gather.
Request URL
POST
https://api.catapult.inetwork.com/v1/users/{userId}/calls/{callId}/gather/{gatherId}
Example 1 of 1: Stop the gather DTMF
curl -v -X POST https://api.catapult.inetwork.com/v1/users/{userId}/calls/{callId}/gather/{gatherId} -u {token}:{secret} -H "Content-type: application/json" -d
'
{
"state": "completed"
}
'
client.Call.completeGather("{callId}", "{gatherId}")
.then(function () {});
await client.Call.UpdateGatherAsync("{callId1}", "{gatherId1}", new UpdateGatherData {State = CallGatherState.Completed});
call.update_gather("{gatherId1}", {:state => "completed"})