feat(api): implement endpoint for creating link tokens

This commit is contained in:
Stevan Freeborn
2026-02-15 07:02:01 -06:00
parent 6b2b19cb5b
commit ab88656c1e
5 changed files with 111 additions and 1 deletions
@@ -0,0 +1,19 @@
namespace FiscalOS.API.Institutions.Link;
public sealed record Response
{
public string LinkToken { get; init; } = string.Empty;
[JsonConstructor]
private Response()
{
}
public static Response From(string linkToken)
{
return new()
{
LinkToken = linkToken,
};
}
}