Skip to content

Commit

Permalink
fixed get and delete endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
van-der-wolf committed Feb 9, 2021
1 parent dc80e58 commit 363ee32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MyBusiness.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public function __construct(Google_Client $client)
),
),
),'deleteNotifications' => array(
'path' => 'v4/{+name}',
'path' => 'v4/{+name}/notifications',
'httpMethod' => 'DELETE',
'parameters' => array(
'name' => array(
Expand Down Expand Up @@ -114,7 +114,7 @@ public function __construct(Google_Client $client)
),
),
),'getNotifications' => array(
'path' => 'v4/{+name}',
'path' => 'v4/{+name}/notifications',
'httpMethod' => 'GET',
'parameters' => array(
'name' => array(
Expand Down

0 comments on commit 363ee32

Please sign in to comment.