Added model and started working on endpoint

Working on endpoint to create contacts using a file
This commit is contained in:
kdeng00
2023-10-02 06:49:02 -04:00
parent 13cb3949fc
commit 794368883d
2 changed files with 25 additions and 0 deletions
@@ -26,6 +26,8 @@ public class ContactQueueCreationController : ControllerBase
public IActionResult Upload([FromForm(Name = "file")] List<IFormFile> contactFile,
[FromForm(Name = "user_id")] string userID)
{
// TODO: Save the file on the filesystem to be processed by a separate
// system
return Ok();
}
#endregion