Top "Restful-url" questions

Representational state transfer (REST) is a style of software architecture for distributed hypermedia systems such as the World Wide Web.

Rest URL Standards - Multiple Path Parameters

We are building a restful service for serving employee data. We have an api which will return the list of …

url restful-url path-parameter
sending array via query string in guzzle

Guzzle client creates by default from this code $client->get('https://example.com/{?a}', array('a' => array(…

php rest query-string restful-url guzzle
RESTful API routes design: nested vs. non-nested

My question is about the advantages of nesting resources when building URLs for API purposes. Consider the following two alternatives …

rest restful-url api-design nested-resources nested-routes
Why does including an action verb in the URI in a REST implementation violate the protocol?

I'm finding it necessary to understand why including action verbs in the URI violates the REST protocol for URI syntax? …

rest restful-url
What status code should I response with when there is no data found in my database

I am wondering what status code would I response with in my else statement from the code below: if (album) { …

rest restful-url
Express routing GET with search params

I have two GET routes for get stores but, one route is for get all stores and the other route …

node.js rest express restful-url
Object of type 'TypeError' is not JSON serializable

I try to build API with Django rest framework And I got Object of type 'TypeError' is not JSON serializable …

python django django-rest-framework restful-url
REST services - exposing non-data "actions"

I understand how to use REST for doing general entity interactions - using urls names to map to entities and …

web-services rest restful-url