We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 155f4c1 commit dcdf0bfCopy full SHA for dcdf0bf
1 file changed
smoke_lists.py
@@ -57,7 +57,7 @@ def main():
57
logger.info("Creating a new list...")
58
file_content = "Zip\n20003\n20001"
59
# --- Capture request details ---
60
- logger.info("REQUEST: POST /v1.9/lists")
+ logger.info("REQUEST: POST /v1.10/lists")
61
logger.info(f"Request params: {{'api_key': '***', 'direction': 'forward', 'format': '{{A}}'}}")
62
logger.info(f"Request files: {{'file': ('smoke_test_list.csv', {repr(file_content)})}}")
63
new_list_response = client.create_list(
@@ -66,7 +66,7 @@ def main():
66
format_="{{A}}"
67
)
68
# --- Capture response details ---
69
- logger.info("RESPONSE: POST /v1.9/lists")
+ logger.info("RESPONSE: POST /v1.10/lists")
70
print_headers_and_body("Response", {
71
"id": new_list_response.id,
72
"file": new_list_response.file,
0 commit comments