Used to get info on a user profile.

Further information on user profiles, device profiles and attributes can be found in the guide on user data.

Examples

Return the ID, email and email addressable attributes of a specific user profile.

curl --request POST \
  --url https://external-api.xtremepush.com/api/external/info/profile \
  --header 'content-type: application/json' \
  --data '{
    "apptoken": "YOUR_APPTOKEN",
    "id": PROFILE_ID,
    "select": [
      "id",
      "email",
      "email_addressable"
    ]
  }'
Language
Click Try It! to start a request and see the response here!