Skip to content

Commit dc50505

Browse files
committed
GRAL-2095 Removed default value for start in getAllCallLogsAssignedToAParticularUser, it's set by the backend
1 parent a5ecbbe commit dc50505

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -832,7 +832,7 @@ function getAllCallLogsAssignedToAParticularUser($options)
832832

833833
| Parameter | Tags | Description |
834834
|-----------|------|-------------|
835-
| start | ``` Optional ``` ``` DefaultValue ``` | For pagination, the position that represents the first result for the page |
835+
| start | ``` Optional ``` | For pagination, the position that represents the first result for the page |
836836
| limit | ``` Optional ``` | For pagination, the limit of entries to be returned |
837837

838838
#### Example Usage

src/Controllers/CallLogsController.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,7 @@ public static function getInstance()
5353
* @throws APIException Thrown if API call fails
5454
*/
5555
public function getAllCallLogsAssignedToAParticularUser(
56-
$options = [
57-
'start' => 1
58-
]
56+
$options
5957
) {
6058
//check or get oauth token
6159
OAuthManager::getInstance()->checkAuthorization();

0 commit comments

Comments
 (0)