Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.39 KB

File metadata and controls

32 lines (23 loc) · 1.39 KB

ReachV1ContactsBulkStoreRequest

Create many contacts in one call

Properties

Name Type Description Notes
contacts List[ReachV1ContactsBulkStoreRequestContactsInner]
tag_uuids List[str] Existing tags to attach to every created contact [optional]
note str Note applied to every created contact [optional]

Example

from hostinger_api.models.reach_v1_contacts_bulk_store_request import ReachV1ContactsBulkStoreRequest

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

# convert the object into a dict
reach_v1_contacts_bulk_store_request_dict = reach_v1_contacts_bulk_store_request_instance.to_dict()
# create an instance of ReachV1ContactsBulkStoreRequest from a dict
reach_v1_contacts_bulk_store_request_from_dict = ReachV1ContactsBulkStoreRequest.from_dict(reach_v1_contacts_bulk_store_request_dict)

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