Rank 5: Hypervisor
I am trying to create document
requestBody = { "districtName": row['districtName'], "pincode": row['pincode'], } print(f"requestBody--> {requestBody}") result = databases.create_document( databaseId, collectionId, ID.unique(), requestBody )and request which is printed in the terminal is
requestBody--> {'districtName': 'SOUTH EAST DELHI', 'pincode': 110003}
I don't see any issue with request body then why this error? Can anyone pls help point if I am doing something dumb things or have missed something ?