Is anyone using the DomoApi?

Options
WHM
WHM Contributor

I was not sure where to post this question but "New to Domo" seemed as good as any- I did not see a board for DomoApi or SDK. If there is anyone out there that is using the DomoApi and c#, I could really use some help. here is my code, and question:

 

public async void GetPayPalSettlementFiles()
{

String DataSetID = "687752-c514-4bf5-96e4-a0f4c7fed4";//PayPalSettlementFiles
var query = new DataQueryRequest();

query.AddColumn("FileName");
query.AddColumn("StartDate");
query.AddColumn("EndDate");
query.AddColumn("RowCount");

try
{
DataQueryResponse qr = await client.DataSets.QueryDataSetAsync(DataSetID, query);
Console.Out.WriteLine(qr.ColumnCount.ToString() + " Columns Returned");
Console.Out.WriteLine(qr.RowCount.ToString() + " Rows Returned");

var xlist = from a in qr.Data
where a[0].ToString().Equals(" ")
select new
{

};
foreach (var FileDef in from fd in qr.Data
select fd)
{
FilesProcessed.Add(
new FileDefinition
{
FileName = FileDef[0].ToString(),
StartDate = FileDef[1].ToString(),
EndDate = FileDef[2].ToString(),
RowCount = Convert.ToInt16(FileDef[3])
});
}

}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}

}

 

-ugh, lost the formatting when it pasted in-

 

The idea here is to retrieve the list of paypal settlement statements that we have loaded into Domo. If I comment out the last query field, the code works perfectly and I get the list of files and they load into the list. adding the "RowCount" column throws an exception when it hits QueryDataSetAsync:

 

System.Net.Http.HttpRequestException was caught
HResult=-2146233088
Message=Response status code does not indicate success: 400 (Bad Request).
Source=System.Net.Http
StackTrace:
at System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode()
at DomoApi.DomoClient.<PostAsync>d__1f`1.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
at DomoApi.Manager.DataSetsManager.<QueryDataSetAsync>d__9a.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
at DomoApi.Manager.DataSetsManager.<QueryDataSetAsync>d__96.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
at ConsoleApplication1.Program.<GetPayPalSettlementFiles>d__2a.MoveNext() in d:\apps\Custom Utilities\ConsoleApplication1\ConsoleApplication1\Program.cs:line 224
InnerException:

 

All I can think of is that I can't ask for the last column in the dataset. Once I get this working, I will post the entire program here. The overall code should eventually read in the list of statements from Domo. get the list of files we have received from PayPal, check each one to see if they have been processed, if not, load the detail into a list<>, serialize it and push it into the payment details data set and finally add the filename to the list of processed files.

 

I could, of course,  simply use the code to clean up the statements and write them out to a CSV file to read in through workbench, but that seems silly when I already have to write code to clean up the files, why not load the data from memory instead? 

Comments

  • WHM
    WHM Contributor
    Options

    It turns out that the "RowCount" column in the Domo data set was actually " RowCount" (with the leading space). Many thanks to  Matt for pointing that out, I doubt I would have found that for days. So getting the data out is pretty easy - just make sure your column names match the actual names in the data set ?

     

    The Code below should work for you as a go-by.