diff --git a/src/Objects/Groups/Group.php b/src/Objects/Groups/Group.php index abaaf6f..1e71bf9 100644 --- a/src/Objects/Groups/Group.php +++ b/src/Objects/Groups/Group.php @@ -31,6 +31,13 @@ public static function make(string $clientId, string $clientSecret): Group return $group; } + public function forGroupId(string $groupId): static + { + $this->attributes->groupId = $groupId; + + return $this; + } + public function all(array $query = []): ClientResponse { $http = $this->client()