This repository was archived by the owner on Apr 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathtestSettings.example.json
More file actions
57 lines (47 loc) · 1.65 KB
/
Copy pathtestSettings.example.json
File metadata and controls
57 lines (47 loc) · 1.65 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
// connection info to the ConnectWise server
"server": {
"domain": "",
"companyName": "",
"publicKey": "",
"privateKey": "",
"overridessl": false
},
// ids of items that, in general, will be used for the get/read requests
"general": {
// variables to be used when making calls to ConnectWise's Service module
"service": {
"ticketIds": [1000, 1001, 1002, 1003, 1004, 1005],
"boardIds": [1, 2, 3, 4, 5],
"statusIds": [105, 104, 103, 102, 101],
"priorityIds": [8, 7, 6, 5, 4],
"ticketNoteIds": [123456]
},
// variables to be used when making calls to ConnectWise's Company module
"company": {
"companyIds": [1, 2],
"contactIds": [1, 2, 3, 4, 5]
},
// variables to be used when making calls to ConnectWise's System module
"system": {
"memberIds": [1, 2, 3]
}
},
// variables to be used for jobs/action specific tasks
"actions": {
// values to be used when testing the creation of new tickets.
"newTicket": {
"ticketTitle": "[Test] PowerShell Created Ticket",
"ticketBody": "Do not close or delete this ticket without talking to your manager",
"ticketCompany": 43,
"ticketBoard": 1,
"ticketContact": 777,
"ticketStatus": 105,
"ticketPriority": 8
},
// values to be used when testing time entries
"timeEntry": {
"memberid": 0
}
}
}