The user ID or "me".
The album ID or "favorites".
The ID of the image to add.
AuthenticationRequired if authentication is missing.
ApiError with status 401 if authentication is invalid.
ApiError with status 404 if album or image not found.
Create a new album.
Create a new album to organize images. You can only create albums for yourself.
The user ID or "me" (must be your own account).
The album details.
The created album.
AuthenticationRequired if authentication is missing.
ApiError with status 400 if invalid album data.
ApiError with status 401 if authentication is invalid.
Delete an album.
Permanently delete an album. The default "Favorites" album cannot be deleted. Images in the album are NOT deleted, only removed from the album.
AuthenticationRequired if authentication is missing.
ApiError with status 400 if trying to delete the default album.
ApiError with status 401 if authentication is invalid.
ApiError with status 404 if album not found.
List albums for a user.
Returns all albums for the specified user. The default "Favorites" album is always listed first.
The user ID or "me" for the current user.
Optionalquery: ListAlbumsForUserOptionsApiError with status 404 if user not found.
List images in an album.
Returns images in the album with full filtering support. Supports the same filters as the main images endpoint.
The user ID or "me".
The album ID or "favorites".
Optionalquery: SearchImagesOptionsRemove an image from an album.
Remove an image from one of your albums. The image is not deleted, only unlinked from the album.
The user ID or "me".
The album ID or "favorites".
The image ID to remove.
AuthenticationRequired if authentication is missing.
ApiError with status 401 if authentication is invalid.
ApiError with status 404 if album or image not found in album.
Update an album.
Update album name or description. You can only update your own albums.
The user ID or "me".
The album ID or "favorites".
The fields to update.
The updated album.
AuthenticationRequired if authentication is missing.
ApiError with status 400 if invalid album data.
ApiError with status 401 if authentication is invalid.
ApiError with status 404 if album not found.
Add an image to an album.
Add an image to one of your albums. Use "favorites" as albumId to add to your favorites.