0

I'm trying to figure out what the property "customFooterText" in https://www.googleapis.com/groups/v1/groups/groupUniqueId does.

The docs say

Set the content of custom footer text. [..]

so I played around with it (in combination with a true "includeCustomFooter". I also tried different states of directory-wide footer in the admin-panel) because I have a use case for setting different footers for different groups, but it does not seem to do anything.

Any input would be highly appreciated.

demongolem
  • 9,474
  • 36
  • 90
  • 105
Daniel
  • 3
  • 1

1 Answers1

0

Yes. Based from the documentation, customFooterText is used to set the content of custom footer text. The maximum number of characters is 1000. You may check this link on how to use it in your code.

{
  ...
   "includeCustomFooter": string,
   "customFooterText": string,
  ...
}

You may also refer with this related thread:

Community
  • 1
  • 1
abielita
  • 13,147
  • 2
  • 17
  • 59
  • Hey, thanks for your answer.Thats what i thought, but in my case it doesn't do anything.. Did you implement this yourself at some point? – Daniel Jan 09 '17 at 09:00