ContributionsMost RecentMost LikesSolutionsRe: Resolve ancestor path to namesYes, great, this works! just gotta figure out now, what ich ID means.. thank you a lot!Re: Resolve ancestor path to namesthank you for your answer, tariq. Your calls do not work (no such field), however, it gives me an idea how it could work and your links provide further information. SimonResolve ancestor path to names Dear Community In my Bulk API response I get the field "node.ancestor_path" which looks for example like "/1/2/176/177/244/". I tried to use Community API to get the nodes for the path, however, I didn't succeed. I tried "SELECT * FROM node" and "SELECT * FROM boards" but I couldn't find any ID or field which seems to fit and resolves the path to a more meaningful name. What do I do wrong? How can I get the names? SolvedBulk API call with C#: error 401 or 407 Dear Community I've been looking for quite some time before coming to ask here. I don't know how I can translate the following sample-curl call into appropriate C# code: curl “https://api.lithium.com/lsi-data/v1/data/export/community/testcommunity.prod?fromDate=20140913&toDate=20140916 -H “client-id: safkdndkebbdkkkc” -u “eicncladjiickld:” What I got so far: public string httpGetRequestCommunity (string url) { //set values ////////edit//////// string token = "eicncladjiickld:"; string clientID = "safkdndkebbdkkkc"; //encode username and password in base64 string authenticationEncoded = System.Convert.ToBase64String(System.Text.Encoding.GetEncoding("ISO-8859-1").GetBytes(token)); // Create a request for the URL. WebRequest request = WebRequest.Create(url); // Set the credentials. request.Headers.Add("client-id", clientID); request.Headers.Add("Authorization", "Basic " + authenticationEncoded); // Get the response. WebResponse response = request.GetResponse(); // Get the stream containing content returned by the server. Stream dataStream = response.GetResponseStream(); // Open the stream using a StreamReader for easy access. StreamReader reader = new StreamReader(dataStream); // Read the content. responseFromServer = reader.ReadToEnd(); // Clean up the streams and the response. reader.Close(); response.Close(); return responseFromServer; } Does anyone have sample code on how to connect with C# to the Bulk API? Or can someone help me? :) That would be really great! Regards, Simon