POST /entities
Create a new entity.
The following parameters are recognized in the POST request body.
- name (REQUIRED) — [string] The name of the entity.
Status 2o1 — Created
A JSON Object filled with an entity following the entity format.
- Status 422 — Unprocessable Entity. The request name is already token.
POST /entities
{
"name" : "test"
}{
"id": 24,
"name": "test",
"url": "entity_test",
"image": null,
"created_at": "2017-07-29 00:00:00",
"updated_at": "2017-07-29 00:00:00"
}