From c672bf5f541cec87642003082f89d961a7be1f84 Mon Sep 17 00:00:00 2001 From: StevanFreeborn Date: Tue, 3 May 2022 11:40:10 -0500 Subject: [PATCH] update README.md --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 1e0fe64..4857e4d 100644 --- a/README.md +++ b/README.md @@ -224,6 +224,13 @@ PrintField(response.data.field) #### Get Fields By Ids ```python +response = client.GetFieldsByIds([9686, 9687]) + +print(f'Status Code: {response.statusCode}') +print(f'Count: {response.data.count}') + +for field in response.data.fields: + PrintField(field) ``` #### Get Fields By App Id