browseBookmarksByUser

@GET(value = "users/{user}/works")
abstract suspend fun browseBookmarksByUser(@Path(value = "user") user: String, @Query(value = "page") page: Int, @QueryMap parameters: WorksFilterParameters = WorksFilterParameters()): AO3Response<UserWorksPage>

Retrieves a list of up to 20 bookmark blurbs at the specified page that are associated with the user.

Additional arguments can be specified in parameters with a WorksFilterParameters object.

Parameters

user

Name of the user

page

Page to be retrieved

parameters

Additional parameters for filtering the results


@GET(value = "users/{user}/pseuds/{pseud}/works")
abstract suspend fun browseBookmarksByUser(@Path(value = "user") user: String, @Path(value = "pseud") pseudonym: String, @Query(value = "page") page: Int, @QueryMap parameters: BookmarksFilterParameters = BookmarksFilterParameters()): AO3Response<UserWorksPage>

Retrieves a list of up to 20 bookmark blurbs at the specified page that are associated with the user.

Additional arguments can be specified in parameters with a WorksFilterParameters object.

Function overloaded to accept a pseudonym.

Parameters

user

Name of the user

page

Page to be retrieved

parameters

Additional parameters for filtering the results