Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.21 KB

File metadata and controls

31 lines (23 loc) · 1.21 KB

UpdateApiKeyRequest

The request parameters for updating an existing API key.

Properties

Name Type Description Notes
name str The new name for the API key. [optional]
permissions List[str] The new list of permissions for the API key. [optional]
is_active bool Indicates whether the API key should be active or not. [optional]

Example

from docspace_api_sdk.models.update_api_key_request import UpdateApiKeyRequest

# TODO update the JSON string below
json = "{}"
# create an instance of UpdateApiKeyRequest from a JSON string
update_api_key_request_instance = UpdateApiKeyRequest.from_json(json)
# print the JSON string representation of the object
print(UpdateApiKeyRequest.to_json())

# convert the object into a dict
update_api_key_request_dict = update_api_key_request_instance.to_dict()
# create an instance of UpdateApiKeyRequest from a dict
update_api_key_request_from_dict = UpdateApiKeyRequest.from_dict(update_api_key_request_dict)

[Back to Model list] [Back to API list] [Back to README]