Skip to main content
Solved

Getting " no Route matched with those values " Error Message

  • October 13, 2020
  • 6 replies
  • 11270 views

POST /questions/ask?authorId=deepkandpal" HTTP/1.1
Host: api2-us-west-2.insided.com
Accept: application/json
Authorization: Bearer <access_token>
Content-Type: application/json
Cache-Control: no-cache

response status code = 404

Response 

{
    "message": "no Route matched with those values"
}

 

Thank You in advance

Best answer by mstone

Is that a GET request? Looks like your missing the /v2/ .. give this a try:

 

https://api2-us-west-2.insided.com/v2/questions?page=1&pageSize=25

6 replies

mstone
Forum|alt.badge.img
  • Helper ⭐️
  • October 13, 2020

@deepkandpal I believe authorId must be a numerical value. 


  • Author
  • Contributor ⭐️⭐️
  • October 13, 2020

Thank You for your response @mstone

I am getting the same error while hitting.

https://api2-us-west-2.insided.com/questions?page=1&pageSize=25 URL.

{
    "message": "no Route matched with those values"
}

 


mstone
Forum|alt.badge.img
  • Helper ⭐️
  • Answer
  • October 13, 2020

Is that a GET request? Looks like your missing the /v2/ .. give this a try:

 

https://api2-us-west-2.insided.com/v2/questions?page=1&pageSize=25


  • Author
  • Contributor ⭐️⭐️
  • October 13, 2020

Thank You so much @mstone .

Working Fine Now.


tom.shaddock
  • Gainsight Employee ⭐️⭐️
  • October 14, 2020

Thanks for that answer @mstone! @deepkandpal  yep so the user endpoints have no /v2/ in the url (e.g https://api2-us-west-2.insided.com/user) while all other endpoints do have it.  If you’re ever unsure of what the full url is for the API call, you can always get it from the documentation just by clicking on the route it opens a popup with the full url in e.g:
 

 

 


  • Author
  • Contributor ⭐️⭐️
  • October 14, 2020

Thank You tom.shaddock.