Rest Architecture
Last updated
Was this helpful?
Last updated
Was this helpful?
API Browser Quick Guide
It can make your life easier if you use some kind of API browser application to explore the API when diving into this documentation.
We recommend to use the free browser plugin.
For easy onboarding take a look at our Quick-Guide.
A hypermedia API provides an entry point to the API, which contains hyperlinks the clients can follow. Just like a human user of a regular website, who knows the initial URL of a website and then follows hyperlinks to navigate through the site. This has the advantage that the client only needs to understand how to detect and follow links. The URLs (apart from the inital entry point) and other details of the API can change without breaking the client.
The entry point to the Plone RESTful API is the portal root. The client can ask for a API response by setting the 'Accept'
HTTP header to 'application/json'
:
http
curl
httpie
python-requests
This uses so-called ‘content negotiation’
The server will then respond with the portal root in the JSON format:
@id
is a unique identifier for resources (IRIs). The @id
property can be used to navigate through the web API by following the links.
@type
sets the data type of a node or typed value
items
is a list that contains all objects within that resource.
A client application can “follow” the links (by calling the @id property) to other resources. This allows to build a losely coupled client that does not break if some of the URLs change, only the entry point of the entire API (in our case the portal root) needs to be known in advance.
Another example, this time showing a request and response for a document. Click on the buttons below to show the different syntaxes for the request.
http
curl
httpie
python-requests
And so on, see
Note
The Chrome-Extension version of Postman is deprecated and it is recommended to use the native app available instead.
To easily follow links returned by request based on the API,
go to the menu under the wrench icon on the top right
choose Settings
activate the option Retain headers on clicking on links by selecting ON:
The option Send anonymous usage data to Postman should be deactivated by setting to OFF.
Now set the appropriate HTTP headers.
You have to select
A valid existing user with appropriate permissions
The request is now ready and can be send by clicking on Send button.
Conclusion
You can now explore the whole stucture of your application easily via the API using GET requests.
plone.restapi does not only expose content objects via a RESTful API. The API consumer can create, read, update, and delete a content object. Those operations can be mapped to the HTTP verbs POST (Create), GET (Read), PUT (Update) and DELETE (Delete).
Manipulating resources across the network by using HTTP as an application protocol is one of core principles of the REST architectural pattern. This allows us to interact with a specific resource in a standardized way:
POST
/folder
Creates a new document within the folder
GET
/folder/{document-id}
Request the current state of the document
PATCH
/folder/{document-id}
Update the document details
DELETE
/folder/{document-id}
Remove the document
To create a new resource, we send a POST request to the resource container. If we want to create a new document within an existing folder, we send a POST request to that folder:
http
curl
httpie
python-requests
By setting the ‘Accept’ header, we tell the server that we would like to receive the response in the ‘application/json’ representation format.
The ‘Content-Type’ header indicates that the body uses the ‘application/json’ format.
The request body contains the minimal necessary information needed to create a document (the type and the title). You could set other properties, like “description” here as well.
A special property during content creation is “UID”, as it requires the user to have the Manage Portal permission to set it. Without the permission, the request will fail as Unauthorized.
The response body can contain information about why the request failed.
The response body can contain further information such as an error trace or a link to the documentation.
Possible server reponses for a POST request are:
A pseudo-code example of the POST implementation on the server:
TODO: Link to the real implementation… [
After a successful POST, we can access the resource by sending a GET request to the resource URL:
http
curl
httpie
python-requests
For folderish types, their childrens are automatically included in the response as items
. To disable the inclusion, add the GET parameter include_items=false
to the URL.
The following example additionaly retrieves the UID and Creator:
http
curl
httpie
python-requests
Note
A pseudo-code example of the GET implementation on the server:
Possible server reponses for a GET request are:
To update an existing resource we send a PATCH request to the server. PATCH allows to provide just a subset of the resource (the values you actually want to change).
If you send the value null
for a field, the field’s content will be deleted and the missing_value
defined for the field in the schema will be set. Note that this is not possible if the field is required
, and it only works for Dexterity types, not Archetypes:
http
curl
httpie
python-requests
http
curl
httpie
python-requests
Note
PUT is not implemented yet.
To replace an existing resource we send a PUT request to the server:
TODO: Add example.
In accordance with the HTTP specification, a successful PUT will not create a new resource or produce a new URL.
PUT expects the entire resource representation to be supplied to the server, rather than just changes to the resource state. This is usually not a problem since the consumer application requested the resource representation before a PUT anyways.
TODO: Add example.
Sometimes requests fail due to incompatible changes. The response body includes additional information about the problem.
TODO: Add example.
A pseudo-code example of the PUT implementation on the server:
TODO: Link to the real implementation…
Possible server reponses for a PUT request are:
Difference between POST and PUT:
Use POST to create a resource identified by a service-generated URI
Use POST to append a resource to a collection identified by a service-generated URI
Use PUT to overwrite a resource
We can delete an existing resource by sending a DELETE request:
http
curl
httpie
python-requests
A pseudo-code example of the DELETE implementation on the server:
TODO: Link to the real implementation…
Possible responses to a delete request are:
The resources contained within a resource can be reordered using the ordering key using a PATCH request on the container.
Use the obj_id subkey to specify which resource to reorder. The subkey delta can be ‘top’, ‘bottom’, or a negative or positive integer for moving up or down.
Reordering resources within a subset of resources can be done using the subset_ids subkey.
A response 400 BadRequest with a message ‘Client/server ordering mismatch’ will be returned if the value is not in the same order as serverside.
A response 400 BadRequest with a message ‘Content ordering is not supported by this resource’ will be returned if the container does not support ordering.
http
curl
httpie
python-requests
To rearrange all items in a folderish context use the sort key.
The on subkey defines the catalog index to be sorted on. The order subkey indicates ‘ascending’ or ‘descending’ order of items.
A response 400 BadRequest with a message ‘Content ordering is not supported by this resource’ will be returned if the container does not support ordering.
http
curl
httpie
python-requests
Rule: Use nouns to represent resources.
Do:
Don’t:
Reason:
RESTful URI should refer to a resource that is a thing (noun) instead of referring to an action (verb) because nouns have properties as verbs do not. The REST architectural principle uses HTTP verbs to interact with resources.
Though, there is an exception to that rule, verbs can be used for specific actions or calculations, .e.g.:
Rule: Use plural resources.
Do:
Don’t:
Reason:
If you use singular for a collection like resource (e.g. “/user” to retrieve a list of all users) it feels wrong. Mixing singular and plural is confusing (e.g. user “/users” for retrieving users and “/user/21” to retrieve a single user).
Rule: Use lowercase letters in URIs.
Do:
Don’t:
Reason: RFC 3986 defines URIs as case-sensitive except for the scheme and host components. e.g.
Those two URIs are equivalent:
While this one is not equivalent to the two URIs above:
To avoid confusion we always use lowercase letters in URIs.
Rule: Use hyphens (spinal case) to improve readability of URIs.
Do:
Don’t:
Reason:
Discussion:
Rule: Use snake_case to reflect Python best practices.
Do:
Don’t:
Reason:
We map over Python attributes 1:1 no matter if they are snake case (modern Python/Plone, Dexterity) of lowerCamelCase (Zope 2, Archetypes).
Versioning APIs does make a lot of sense for public API services. Especially if an API provider needs to ship different versions of the API at the same time. Though, Plone already has a way to version packages and it currently does not make sense for us to expose that information via the API. We will always just ship one version of the API at a time and we are usually in full control over the backend and the frontend.
To discover the API interactively, using is recommended.
This option makes sure, once a is configured, it will be reused during following , if these are initiated by clicking on links resulting from the initial . This way navigating the structure using the API becomes a snap.
Choose the suitable to be used for your request. This can be selected using the HTTP Verb -> GET drop-down menu.
Enter the of the object that should be the target of a request into the URL field right to the :
The for the authentication related to the right user
The to initiate the right behaviour by the API related to this .
To set the , there is a reserved tab, that is responsible to generate the final based on the and username + password.
in the drop-down menu Basic Auth -> the term as the authentication method
After providing these parameters you can create the resulting and insert it into the prepared request by clicking on Preview Request.
Under the Headers tab you now need to insert in the application/json` header as well:
The of the server is now displayed below the . You can easily follow the links on the @id
attributes by clicking on them. For every link has prepared another request sharing the same headers that can be send again by licking on the Send button.
If a resource has been created, the server responds with the status code. The ‘Location’ header contains the URL of the newly created resource and the resource representation in the payload:
If the resource could not be created, for instance because the title was missing in the request, the server responds with :
If the server can not properly process a request, it responds with :
(Resource has been created successfully)
(malformed request to the service)
(server fault, can not recover internally)
If a resource has been retrieved successfully, the server responds with :
By default only basic metadata is included. To include additional metadata, you can specify the names of the properties with the metadata_fields
parameter. See also .
For folderish types, collections or search results, the results will be batched if the size of the resultset exceeds the batch size. See for more details on how to work with batched results.
If a resource could not be found, the server will respond with :
You can find implementation details in the
A successful response to a PATCH request will be indicated by a response by default:
You can get the object representation by adding a Prefer header with a value of return=representation to the PATCH request. In this case, the response will be a :
See for full specs the
When the PUT request is accepted and processed by the service, the consumer will receive a response ( would be a valid alternative).
When a resource has been updated successfully, the server sends a response:
This follows .
A successful response will be indicated by a response:
(if the resource does not exist)
(if deleting the resource is not allowed)
Spinal case is better to read and safer to use than camelCase (URLs are case sensitive (RFC3986)). Plone uses spinal case for URL creation (title “My page” becomes “my-page”) and mixed naming conventions in URLs would be confusing (e.g. “”). Google recommends spinal-case in URLs for better SEO ().