Skip to content

Commit

Permalink
Add required data
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle-elios committed Jul 16, 2024
1 parent 69143ed commit 8b04646
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Concerns/Users.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ public function updateUser(int $userId, UserRequest $request): Response

public function unlinkUser(int $userId): Response
{
return $this->post("users/$userId/unlink");
return $this->post("users/$userId/unlink", [
'assignContact' => 1,
]);
}
}

0 comments on commit 8b04646

Please sign in to comment.