API Builder
APIBuilder
From
Example:
//Declare spec
var spec = APIBuilder.From("ProjectName", AuthorizationType.Bearer, true, true);
//Add as many endpoints, in this example, an echo endpoint
spec.AddEndpoints(
APIGeneration.Endpoint.From(spec, "Echo", "/echo", APIGeneration.Method.GET)
.WithRequestJSON(@"{""echo"": ""message""}")
.WithAIAssistance("Echo the message back to the use in json"));FromPostman
Example:
GenerateAPI
Example:
Last updated

