You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var client = LockstepApi.WithEnvironment(LockstepEnv.SBX)
.WithApiKey("X");
// Test first API call
var result = await client.Status.Ping();
if (!result.Success || !result.Value.LoggedIn!.Value)
{
Console.WriteLine("Your API key is not valid.");
Console.WriteLine("Please set the environment variable LOCKSTEPAPI_SBX and try again.");
return;
}
client.JournalEntries
I see no client.JournalEntries. Is my code correct?
The text was updated successfully, but these errors were encountered:
Hi,
I can't find any code samples for journal entries. Does this library include them? If not, can I contribute the endpoint?
https://api.sbx.lockstep.io/swagger/index.html#/JournalEntries/v1_JournalEntries_CreateJournalEntries
I see no client.JournalEntries. Is my code correct?
The text was updated successfully, but these errors were encountered: