Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

247
Vistas
How to add URL as a parameter in Asp.net

I am in a situation where I need to pass URL as a parameter from javascript to Controller. But when I pass URL as a parameter I get error

async sendSmsNotification() {
var url = new URL(`https://chats.landbot.io`);
var PlanId = "123";
await NotificationService.sendNotification(PlanId, url);
}

export async function sendNotification(PlanId: string, url: string) {
    let url = HttpClient.buildUrl(`api/sendNotification/${PlanId}/${url}`);
    return await HttpClient.get(url);
}

Below is the actionmethod where I am expecting url link

        [HttpGet("Notification/{PlanId}/{url}")]
        [ValidateModelState]
        public async Task<IActionResult> SendNotification(Guid PlanId, string url)
        {
            var Plan = await _PlanRepository.GetPlan(PlanId, SecurityToken);

            try
            {
                return NoContent();
            }
            catch (ArgumentException ex)
            {
                return BadRequest(ex.Message);
            }
        }

I am getting this error

httpClient.ts:98 GET https://localhost:44386/api/Notification/c2776efe-49aa-46ff-a7f8 404

about 4 years ago · Juan Pablo Isaza
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda