diff --git a/Jellyfin.Api/Controllers/SyncPlayController.cs b/Jellyfin.Api/Controllers/SyncPlayController.cs
index 3f40c7309b..c240960e7b 100644
--- a/Jellyfin.Api/Controllers/SyncPlayController.cs
+++ b/Jellyfin.Api/Controllers/SyncPlayController.cs
@@ -108,7 +108,7 @@ namespace Jellyfin.Api.Controllers
///
/// Play request sent to all group members.
/// A indicating success.
- [HttpPost]
+ [HttpPost("Play")]
[ProducesResponseType(StatusCodes.Status204NoContent)]
public ActionResult Play()
{
@@ -126,7 +126,7 @@ namespace Jellyfin.Api.Controllers
///
/// Pause request sent to all group members.
/// A indicating success.
- [HttpPost]
+ [HttpPost("Pause")]
[ProducesResponseType(StatusCodes.Status204NoContent)]
public ActionResult Pause()
{
@@ -145,7 +145,7 @@ namespace Jellyfin.Api.Controllers
/// The playback position in ticks.
/// Seek request sent to all group members.
/// A indicating success.
- [HttpPost]
+ [HttpPost("Seek")]
[ProducesResponseType(StatusCodes.Status204NoContent)]
public ActionResult Seek([FromQuery] long positionTicks)
{
@@ -167,7 +167,7 @@ namespace Jellyfin.Api.Controllers
/// Whether the buffering is done.
/// Buffering request sent to all group members.
/// A indicating success.
- [HttpPost]
+ [HttpPost("Buffering")]
[ProducesResponseType(StatusCodes.Status204NoContent)]
public ActionResult Buffering([FromQuery] DateTime when, [FromQuery] long positionTicks, [FromQuery] bool bufferingDone)
{