list of all users subscribed to all board
I am using the below api to find the users permitted to a particular board: https://[COMMUNITY DOMAIN]/restapi/vc/boards/id/<board ID>/subscribers/email/board But the problem with above api and my use case is that I want to view the list of all the boards and its permitted users in one request. Whereas, the above api is only allowing to look for only a single board at a time. Is there a way in which I can get the list of all the boards in a community and it's subscribed users in a single hit?897Views
Sign in to react to this post2Comments
getting user id of the user whenever the email address of the user is entered
I want to get the user id of a user using the email address of the user. I want to use api v2 to return the user id of a particular user whenever the email address of that user is entered.Solved347Views
Sign in to react to this post1Comment
Anonymous0909 , You can use API V1 to fetch user record based on there email id.
Below is the API at the end you need to add actual {email} of the user, this will return the information of that user.
https://community.lithium.com/restapi/vc/users/email/{email}
<response status="success"> <user type="user" href="/users/id/43"> <registered type="boolean">false</registered> <id type="int">43</id> <deleted type="boolean">false</deleted> <email type="string">[email protected]</email> <anonymous type="boolean">false</anonymous> <login type="string">john_doe</login> <sso_id type="string">johndoe47</sso_id> <registration_time type="date_time">2006-07-18T22:13:32+00:00</registration_time> <last_visit_time type="date_time">2006-08-12T11:14:04+00:00</last_visit_time> <average_message_rating type="float">4.6</average_message_rating> <average_rating type="float">3.9</average_rating> <profiles> <profile name="name_last" type="string">Doe</profile> <profile name="name_first" type="string">John</profile> </profiles> <banned type="boolean">false</banned> </user> </response>From the response you can get ID of the user.
<id type="int">43</id>
Sign in to react to this post
The Developer Documentation is back up
We are working with the hosting site to determine and solve the issue. Thank you for your patience. Update: 25 March 9:19 AM We are still working on this issue and have been able to eliminate some root causes. We will continue to keep you updated. Update 25 March 4:17 PM We've pushed a fix to our Dev Doc Portal. You should be able to access it again without issue.109Views
Sign in to react to this post0Comments
Using API to download SMM reports into Google Sheets
I've been doing some testing and successfully using the API to get data from LSW/SMM into Google Sheets, using App Script. Where I'm getting stuck, however, is downloading the an CSV report. Has anyone managed to do this already? I get this error: Request failed for https://socialweb-analytics-emea.lcloud.com/api/public/reports/report/<rest of url> returned code 400. Truncated server response: <?xml version="1.0" encoding="UTF-8"?> <Error><Code>InvalidArgument</Code><Message>Only one auth mechanism allowed; only the X-Amz-Algorithm query ... (use muteHttpExceptions option to examine full response) (line 60, file "Code") A Google search leads me to believe that the redirect from LSW, when getting the download url is causing the issue, but maybe someone has found a way around this?112Views
Sign in to react to this post0Comments
Social Response Stats from API
Hi everyone, although I'm somewhat familiar with using the API to pull all sorts of stats and data from the community, LSW still eludes me. Was hoping someone has an example snippet that pulls something like tweets sent for users from LSW?148Views
Sign in to react to this post2Comments
You’ve seen all recent content