Entity Rest Extra
Categories
Component ID
Component name
Component type
Maintenance status
Development status
Component security advisory coverage
Downloads
Component created
Component changed
Component body
Extra Rest resources to enable access to entities configuration via Rest Resource
The following resources help to get admin information about Drupal 8 to be used by external implementation i.e Headless Drupal.
This idea was suggested as a patch to Drupal 8 Core more information at https://www.drupal.org/node/2355291#comment-9241689
All resources require authentication with an user with permission Administer content types
This project is used as part of project Marionette Drupal Yeoman Generator
Module generated using Drupal Console
Usage
Enable Rest Resources created by Entity Rest Extra.
Using the REST UI enable Rest Resources created by Entity Rest Extra, setting the Authentication and format JSON is recommended as you can see in the following image.
REST UI
Users with a role with permission Administer content types will be able to consume Rest Resources
Using the Chrome Application Postman - REST Client you can execute an authenticated request to URL http://example.com/entity/node/bundles
Get Entity bundles
End Point: http://example.com/{entity}/bundles
Entity: could be any valid entity type i.e node or comment
OUTPUT Sample
{
"article": "Article",
"page": "Basic page"
}
Get view modes by Entity and Bundle
End Point: http://example.com/{entity}/{bundle}/view_modes
Entity: could be any valid entity type i.e node or comment
Bundle: could be any valid bundle for entity provided i.e page, article
Output Sample
{
"node.article.default": "default",
"node.article.rss": "rss",
"node.article.teaser": "teaser"
}
Get fields by Entity and Bundle
End Point: http://example.com/{entity}/{bundle}/fields
Entity: could be any valid entity type i.e node or comment
Bundle: could be any valid bundle for entity provided i.e page, article
Output Sample
{
"body": {
"uuid": "0614f505-95e1-4e36-8800-f8f8671a8e22",
"langcode": "en",
"status": true,
.
.
.
"id": "node.article.body",
"field_name": "body",
"entity_type": "node",
"bundle": "article",
"label": "Body",
"description": "",
"required": false,
"translatable": true,
.
.
.
}
If you are interested in contribute please create a PR in github https://github.com/enzolutions/entity_rest_extra

