Есть ли возможность хранить вторичную электронную почту пользователя с помощью Google Directory API?
Я просто пытаюсь использовать свойство "emails" (в соответствии с ним https://developers.google.com/admin-sdk/directory/v1/reference/users/insert),, но оно не работает.
Вот пример тела запроса, который я использую:
{
"name": {
"familyName": "John",
"givenName": "Doe",
"fullname": "John Doe"
},
"primaryEmail": "john.doe@somesite.edu.br",
"password": "somepasswordhere",
"emails": {
"address": "some.secondary.email.here@gmail.com",
"primary": false,
"type": "other",
},
"organizations": {
"name": "Some Organization",
"department": "Blah",
"title": "Test",
"type": "school",
},
"changePasswordAtNextLogin": true,
"relations": {
"type": "mother",
"value": "John's Mother"
}
}