Skip to main content
Nintex Community Menu Bar
Solved

Skuid Platform merge syntax for user profile picture

  • July 11, 2024
  • 2 replies
  • 16 views

Forum|alt.badge.img+7

I don’t see an option to bring in the current user’s photo using merge syntax on skuid platform. Is there another approach?

Best answer by Elena_ONeil

Hi @duane,
The setup required to display the user’s avatar photo is a little different in Skuid Platform. You’ll want to set up an image component to use a URL as the image source, and use the url: /api/v1/me/{{$User.userId}}/avatar/medium. If you need a different image size, you can swap out medium for small or large.

2 replies

Forum|alt.badge.img+5
  • Nintex Employee
  • Answer
  • July 12, 2024

Hi @duane,
The setup required to display the user’s avatar photo is a little different in Skuid Platform. You’ll want to set up an image component to use a URL as the image source, and use the url: /api/v1/me/{{$User.userId}}/avatar/medium. If you need a different image size, you can swap out medium for small or large.


Forum|alt.badge.img+7
  • Author
  • Rookie
  • July 12, 2024

This works perfectly. Thank you!