Hi Onno, The Groups Provisioning API doesn't allow to create an Announce Only group. We are aware of this limitation and currently working to add this feature.
For what concerns your second question, the Provisioning API exposes a method to add an Owner to a group: http://code.google.com/googleapps/domain/gdata_provisioning_api_v2.0_developers_protocol.html#Create_Owner_Example However, this functionality is not reflected in the PHP library. If you want to implement it yourself, what you have to do is sending a POST request to https://apps-apis.google.com/a/feeds/group/2.0/domain/groupId/owner The body of the request should look like the following: <?xml version="1.0" encoding="UTF-8"?> <atom:entry xmlns:atom="http://www.w3.org/2005/Atom" xmlns:apps="http://schemas.google.com/apps/2006" xmlns:gd="http://schemas.google.com/g/2005"> <apps:property name="email" value="[email protected]"/> </atom:entry> Thanks Claudio On Tue, May 24, 2011 at 12:46 AM, Onno Benschop <[email protected]> wrote: > I'm using the PHP provisioning API to create and manage groups. > > I am unable to locate documentation on how to achieve the following two > requirements: > > 1. How do I create an Announce Only group/email list? > 2. How do I add an Owner to a group/email list? > > I realise that the PHP implementation may lag from the API functionality, > and I'd be happy to add these functions to the API code, but I cannot locate > documentation that describes how to actually achieve this. > > I have found some references in the .NET implementation, but they are not > clear and there doesn't appear to be any underlying documentation. > > Note that I can create an Announce Only group from the Google Apps > Dashboard and set an Owner. > > Can someone please point me to the RTFM where I might learn how to do this? > > -- > You received this message because you are subscribed to the Google Groups > "Google Apps Domain Information and Management APIs" group. > To post to this group, send email to > [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/google-apps-mgmt-apis?hl=en. > -- You received this message because you are subscribed to the Google Groups "Google Apps Domain Information and Management APIs" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-apps-mgmt-apis?hl=en.
