From 73eb3300853a2ae8e16b4b98f86833c40f5ac701 Mon Sep 17 00:00:00 2001 From: SOIX <100382372+soixt@users.noreply.github.com> Date: Sun, 12 Feb 2023 00:56:13 +0100 Subject: [PATCH] removed second param since it is not used by official docs enddpoint --- src/Enum/Stream/CollectionEndpoint.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Enum/Stream/CollectionEndpoint.php b/src/Enum/Stream/CollectionEndpoint.php index b90740e..19d0f86 100644 --- a/src/Enum/Stream/CollectionEndpoint.php +++ b/src/Enum/Stream/CollectionEndpoint.php @@ -81,7 +81,7 @@ final class CollectionEndpoint /** @var array */ public const CREATE_COLLECTION = [ 'method' => 'POST', - 'path' => 'library/%d/collections/%s', + 'path' => 'library/%d/collections', 'headers' => [ Header::ACCEPT_JSON, Header::CONTENT_TYPE_JSON_ALL,