From 4b05e8b409760d8f3ca053d87143e20caf0aefdc Mon Sep 17 00:00:00 2001 From: Malcolm Crum Date: Tue, 25 Feb 2025 20:31:00 +1100 Subject: [PATCH] Path parameter is required --- src/api/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/api.go b/src/api/api.go index 65dfa95..738bb6e 100644 --- a/src/api/api.go +++ b/src/api/api.go @@ -1720,7 +1720,7 @@ func (a *Api) SendStopTyping(c *gin.Context) { // @Description Check if one or more phone numbers are registered with the Signal Service. // @Accept json // @Produce json -// @Param number path string false "Registered Phone Number" +// @Param number path string true "Registered Phone Number" // @Param numbers query []string true "Numbers to check" collectionFormat(multi) // @Success 200 {object} []SearchResponse // @Failure 400 {object} Error