I am trying to add several contact lists with random names from a .NET app using your C# sdk. However, I can't seem to get any other response than 409 Conflict. I get the same response when using your v2 API tester/debugger using both your example payload and random names. I have read that this error message indicates that a list with that name already exists, but I am positive a list with these names does not exist. Example JSON payload: { "name": "Hot Opportunities", "status": "ACTIVE" } The response I get: "error_key": "http.status.conflict" "error_message": "There was a conflict between the supplied data and the existing resource."
... View more