curl --request GET \
--url http://localhost:3001/api/admin/user-properties/
{
"userProperties": [
{
"id": "<string>",
"workspaceId": "<string>",
"name": "<string>",
"definition": {
"type": "Id"
},
"exampleValue": "<string>",
"updatedAt": 123,
"lastRecomputed": 123,
"createdAt": 123,
"definitionUpdatedAt": 123
}
]
}
Get all user properties.
curl --request GET \
--url http://localhost:3001/api/admin/user-properties/
{
"userProperties": [
{
"id": "<string>",
"workspaceId": "<string>",
"name": "<string>",
"definition": {
"type": "Id"
},
"exampleValue": "<string>",
"updatedAt": 123,
"lastRecomputed": 123,
"createdAt": 123,
"definitionUpdatedAt": 123
}
]
}
Default Response
The response is of type object
.