Entities API
All requests for this API must be authenticated. The authentication can be achieved in the following ways:
- by using and API Key
- by using the Auth API
- by using the Oauth2 flow
- by using the OpenID flow
GET /rest/entity/{name}/{key}
Retrieve an entity.
Request
GET /rest/entity/{name}/{key}
Name | Type | Description |
---|---|---|
name | string | The name of the entity to retrieve |
key | long | The key of the entity ro retrieve |
Response
200 Ok
The operation was successful, the result will be similar to this:
{
"entity_name": "the_name",
"properties": {
"key": 1,
"a_property": "value"
},
"children": {
"the_name_the_items": [
"entity_name": "the_items",
"properties": {
"key": 10,
"other_property": 10
}
]
}
}
400 Bad Request
There was an error deserializing the JSON message.
{
"detail": "error detail"
}
401 Unauthorized
The operation is not authorized.
Check if the authentication cookie is set or valid or a valid username and password are set in the URL.
500 Internal Error
All errors except for JSON message deserialization errors.
{
"detail": "error detail"
}
cURL Example
Read a catalog entity
Given the following cURL request:
curl --header "X-API-Key: e3097afe-1528-4fdb-a816-0d3724a8f318" \
--url "https://devdev17.oneerp.ro/rest/entity/ui_catalog/2"
The server will return the following response:
{
"entity_name": "ui_catalog",
"children": {"ui_catalog_ui_catalog_filter_owner": []},
"properties": {
"id_organization": 1,
"date_updated": "2021-08-30T12:44:48.000+03:00",
"date_created": "2021-04-06T15:25:46.000+03:00",
"fetch": "FETCH wf(key, name AS value) ORDER BY key ASC",
"name": "wfList",
"value_property_name": "name",
"id_business_unit": 2,
"id_user": 3,
"fetch_extended": "",
"uuid": "a7a88683-bcd3-4da7-a9d9-77b26b662104",
"key": 2,
"extended": 0
}
}
POST /rest/entity/{name}
Create an entity.
Request
Parameter | Type | Description |
---|---|---|
name | string | The name of the entity. |
Headers and Payload
Header | Value | Description |
---|---|---|
Content-Type | application/json | The content type. |
X-CSRF-Token | The value from the one.erp.csrf.token cookie. | CSRF protection token. |
The JSON payload:
{
"entity_name": "the_name",
"properties": {
"a_property": "value"
},
"children": {
"the_name_the_items": [
"entity_name": "the_items",
"properties": {
"other_property": 10
}
]
}
}
Response
The operation was successful. There was an error deserializing the JSON message. There was a business rule validation failure. The operation is not authorized. Check if the authentication cookie is set or valid or a valid username and password are set in the URL. All errors except for JSON message deserialization errors.200 Ok
{
"operation": "insert",
"key": 10
}
400 Bad Request
{
"detail": "error detail"
}
424 Entity Validation Failed
{
"eventName": "onBeforeInsert",
"entityName": "invoice",
"propertyName": "number",
"childEntityName": "invoice_item",
"childPropertyName": "price",
"childEntityIndex": 1,
"detail": "error detail"
}
401 Unauthorized
500 Internal Error
{
"detail": "error detail"
}
POST /rest/entity/{name}/{key}
Update an entity.
Request
Parameter | Type | Description |
---|---|---|
name | string | The name of the entity. |
key | long | The key of the entity. |
Headers and Payload
Header | Value | Description |
---|---|---|
Content-Type | application/json | The content type. |
X-CSRF-Token | The value from the one.erp.csrf.token cookie. | CSRF protection token. |
The JSON payload:
{
"entity_name": "the_name",
"properties": {
"key": 1,
"a_property": "value"
},
"children": {
"the_name_the_items": [
"entity_name": "the_items",
"properties": {
"key": 10,
"other_property": 10
}
]
}
}
Response
The operation was successful. There was an error deserializing the JSON message. There was a business rule validation failure. The operation is not authorized. Check if the authentication cookie is set or valid or a valid username and password are set in the URL. All errors except for JSON message deserialization errors.200 Ok
{
"operation": "update",
"key": 10
}
400 Bad Request
{
"detail": "error detail"
}
424 Entity Validation Failed
{
"eventName": "onBeforeUpdate",
"entityName": "invoice",
"propertyName": "number",
"childEntityName": "invoice_item",
"childPropertyName": "price",
"childEntityIndex": 1,
"detail": "error detail"
}
401 Unauthorized
500 Internal Error
{
"detail": "error detail"
}
DELETE /rest/entity/{name}/{key}
Delete an entity.
Parameter | Type | Description |
---|---|---|
name | string | The name of the entity. |
key | long | The key of the entity. |
Headers
Header | Value | Description |
---|---|---|
X-CSRF-Token | The value from the one.erp.csrf.token cookie. | CSRF protection token. |
Empty payload.
Response
200 Ok
The operation was successful.400 Bad Request
There was an error deserializing the JSON message.
{
"detail": "error detail"
}
424 Entity Validation Failed
There was a business rule validation failure.
{
"eventName": "onBeforeDelete",
"entityName": "invoice",
"propertyName": "number",
"childEntityName": "invoice_item",
"childPropertyName": "price",
"childEntityIndex": 1,
"detail": "error detail"
}
401 Unauthorized
The operation is not authorized.
Check if the authentication cookie is set or valid or a valid username and password are set in the URL.
500 Internal Error
All errors except for JSON message deserialization errors.
{
"detail": "error detail"
}