@@ -148,7 +148,6 @@ Places a new order for products/services
148148
149149``` python
150150import whmcs_client
151- from whmcs_client.models.add_order_request_clientid import AddOrderRequestClientid
152151from whmcs_client.models.add_order_response import AddOrderResponse
153152from whmcs_client.rest import ApiException
154153from pprint import pprint
@@ -166,7 +165,7 @@ with whmcs_client.ApiClient(configuration) as api_client:
166165 api_instance = whmcs_client.DefaultApi(api_client)
167166 username = ' username_example' # str | Admin username/API identifier
168167 password = ' password_example' # str | Admin password/API secret
169- clientid = whmcs_client.AddOrderRequestClientid() # AddOrderRequestClientid |
168+ clientid = None # object | The ID of the client to add the order for
170169 paymentmethod = ' paymentmethod_example' # str | The payment method for the order in the system format (e.g., paypal, mailin)
171170 accesskey = ' accesskey_example' # str | Optional API access key (optional)
172171 responsetype = json # str | Response format (optional) (default to json)
@@ -232,7 +231,7 @@ Name | Type | Description | Notes
232231------------- | ------------- | ------------- | -------------
233232 ** username** | ** str** | Admin username/API identifier |
234233 ** password** | ** str** | Admin password/API secret |
235- ** clientid** | [ ** AddOrderRequestClientid ** ] ( AddOrderRequestClientid .md) | |
234+ ** clientid** | [ ** object ** ] ( object .md) | The ID of the client to add the order for |
236235 ** paymentmethod** | ** str** | The payment method for the order in the system format (e.g., paypal, mailin) |
237236 ** accesskey** | ** str** | Optional API access key | [ optional]
238237 ** responsetype** | ** str** | Response format | [ optional] [ default to json]
@@ -476,7 +475,6 @@ Modifies an existing client's information
476475
477476``` python
478477import whmcs_client
479- from whmcs_client.models.update_client_request_clientid import UpdateClientRequestClientid
480478from whmcs_client.models.update_client_response import UpdateClientResponse
481479from whmcs_client.rest import ApiException
482480from pprint import pprint
@@ -494,7 +492,7 @@ with whmcs_client.ApiClient(configuration) as api_client:
494492 api_instance = whmcs_client.DefaultApi(api_client)
495493 username = ' username_example' # str | Admin username/API identifier
496494 password = ' password_example' # str | Admin password/API secret
497- clientid = whmcs_client.UpdateClientRequestClientid() # UpdateClientRequestClientid |
495+ clientid = None # object | The ID of the client to update
498496 accesskey = ' accesskey_example' # str | Optional API access key (optional)
499497 responsetype = json # str | Response format (optional) (default to json)
500498 clientemail = ' clientemail_example' # str | The email address of the client to update (optional)
@@ -553,7 +551,7 @@ Name | Type | Description | Notes
553551------------- | ------------- | ------------- | -------------
554552 ** username** | ** str** | Admin username/API identifier |
555553 ** password** | ** str** | Admin password/API secret |
556- ** clientid** | [ ** UpdateClientRequestClientid ** ] ( UpdateClientRequestClientid .md) | |
554+ ** clientid** | [ ** object ** ] ( object .md) | The ID of the client to update |
557555 ** accesskey** | ** str** | Optional API access key | [ optional]
558556 ** responsetype** | ** str** | Response format | [ optional] [ default to json]
559557 ** clientemail** | ** str** | The email address of the client to update | [ optional]
0 commit comments