Package com.alfresco.content.apis
Interface ActivitiesApi
-
- All Implemented Interfaces:
@JvmSuppressWildcards() public interface ActivitiesApi
-
-
Method Summary
Modifier and Type Method Description abstract ActivityPaginglistActivitiesForPerson(@Path(value = "personId") String personId, @Query(value = "skipCount") Integer skipCount, @Query(value = "maxItems") Integer maxItems, @Query(value = "who") String who, @Query(value = "siteId") String siteId, @Query(value = "fields") List<String> fields)List activities Gets a list of activities for person personId. -
-
Method Detail
-
listActivitiesForPerson
@Headers(value = {"Content-Type: application/json"})@GET(value = "alfresco/versions/1/people/{personId}/activities") abstract ActivityPaging listActivitiesForPerson(@Path(value = "personId") String personId, @Query(value = "skipCount") Integer skipCount, @Query(value = "maxItems") Integer maxItems, @Query(value = "who") String who, @Query(value = "siteId") String siteId, @Query(value = "fields") List<String> fields)List activities Gets a list of activities for person personId. You can use the
-me-string in place of<personId>to specify the currently authenticated user. The endpoint is owned by defaultname service owner- Parameters:
personId- The identifier of a person.skipCount- The number of entities that exist in the collection before those included in this list.maxItems- The maximum number of items to return in the list.who- A filter to include the user's activities only `me`, other user's activities only `others`' (optional)siteId- Include only activity feed entries relating to this site.fields- A list of field names.
-
-
-
-