cURL
curl --request POST \ --url https://profiles.platform.arb.inc/users/public-profiles \ --header 'Content-Type: application/json' \ --data ' { "userIDs": [ "00c573fd-18d9-4fbe-921e-6926d2c4869e", "860490d5-a462-4988-a05c-86586aa2f95a" ] } '
{ "profiles": [ { "id": "00c573fd-18d9-4fbe-921e-6926d2c4869e", "first_name": "Alice", "last_name": "Smith" } ] }
Returns public profile information for the provided list of user IDs. Supports up to 1000 user IDs per request.
A list of user IDs to retrieve public profiles for.
[ "00c573fd-18d9-4fbe-921e-6926d2c4869e", "860490d5-a462-4988-a05c-86586aa2f95a"]
Successfully retrieved public profiles.
List of user public profiles.
Show child attributes
The user ID.
"00c573fd-18d9-4fbe-921e-6926d2c4869e"
First name of the user.
"Alice"
Last name of the user, if available.
"Smith"