I have a download in JSON format that I get through the API. Example:
JavaScript
x
62
62
1
{
2
"Employees": [
3
{
4
"User": {
5
"UserId": "4d132227-ea5c-4e57-b105-2f8b97872545",
6
"Login": "test@gmail.com",
7
"FullName": {
8
"LastName": "Фамилия",
9
"FirstName": "Имя",
10
"MiddleName": "Отчество"
11
},
12
"IsRegistered": true
13
},
14
"Permissions": {
15
"UserDepartmentId": "b5072e57-1e96-490b-ae03-2fd52ef84a3a",
16
"IsAdministrator": false,
17
"DocumentAccessLevel": "SelectedDepartments",
18
"SelectedDepartmentIds": [
19
"b5072e57-1e96-490b-ae03-2fd52ef84a3a",
20
"cd2e04dc-8d3f-4d63-88fd-f900c496e146",
21
"36e4434b-519d-4e40-9253-3464c10ed83e"
22
],
23
"Actions": [
24
{
25
"Name": "CreateDocuments",
26
"IsAllowed": true
27
},
28
{
29
"Name": "DeleteRestoreDocuments",
30
"IsAllowed": true
31
},
32
{
33
"Name": "SignDocuments",
34
"IsAllowed": true
35
},
36
{
37
"Name": "AddResolutions",
38
"IsAllowed": true
39
},
40
{
41
"Name": "RequestResolutions",
42
"IsAllowed": true
43
},
44
{
45
"Name": "ManageCounteragents",
46
"IsAllowed": false
47
}
48
],
49
"AuthorizationPermission": {
50
"IsBlocked": false
51
}
52
},
53
"Position": "Специалист по снабжению",
54
"CanBeInvitedForChat": true,
55
"CreationTimestamp": {
56
"Ticks": 637284074150000000
57
}
58
}
59
],
60
"TotalCount": 214
61
}
62
An example of what should happen: enter image description here
The ratio of the JSON list of employees with columns in the table:
JavaScript
1
13
13
1
A: "User": {"UserId"} - Employee ID
2
B: "User": {""FullName""} - FULL NAME
3
C: "Position" - Position
4
D: "User": {"Login"} - Mail
5
E: "User": {"IsRegistered"} - Login activated?
6
F: "Permissions": {"IsAdministrator"} - Administrator?
7
G: "Permissions": {"Actions": [{"Name": "SignDocuments","isAllowed": true} - Can sign documents
8
H: "Permissions": {"Actions": [{"Name": "AddResolutions","isAllowed": true} - Can coordinate documents
9
I: "Permissions": {"Actions": [{"Name": "RequestResolutions","isAllowed": true} - Can request document approval
10
J: "Permissions": {"Actions": [{"Name": "CreateDocuments","isAllowed": true} - Can create documents and work with drafts
11
K: "Permissions": {"Actions": [{"Name": "DeleteRestoreDocuments","isAllowed": true} - Can delete documents and drafts, restore documents
12
L: "Permissions": {"Actions": [{"Name": "ManageCounteragents","isAllowed": true} - Can work with a list of counterparties
13
How can I convert JSON to a Google spreadsheet for 300+ rows? At the moment I only have a request to the API. The response is JSON. What are my next steps?
JavaScript
1
29
29
1
function GetEmployees(){
2
3
var DdocAuthKey = GetAuthToken()
4
for (let i = 0; i < boxId.length; i++) {
5
let url = `https://diadoc-api.kontur.ru/GetEmployees?boxId=`+ boxId[i]
6
let options =
7
{
8
method: "GET",
9
contentType: 'application/json',
10
headers: {authorization: "DiadocAuth ddauth_api_client_id=" + DdocAPIkey + `,ddauth_token=` + DdocAuthKey}
11
}
12
13
var json = UrlFetchApp.fetch(url, options)
14
var obj = JSON.parse(json)
15
16
printValues(obj);enter code here
17
}
18
}
19
20
function printValues(obj) {
21
for(var k in obj) {
22
if(obj[k] instanceof Object) {
23
printValues(obj[k]);
24
} else {
25
return obj[k] + "<br>"
26
}
27
}
28
}
29
Advertisement
Answer
Try this:
JavaScript
1
74
74
1
function myFunction() {
2
3
// here is your object (parsed json)
4
var obj = {
5
"Employees": [
6
{
7
"User": {
8
"UserId": "4d132227-ea5c-4e57-b105-2f8b97872545",
9
"Login": "test@gmail.com",
10
"FullName": {
11
"LastName": "Фамилия",
12
"FirstName": "Имя",
13
"MiddleName": "Отчество"
14
},
15
"IsRegistered": true
16
},
17
"Permissions": {
18
"UserDepartmentId": "b5072e57-1e96-490b-ae03-2fd52ef84a3a",
19
"IsAdministrator": false,
20
"DocumentAccessLevel": "SelectedDepartments",
21
"SelectedDepartmentIds": [ "b5072e57", "cd2e04dc", "36e4434b" ],
22
"Actions": [
23
{ "Name": "CreateDocuments", "IsAllowed": true },
24
{ "Name": "DeleteRestoreDocuments", "IsAllowed": true },
25
{ "Name": "SignDocuments", "IsAllowed": true },
26
{ "Name": "AddResolutions", "IsAllowed": true },
27
{ "Name": "RequestResolutions", "IsAllowed": true },
28
{ "Name": "ManageCounteragents", "IsAllowed": false }
29
],
30
"AuthorizationPermission": { "IsBlocked": false }
31
},
32
"Position": "Специалист по снабжению",
33
"CanBeInvitedForChat": true,
34
"CreationTimestamp": { "Ticks": 637284074150000000 }
35
}
36
],
37
"TotalCount": 214
38
};
39
40
var table = []; // it will be the 2d array
41
42
for (var employee of obj.Employees) {
43
44
var {LastName, FirstName, MiddleName} = employee.User.FullName;
45
var name = [LastName, FirstName, MiddleName].join(' ');
46
47
var actions = {};
48
employee.Permissions.Actions.forEach(a => actions[a.Name] = a.IsAllowed);
49
50
var row = [
51
employee.User.UserId,
52
name,
53
employee.Position,
54
employee.User.Login,
55
employee.User.IsRegistered,
56
employee.Permissions.IsAdministrator,
57
actions.SignDocuments, // Can sign documents
58
actions.AddResolutions, // Can coordinate documents
59
actions.RequestResolutions, // Can request document approval
60
actions.CreateDocuments, // Can create documents and work with drafts
61
actions.DeleteRestoreDocuments, // Can delete documents and drafts, restore documents
62
actions.ManageCounteragents, // Can work with a list of counterparties
63
];
64
65
table.push(row); // add the row to the 2d array
66
}
67
68
// put the 2d array on the sheet
69
SpreadsheetApp.getActiveSheet()
70
.getRange(2,1,table.length,table[0].length)
71
.setValues(table);
72
73
}
74
Let me know if it works.