Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 967 Bytes

Clients.md

File metadata and controls

31 lines (26 loc) · 967 Bytes

Clients

List of clients:

Check out the official documentation

\Billingo::clients()->all(int $page = 1, int $maxPerPage = 20)

Create a client:

Check out the official documentation

\Billingo::clients()->create(array $clientPayload)

Find a client:

Check out the official documentation

\Billingo::clients()->find(int $clientId)

Update a client:

Check out the official documentation

\Billingo::clients()->update(int $clientId, array $clientPayload)

Delete a client:

Check out the official documentation

\Billingo::clients()->destroy(int $clientId)