Hi @Salik_Rafiq, the profile images for a specific user can be found in the user API, under .profile_image.image_url_full
, and there are a few other sizes available in the JSON returned from that endpoint as well.
There are a few ways to query for specific users:
- By email: http://localhost:18000/api/user/v1/accounts?email=staff@example.com
- By username: http://localhost:18000/api/user/v1/accounts/staff
The profile image can also be deleted or updated via DELETE and PATCH requests respectively (but not retrieved) via this endpoint as well: http://localhost:18000/api/user/v1/accounts/staff/image