POST /a/activity/subscriptions
Load subscriptions to other users/nodes feeds
Body Parameters
Name | Description | Type | Required |
---|---|---|---|
ObjectIds | Filter by object Ids | array | |
ObjectTypes | Filter by type of objects | array | |
UserIds | List of UserIds for which we want to list | array |
Body Example
{
"ObjectIds": [
"string"
],
"ObjectTypes": [
"string"
],
"UserIds": [
"string"
]
}
Response Example (200)
Response Type /definitions/restSubscriptionsCollection
{
"subscriptions": [
{
"Events": [
"string"
],
"ObjectId": "string",
"ObjectType": "string",
"UserId": "string"
}
]
}