Hi,

Can someone show me any example of how to set a relationship between Contacts and Cases. I'm using V3 of the api and the set_relationship function is different than the one listed in the documentation.

Here's what I have but it doesn't work, maybe it's because I dont' know what I am suppose to pass into the

C#

string contactId = "3d72b61d-8d35-72c5-cdfc-4d6d71f6a96e";
string caseId = "7ac8e112-3f01-bdb7-8aff-4d6ebfc46565";

Client.set_relationship(SessionId, "Cases", caseId, "Contacts", new string[] { contactId },null, 0);

Thanks.