You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Domain name for the website. Cannot start with "www."
order_id
int
ID of the associated order
datacenter_code
str
Datacenter code. This parameter is required when creating the first website on a new hosting plan.
[optional]
Example
fromhostinger_api.models.hosting_v1_websites_create_website_requestimportHostingV1WebsitesCreateWebsiteRequest# TODO update the JSON string belowjson="{}"# create an instance of HostingV1WebsitesCreateWebsiteRequest from a JSON stringhosting_v1_websites_create_website_request_instance=HostingV1WebsitesCreateWebsiteRequest.from_json(json)
# print the JSON string representation of the objectprint(HostingV1WebsitesCreateWebsiteRequest.to_json())
# convert the object into a dicthosting_v1_websites_create_website_request_dict=hosting_v1_websites_create_website_request_instance.to_dict()
# create an instance of HostingV1WebsitesCreateWebsiteRequest from a dicthosting_v1_websites_create_website_request_from_dict=HostingV1WebsitesCreateWebsiteRequest.from_dict(hosting_v1_websites_create_website_request_dict)