Get profile attribute values from user profiles.
Further information on user profiles, device profiles and attributes can be found in the guide on user data.
Note: Logging of profile subscription changes is turned off by default and this API method will return empty result sets. If you believe you need access to this data, please contact us.
{
"apptoken": "YOUR_APPTOKEN",
"condition": [
[
"user_id",
"=",
"USER_ID"
]
]
}Your App token
Order the results in either ascending or descending order based on any of the attributes, eg. ["attribute_name"] or ["update_time DESC"]
Select what attributes to return, eg. ["value", "update_time"]
Filter the user profiles based on some criteria, eg. [ ["user_id", "=", "USER_ID"] ]
Used with offset for pagination, eg. "limit": 50, "offset": 0 returns a max of 50 results starting at position 0
Used with limit for pagination
200
{
"success": "True",
"code": "200",
"data": [
{
"project_id": "2780",
"profile_id": "11eb0ca1610252948bc7061c72c7ac00",
"value": "Belle",
"attribute_name": "first_name",
"user_id": "1234",
"update_time": "1633523110"
}
]
}400
{
"success": "False",
"code": "400",
"message": "General error information",
"errors": [
{
"text": [
"Detailed information about the specific error"
]
}
]
}