0

I am trying to get the list of all users with their email addresses from a confluence cloud instance using their REST API. There is nothing in their documentation regarding users. Also the email address is never embedded in any of the response containing user objects. Is there a way to retrieve email address of the user based on the username.

double-beep
  • 5,031
  • 17
  • 33
  • 41
Nandu Kalidindi
  • 6,075
  • 1
  • 23
  • 36

1 Answers1

0

You will have to use their older APIs -- the methods are there.

sendmoreinfo
  • 582
  • 6
  • 22
  • Thank you, it seems like the only way to go. Also, could you please help me find a way where I can call the XML-RPC methods using OAuth 1.0 generated tokens rather than generating the token from username and password. – Nandu Kalidindi Jul 06 '15 at 09:12
  • Never tried that, sorry. What happens if you just pass the requisite `Authorization:` header? – sendmoreinfo Jul 06 '15 at 09:28
  • I don't think so. All the Remote APIs require a token argument which is the String returned from another remote call confluence2.login(username, password) – Nandu Kalidindi Jul 07 '15 at 04:52