Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenmaguire committed Aug 24, 2017
1 parent 9b837dd commit 6a5710d
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -374,15 +374,21 @@ $profile = $client->getDriverProfile();
### Get Driver Payments

```php
$profile = $client->getDriverPayments();
$profile = $client->getDriverPayments(array(
'limit' => 50, // optional
'offset' => 0 // optional
));
```

[https://developer.uber.com/docs/drivers/references/api/v1/partners-payments-get](https://developer.uber.com/docs/drivers/references/api/v1/partners-payments-get)

### Get Driver Trips

```php
$profile = $client->getDriverTrips();
$profile = $client->getDriverTrips(array(
'limit' => 50, // optional
'offset' => 0 // optional
));
```

[https://developer.uber.com/docs/drivers/references/api/v1/partners-trips-get](https://developer.uber.com/docs/drivers/references/api/v1/partners-trips-get)
Expand Down

0 comments on commit 6a5710d

Please sign in to comment.