curl --request GET \
--url http://localhost:3001/api/admin/users/subscriptions
{
"workspaceId": "<string>",
"userId": "<string>",
"subscriptionGroups": [
{
"id": "<string>",
"name": "<string>",
"isSubscribed": true,
"channel": "Email"
}
]
}
Get subscriptions for a user
curl --request GET \
--url http://localhost:3001/api/admin/users/subscriptions
{
"workspaceId": "<string>",
"userId": "<string>",
"subscriptionGroups": [
{
"id": "<string>",
"name": "<string>",
"isSubscribed": true,
"channel": "Email"
}
]
}
Default Response
The response is of type object
.