We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2df3146 commit dc695c0Copy full SHA for dc695c0
examples/client.md
@@ -49,3 +49,18 @@ Service method:
49
```php
50
$response = $api->getClientByUsername($username);
51
```
52
+
53
+#### GET /client/usergroup/{id} - Get Clients Info by usergroup
54
55
+Service method:
56
+```php
57
+$response = $api->getClientsByUsergroup(1);
58
+```
59
60
+#### GET /client/status/{id} - Get Clients Info by status
61
+0 = pending, 1 = active, 2 = cancel, 3 = fraud
62
63
64
65
+$response = $api->getClientsByStatus("fraud");
66
0 commit comments