curl --location --request GET '/v1.3/user_property_sets/get' \
--header 'access_token: <ACCESS_TOKEN>' \
--header 'timestamp: <TIMESTAMP>' \
--header 'nonce: <NONCE>' \
--header 'fields;' \
--data-urlencode 'account_id=<ACCOUNT_ID>' \
--data-urlencode 'user_property_set_id=123'{
"code": 0,
"message": "",
"message_cn": "",
"data": {
"list": [
{
"user_property_set_id": "123",
"name": "test user_property_set",
"description": "just for test user_property_set",
"created_time": "2017-08-20 16:04:27"
}
]
}
}