Question

Rest API URL for specific user boards?

  • 27 March 2024
  • 2 replies
  • 28 views

Badge +1

Rest API URL for specific user boards?

I have gone through all documentation articles in the developers.miro.com.

But I couldn't find the rest API url for specific user boards.


2 replies

Userlevel 3
Badge

Hi @Naveen prakash 

If I understand your question correctly, you want to be able to retrieve the boards for a specific user, is that correct?

If that is correct, you can then use the get boards endpoint: https://developers.miro.com/reference/get-boards.

Since you are passing in the access token to make this request, the response will include only boards which this particular user (which is associated with this access token) has access to. So by default you will only get this sepcific user’s boards that they are in.

If you want to only retrieve the boards which they are “owner” of, then you can use the “owner” parameter to pass in the userID so that you only retrieve boards which are owned by a specific user. 

Please let me know if this answers your question. 

Badge +1

Hi Horea,

 

Thanks for your information.

Yes it works for me, now I'm able to retrieve the boards of any specific user with below API url.

https://api.miro.com/v2/boards?owner=<user_id>

 

Best Regards.

Naveen prakash.

 

Reply