Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created September 1, 2023 10:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/40436a27ada1307c00acb6b92d9898e3 to your computer and use it in GitHub Desktop.
Save bjoerntx/40436a27ada1307c00acb6b92d9898e3 to your computer and use it in GitHub Desktop.
[Route("api/[controller]/merge")]
[HttpPost]
public ProcessingRequest Post(string webHookUrl) {
ProcessingRequest request = new ProcessingRequest() {
WebHookUrl = webHookUrl
};
request.Create(Url.ActionLink("Get", "DocumentProcessing", new { id = "1" }));
return request;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment