Skip to content

Latest commit

 

History

History
19 lines (10 loc) · 429 Bytes

README.md

File metadata and controls

19 lines (10 loc) · 429 Bytes

Stereotype.NET

This is a client package making use of Stereotype service easier from C# code base.

Usage

Install the package

dotnet add package Stereotype.NET

and make sure to add the import

using Cimpress.Stereotype;

and then

var stereotypeClient = new StereotypeClient(accessToken);
stereotypeClient.Request().SetTemplateId("demo.html").Materialize(data).Result.FetchString();