forked from ringcentral/RingCentral.Net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AnsweringRuleTest.cs
39 lines (36 loc) · 1.49 KB
/
AnsweringRuleTest.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System;
using Xunit;
namespace RingCentral.Tests
{
public class AnsweringRuleTest
{
[Fact]
public async void UpdateAnsweringRule()
{
using (var rc = new RestClient(
Environment.GetEnvironmentVariable("RINGCENTRAL_CLIENT_ID"),
Environment.GetEnvironmentVariable("RINGCENTRAL_CLIENT_SECRET"),
Environment.GetEnvironmentVariable("RINGCENTRAL_SERVER_URL")
))
{
await rc.Authorize(
Environment.GetEnvironmentVariable("RINGCENTRAL_USERNAME"),
Environment.GetEnvironmentVariable("RINGCENTRAL_EXTENSION"),
Environment.GetEnvironmentVariable("RINGCENTRAL_PASSWORD")
);
var answeringRules = await rc.Restapi().Account().AnsweringRule().List();
var answeringRule = answeringRules.records[0];
Assert.NotNull(answeringRule);
Assert.True(answeringRules.records.Length > 1);
var answeringRules2 = await rc.Get<CompanyAnsweringRuleList>("/restapi/v1.0/account/~/answering-rule",
new {perPage = 1});
Assert.NotNull(answeringRules2);
Assert.True(answeringRules2.records.Length == 1);
// await rc.Patch(rc.Restapi().Account().AnsweringRule(answeringRule.id).Path(), new
// {
// enabled = true
// });
}
}
}
}