I have a httpwebrequest Patch Method that works if I run it in Postman. because there is a path param in it.
https://testapi.kyoo.com/api/v3/businessportal/queues/:branchId/:queueGroupId/:queueId/:state
in which have a paramaters:
:branchId :80971198-4983-45a5-a4f4-bbf486dd88d1
:queueGroupId : 8b19f885-1903-43d9-9b2f-b226ac8749e4
:queueId : f3906c41-9d95-4746-aa13-d2e39eb59c99
:state : done
my problem is that if I use this httpwebrequest(below)
https://testapi.kyoo.com/api/v3/business-portal/queues?:branchId =80971198-4983-45a5-a4f4-bbf486dd88d1&:queueGroupId=8b19f885-1903-43d9-9b2f-b226ac8749e4&:queueId=f3906c41-9d95-4746-aa13-d2e39eb59c99&:state=done
it give me "Internal Server error 500"
what did I miss?
by the way I want to code that in .net and I don't have any Idea how to pass parameters.
Update
For me to be use PATCH METHOD
I need to over ride
requests1.Method = "PATCH"
it's method and add thislines
request.Headers.Add("X-Http-Method-Override", "PATCH")
by the way my vb.net behind codes is