Skip to content
This repository was archived by the owner on Feb 8, 2024. It is now read-only.

Commit

Permalink
verifying services (#13)
Browse files Browse the repository at this point in the history
* checking the services

* verify Curld of the services

* minimal changes

Co-authored-by: Elsio Sanchez <[email protected]>
  • Loading branch information
elsiosanchez and Elsio Sanchez authored May 3, 2021
1 parent 8bca6e5 commit 8eece62
Show file tree
Hide file tree
Showing 22 changed files with 395 additions and 371 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ curl 'https://api.erpya.com/adempiere-api/user/login' \
-X POST \
-H 'content-type: application/json' \
-H 'accept: */*;charset=UTF-8' \
--data-binary '{"username":"SuperUser","password":"System"}'
--data-binary '{"username":"demo","password":"demo"}'
```

```bash
Expand Down
42 changes: 22 additions & 20 deletions docs/guide/default-modules/adempiere-api/core.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ null
#### A Call example:

```bash
curl 'https://api.erpya.com/adempiere-api/core/country&token=xu3h02nd67yq0gapyj8x3kpqwzcy02om&language=es&uuid=901bff3b-6f85-4bbf-b068-a5b273866885' \
curl 'https://api.erpya.com/adempiere-api/core/country?token=b6d0c7c7-0785-4302-bb20-94c1bd5488b2&language=en&uuid=901bff3b-6f85-4bbf-b068-a5b273866885' \
-X GET \
-H 'content-type: application/json' \
-H 'accept: */*;charset=UTF-8'
-H 'accept: */*;charset=UTF-8'
```

#### Response Body:
Expand Down Expand Up @@ -90,7 +90,7 @@ Get a list of organizations of user role allowed.
#### Call example:

```bash
curl 'https://api.erpya.com/adempiere-api/core/list-organizations&token=xu3h02nd67yq0gapyj8x3kpqwzcy02om&language=es&page_size=50&page_token=47e1c737-418d-4340-b552-797860bd125f-3' \
curl 'https://api.erpya.com/adempiere-api/core/list-organizations?token=b6d0c7c7-0785-4302-bb20-94c1bd5488b2&language=es&page_size=50&page_token=47e1c737-418d-4340-b552-797860bd125f-3' \
-X POST \
-H 'content-type: application/json' \
-H 'accept: */*;charset=UTF-8' \
Expand Down Expand Up @@ -159,7 +159,7 @@ Get a list of warehouses from current organization.
#### Call example:

```bash
curl 'https://api.erpya.com/adempiere-api/core/list-warehouses&token=xu3h02nd67yq0gapyj8x3kpqwzcy02om&language=es&page_size=50&page_token=47e1c737-418d-4340-b552-797860bd125f-3' \
curl 'https://api.erpya.com/adempiere-api/core/list-warehouses?token=b6d0c7c7-0785-4302-bb20-94c1bd5488b2&language=es&page_size=50&page_token=47e1c737-418d-4340-b552-797860bd125f-3' \
-X POST \
-H 'content-type: application/json' \
-H 'accept: */*;charset=UTF-8' \
Expand Down Expand Up @@ -207,10 +207,12 @@ null
#### Call example:

```bash
curl 'https://api.erpya.com/adempiere-api/core/list-languages&token=xu3h02nd67yq0gapyj8x3kpqwzcy02om&language=es&page_size=50&page_token=47e1c737-418d-4340-b552-797860bd125f-1' \
-X POST \
-H 'content-type: application/json' \
-H 'accept: */*;charset=UTF-8'
curl --silent --location --request GET 'https://api.erpya.com/adempiere-api/core/country?token=b6d0c7c7-0785-4302-bb20-94c1bd5488b2&language=es?' \
--header 'Content-Type: application/json' \
--data-raw '{
"id": 1073741,
"uuid": "6ff7ed30-4bb1-4eeb-9e84-b6fa01978d66"
}'
```

#### Response Body:
Expand Down Expand Up @@ -271,20 +273,20 @@ Get a specific business partner based on a query criteria or values.
filters:
[
{
column_name: 'DocStatus',
operator: 'EQUAL',
value: 'CO'
"column_name": "DocStatus",
"operator": "EQUAL",
"value": "CO"
},
{
column_name: 'DateInvoiced',
operator: 'BETWEEN',
value: '2020-01-01'
value_to: '2020-09-01'
"column_name": "DateInvoiced",
"operator": "BETWEEN",
"value": "2020-01-01",
"value_to": "2020-09-01"
},
{
column_name: 'C_DocType_ID',
operator: 'IN',
values: [
"column_name": "C_DocType_ID",
"operator": "IN",
"values": [
1000000,
1000562
]
Expand Down Expand Up @@ -340,8 +342,8 @@ filters:
#### Call example:

```bash
curl 'https://api.erpya.com/adempiere-api/core/get-business-partner&token=xu3h02nd67yq0gapyj8x3kpqwzcy02om&language=es&uuid=901bff3b-6f85-4bbf-b068-a5b273866885' \
curl 'https://api.erpya.com/adempiere-api/core/get-business-partner?token=b6d0c7c7-0785-4302-bb20-94c1bd5488b2&language=es&uuid=9c5e65e6-8060-44bf-94ec-332578f7b5d7' \
-X POST \
-H 'content-type: application/json' \
-H 'accept: */*;charset=UTF-8'
-H 'accept: */*;charset=UTF-8'
```
8 changes: 4 additions & 4 deletions docs/guide/default-modules/adempiere-api/dashboard.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Get a complete list of allowed dashboards for current role or user.
#### Call example:

```bash
curl 'https://api.erpya.com/adempiere-api/dashboard/list-dashboards&token=xu3h02nd67yq0gapyj8x3kpqwzcy02om&language=es' \
curl 'https://api.erpya.com/adempiere-api/dashboard/list-dashboards?token=b6d0c7c7-0785-4302-bb20-94c1bd5488b2&language=es' \
-X POST \
-H 'content-type: application/json' \
-H 'accept: */*;charset=UTF-8' \
Expand Down Expand Up @@ -100,11 +100,11 @@ Get a list of recent items for current user.
#### Call example:

```bash
curl 'https://api.erpya.com/adempiere-api/dashboard/list-recent-items&token=xu3h02nd67yq0gapyj8x3kpqwzcy02om&language=es' \
curl 'https://api.erpya.com/adempiere-api/logs/list-recent-items?token=b6d0c7c7-0785-4302-bb20-94c1bd5488b2&language=es' \
-X POST \
-H 'content-type: application/json' \
-H 'accept: */*;charset=UTF-8' \
--data-binary '{"user_uuid":"901d9a74-6334-4309-aa8a-6d5b39d8ceb1","role_uuid":"f855ca25-07b2-4760-aec6-676db1a5cb19","current_session":true}'
--data-binary '{"user_uuid":"5adc9357-9158-40fe-86f1-4ce383586f5b","role_uuid":"f855ca25-07b2-4760-aec6-676db1a5cb19","current_session":true}'
```

#### Response Body:
Expand Down Expand Up @@ -180,7 +180,7 @@ Get a list of pending documents for user or role.
#### Call example:

```bash
curl 'https://api.erpya.com/adempiere-api/dashboard/list-pending-documents&token=xu3h02nd67yq0gapyj8x3kpqwzcy02om&language=es' \
curl 'https://api.erpya.com/adempiere-api/dashboard/list-pending-documents?token=b6d0c7c7-0785-4302-bb20-94c1bd5488b2&language=es' \
-X POST \
-H 'content-type: application/json' \
-H 'accept: */*;charset=UTF-8' \
Expand Down
62 changes: 38 additions & 24 deletions docs/guide/default-modules/adempiere-api/data.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ Crear Entidad. Se llama al guardar un nuevo registro dede la aplicación.Devuelv

```json
{
"token": "5339c283-dc77-4001-8315-22905596d6c0",
"token": "b6d0c7c7-0785-4302-bb20-94c1bd5488b2",
"language": "es"
}
```

#### Ejemplo de Llamada:

```bash
curl 'https://api.erpya.com/adempiere-api/data/create?token=336d6453-448c-49f9-b809-5431d0ebbc27&language=es' \
curl 'https://api.erpya.com/adempiere-api/data/create?token=b6d0c7c7-0785-4302-bb20-94c1bd5488b2&language=es' \
-X POST \
-H 'content-type: application/json' \
-H 'accept: */*;charset=UTF-8' \
Expand Down Expand Up @@ -112,19 +112,26 @@ Se utiliza para actualizar la entidad

```json
{
"token": "5339c283-dc77-4001-8315-22905596d6c0",
"token": "b6d0c7c7-0785-4302-bb20-94c1bd5488b2",
"language": "es"
}
```

#### Ejemplo de Llamada:

```bash
curl 'https://api.erpya.com/adempiere-api/data/update?token=98a713be-276c-4e45-8c5e-c364cc702153&language=es' \
-X POS \
-H 'content-type: application/json' \
-H 'accept: */*;charset=UTF-8'
--data-binary '{"table_name":"AD_RelationType","uuid": "c6d3de0c-ce12-4e40-938d-d2e34aa839ce","attributes":[{"key":"Name","value":"Service-Update"}]}'
curl --silent --location --request POST 'https://api.erpya.com/adempiere-api/data/update?language=en&token=b6d0c7c7-0785-4302-bb20-94c1bd5488b2' \
--header 'Content-Type: application/json' \
--data-raw '{
"table_name": "Test",
"uuid": "11466bf8-5524-4428-82d0-aa082611172c",
"attributes": [
{
"key": "Name",
"value": "test0"
}
]
}'
```

#### Cuerpo de Repuesta:
Expand Down Expand Up @@ -210,19 +217,21 @@ Elimina Entidad

```json
{
"token": "5339c283-dc77-4001-8315-22905596d6c0",
"token": "b6d0c7c7-0785-4302-bb20-94c1bd5488b2",
"language": "es"
}
```

#### Ejemplo de Llamada:

```bash
curl 'https://api.erpya.com/adempiere-api/data/delete?token=98a713be-276c-4e45-8c5e-c364cc702153&language=es' \
-X GET \
-H 'content-type: application/json' \
-H 'accept: */*;charset=UTF-8'
--data-binary '{"table_name":"AD_RelationType","uuid": "c6d3de0c-ce12-4e40-938d-d2e34aa839ce"}'
curl --silent --location --request POST 'https://api.erpya.com/adempiere-api/data/delete?language=en&token=b6d0c7c7-0785-4302-bb20-94c1bd5488b2' \
--header 'Content-Type: application/json' \
--data-raw '{
"table_name": "Test",
"id": 1000003,
"uuid": "11466bf8-5524-4428-82d0-aa082611172c"
}'
```

#### Cuerpo de Repuesta:
Expand Down Expand Up @@ -256,15 +265,15 @@ Entidad de retroceso (crear, actualizar, eliminar)

```json
{
"token": "5339c283-dc77-4001-8315-22905596d6c0",
"token": "b6d0c7c7-0785-4302-bb20-94c1bd5488b2",
"language": "es"
}
```

#### Ejemplo de Llamada:

```bash
curl 'https://api.erpya.com/adempiere-api/data/rollback-entity?token=98a713be-276c-4e45-8c5e-c364cc702153&language=es' \
curl 'https://api.erpya.com/adempiere-api/data/rollback-entity?token=b6d0c7c7-0785-4302-bb20-94c1bd5488b2&language=es' \
-X GET \
-H 'content-type: application/json' \
-H 'accept: */*;charset=UTF-8'
Expand Down Expand Up @@ -302,7 +311,7 @@ Obtener la entidad a partir del nombre de la tabla y el id o uuid del registro.

```json
{
"token": "5339c283-dc77-4001-8315-22905596d6c0",
"token": "b6d0c7c7-0785-4302-bb20-94c1bd5488b2",
"language": "es",
"table_name": "AD_Client",
"id": "1000000",
Expand All @@ -313,7 +322,7 @@ Obtener la entidad a partir del nombre de la tabla y el id o uuid del registro.
#### Ejemplo de Llamada:

```bash
curl 'https://api.erpya.com/adempiere-api/data/entity?token=5339c283-dc77-4001-8315-22905596d6c0&language=es&table_name=AD_Client&id=1000000&uuid=894a23a8-24e7-4ae1-a2e5-eda113607852' \
curl 'https://api.erpya.com/adempiere-api/data/entity?token=b6d0c7c7-0785-4302-bb20-94c1bd5488b2&language=es&table_name=AD_Client&id=1000000&uuid=894a23a8-24e7-4ae1-a2e5-eda113607852' \
-X GET \
-H 'content-type: application/json' \
-H 'accept: */*;charset=UTF-8'
Expand Down Expand Up @@ -420,19 +429,24 @@ Listar las Entidades.

```json
{
"token": "5339c283-dc77-4001-8315-22905596d6c0",
"token": "b6d0c7c7-0785-4302-bb20-94c1bd5488b2",
"language": "es"
}
```

#### Ejemplo de Llamada:

```bash
curl 'https://api.erpya.com/adempiere-api/data/list?token=5339c283-dc77-4001-8315-22905596d6c0&language=es' \
-X POS \
-H 'content-type: application/json' \
-H 'accept: */*;charset=UTF-8' \
--data-binary '{"table_name":"AD_RelationType","filters":[{"column_name":"UUID","value":"a4853f84-fb40-11e8-a479-7a0060f0aa01"}],"columns":[],"query":"SELECT AD_RelationType.*, (SELECT NVL(AD_Client.Name,'') FROM AD_Client WHERE AD_RelationType.AD_Client_ID=AD_Client.AD_Client_ID) AS \"DisplayColumn_AD_Client_ID\", (SELECT NVL(AD_Org.Name,'') FROM AD_Org WHERE AD_RelationType.AD_Org_ID=AD_Org.AD_Org_ID) AS \"DisplayColumn_AD_Org_ID\", Type_AD_Ref_List_Trl.Name AS \"DisplayColumn_Type\", AD_Reference_Source_ID_AD_Reference_Trl.Name AS \"DisplayColumn_AD_Reference_Source_ID\", Role_Source_AD_Ref_List_Trl.Name AS \"DisplayColumn_Role_Source\", AD_Reference_Target_ID_AD_Reference_Trl.Name AS \"DisplayColumn_AD_Reference_Target_ID\", Role_Target_AD_Ref_List_Trl.Name AS \"DisplayColumn_Role_Target\" FROM AD_RelationType AS AD_RelationType LEFT JOIN AD_Ref_List AS Type_AD_Ref_List ON(Type_AD_Ref_List.Value = AD_RelationType.Type AND Type_AD_Ref_List.AD_Reference_ID = 53332) LEFT JOIN AD_Ref_List_Trl AS Type_AD_Ref_List_Trl ON(Type_AD_Ref_List_Trl.AD_Ref_List_ID = Type_AD_Ref_List.AD_Ref_List_ID AND Type_AD_Ref_List_Trl.AD_Language = 'es_VE') LEFT JOIN AD_Reference AS AD_Reference_Source_ID_AD_Reference ON(AD_Reference_Source_ID_AD_Reference.AD_Reference_ID = AD_RelationType.AD_Reference_Source_ID) LEFT JOIN AD_Reference_Trl AS AD_Reference_Source_ID_AD_Reference_Trl ON(AD_Reference_Source_ID_AD_Reference_Trl.AD_Reference_ID = AD_Reference_Source_ID_AD_Reference.AD_Reference_ID AND AD_Reference_Source_ID_AD_Reference_Trl.AD_Language = 'es_VE') LEFT JOIN AD_Ref_List AS Role_Source_AD_Ref_List ON(Role_Source_AD_Ref_List.Value = AD_RelationType.Role_Source AND Role_Source_AD_Ref_List.AD_Reference_ID = 53331) LEFT JOIN AD_Ref_List_Trl AS Role_Source_AD_Ref_List_Trl ON(Role_Source_AD_Ref_List_Trl.AD_Ref_List_ID = Role_Source_AD_Ref_List.AD_Ref_List_ID AND Role_Source_AD_Ref_List_Trl.AD_Language = 'es_VE') LEFT JOIN AD_Reference AS AD_Reference_Target_ID_AD_Reference ON(AD_Reference_Target_ID_AD_Reference.AD_Reference_ID = AD_RelationType.AD_Reference_Target_ID) LEFT JOIN AD_Reference_Trl AS AD_Reference_Target_ID_AD_Reference_Trl ON(AD_Reference_Target_ID_AD_Reference_Trl.AD_Reference_ID = AD_Reference_Target_ID_AD_Reference.AD_Reference_ID AND AD_Reference_Target_ID_AD_Reference_Trl.AD_Language = 'es_VE') LEFT JOIN AD_Ref_List AS Role_Target_AD_Ref_List ON(Role_Target_AD_Ref_List.Value = AD_RelationType.Role_Target AND Role_Target_AD_Ref_List.AD_Reference_ID = 53331) LEFT JOIN AD_Ref_List_Trl AS Role_Target_AD_Ref_List_Trl ON(Role_Target_AD_Ref_List_Trl.AD_Ref_List_ID = Role_Target_AD_Ref_List.AD_Ref_List_ID AND Role_Target_AD_Ref_List_Trl.AD_Language = 'es_VE')","where_clause":"","order_by_clause":""}'
curl --silent --location --request POST 'https://api.erpya.com/adempiere-api/data/list?pageToken=5c9ab4f8-334a-4171-b324-4df37e23ebd2-1&token=b6d0c7c7-0785-4302-bb20-94c1bd5488b2&language=es' \
--header 'Content-Type: application/json' \
--data-raw '{
"table_name": "AD_Window",
"filters": [],
"columns": [],
"query": "SELECT AD_Window.*, (SELECT NVL(AD_Client.Name,'\'''\'') FROM AD_Client WHERE AD_Window.AD_Client_ID=AD_Client.AD_Client_ID) AS \"DisplayColumn_AD_Client_ID\", (SELECT NVL(AD_Org.Name,'\'''\'') FROM AD_Org WHERE AD_Window.AD_Org_ID=AD_Org.AD_Org_ID) AS \"DisplayColumn_AD_Org_ID\", WindowType_AD_Ref_List_Trl.Name AS \"DisplayColumn_WindowType\", (SELECT NVL(AD_Color.Name,'\'''\'') FROM AD_Color WHERE AD_Window.AD_Color_ID=AD_Color.AD_Color_ID) AS \"DisplayColumn_AD_Color_ID\", (SELECT NVL(AD_Image.Name,'\'''\'') FROM AD_Image WHERE AD_Window.AD_Image_ID=AD_Image.AD_Image_ID) AS \"DisplayColumn_AD_Image_ID\", EntityType_AD_EntityType.Name AS \"DisplayColumn_EntityType\", (SELECT NVL(AD_ContextInfo.Value,'\'''\'')||'\'' - '\''||NVL(AD_ContextInfo.Name,'\'''\'') FROM AD_ContextInfo WHERE AD_Window.AD_ContextInfo_ID=AD_ContextInfo.AD_ContextInfo_ID) AS \"DisplayColumn_AD_ContextInfo_ID\" FROM AD_Window AS AD_Window LEFT JOIN AD_Ref_List AS WindowType_AD_Ref_List ON(WindowType_AD_Ref_List.Value = AD_Window.WindowType AND WindowType_AD_Ref_List.AD_Reference_ID = 108) LEFT JOIN AD_Ref_List_Trl AS WindowType_AD_Ref_List_Trl ON(WindowType_AD_Ref_List_Trl.AD_Ref_List_ID = WindowType_AD_Ref_List.AD_Ref_List_ID AND WindowType_AD_Ref_List_Trl.AD_Language = '\''es_VE'\'') LEFT JOIN AD_EntityType AS EntityType_AD_EntityType ON(EntityType_AD_EntityType.EntityType = AD_Window.EntityType)",
"where_clause": "",
"order_by_clause": ""
}'
```

#### Cuerpo de Repuesta:
Expand Down
21 changes: 9 additions & 12 deletions docs/guide/default-modules/adempiere-api/dictionary.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ null
#### Call example:

```bash
curl 'https://api.erpya.com/adempiere-api/dictionary/window?token=81aedcd5-61f4-424c-8fec-5fb07d29a8eb&language=es&uuid=a52192bc-fb40-11e8-a479-7a0060f0aa01' \
curl 'https://api.erpya.com/adempiere-api/dictionary/window?token=b6d0c7c7-0785-4302-bb20-94c1bd5488b2&language=es&uuid=a52192bc-fb40-11e8-a479-7a0060f0aa01' \
-X GET \
-H 'content-type: application/json' \
-H 'accept: */*;charset=UTF-8'
Expand Down Expand Up @@ -171,10 +171,7 @@ null
#### Call example:

```bash
curl 'https://api.erpya.com/adempiere-api/dictionary/browser?token=81aedcd5-61f4-424c-8fec-5fb07d29a8eb&language=es&uuid=a52192bc-fb40-11e8-a479-7a0060f0aa01' \
-X GET \
-H 'content-type: application/json' \
-H 'accept: */*;charset=UTF-8'
curl --silent --location --request GET 'https://api.erpya.com/adempiere-api/dictionary/browser?uuid=91fa2410-12c9-11e9-865a-17caaf9b4956&token=b6d0c7c7-0785-4302-bb20-94c1bd5488b2&language=es'
```

#### Response Body:
Expand Down Expand Up @@ -344,10 +341,10 @@ null
#### Call example:

```bash
curl 'https://api.erpya.com/adempiere-api/dictionary/process?token=81aedcd5-61f4-424c-8fec-5fb07d29a8eb&language=es&uuid=8aaefbc2-fb40-11e8-a479-7a0060f0aa01' \
curl 'https://api.erpya.com/adempiere-api/dictionary/process?token=b6d0c7c7-0785-4302-bb20-94c1bd5488b2&language=es&uuid=8aaefbc2-fb40-11e8-a479-7a0060f0aa01' \
-X GET \
-H 'content-type: application/json' \
-H 'accept: */*;charset=UTF-8'
-H 'accept: */*;charset=UTF-8'
```

#### Response Body:
Expand Down Expand Up @@ -468,10 +465,10 @@ null
#### Call example:

```bash
curl 'https://api.erpya.com/adempiere-api/dictionary/form?token=81aedcd5-61f4-424c-8fec-5fb07d29a8eb&language=es&uuid=8e427700-fb40-11e8-a479-7a0060f0aa01' \
curl 'https://api.erpya.com/adempiere-api/dictionary/form?token=b6d0c7c7-0785-4302-bb20-94c1bd5488b2&language=es&uuid=8e427700-fb40-11e8-a479-7a0060f0aa01' \
-X GET \
-H 'content-type: application/json' \
-H 'accept: */*;charset=UTF-8'
-H 'accept: */*;charset=UTF-8'
```

#### Response Body:
Expand Down Expand Up @@ -516,7 +513,7 @@ null
#### Call example:

```bash
curl 'https://api.erpya.com/adempiere-api/dictionary/field?token=81aedcd5-61f4-424c-8fec-5fb07d29a8eb&language=es&uuid=81aedcd5-61f4-424c-8fec-5fb07d29a8eb' \
curl 'https://api.erpya.com/adempiere-api/dictionary/field?token=b6d0c7c7-0785-4302-bb20-94c1bd5488b2&language=es&uuid=b6d0c7c7-0785-4302-bb20-94c1bd5488b2' \
-X GET \
-H 'content-type: application/json' \
-H 'accept: */*;charset=UTF-8'
Expand Down Expand Up @@ -599,7 +596,7 @@ null
#### Call example:

```bash
curl 'https://api.erpya.com/adempiere-api/dictionary/validation?token=3c8f6231-bc02-4163-bc99-b19150d2d617&language=es&uuid=a4cac0ae-fb40-11e8-a479-7a0060f0aa01' \
curl 'https://api.erpya.com/adempiere-api/dictionary/validation?token=b6d0c7c7-0785-4302-bb20-94c1bd5488b2&language=es&uuid=a4cac0ae-fb40-11e8-a479-7a0060f0aa01' \
-X GET \
-H 'content-type: application/json' \
-H 'accept: */*;charset=UTF-8'
Expand Down Expand Up @@ -641,7 +638,7 @@ null
#### Call example:

```bash
curl 'https://api.erpya.com/adempiere-api/dictionary/reference?token=3c8f6231-bc02-4163-bc99-b19150d2d617&language=es&uuid=a47df90e-fb40-11e8-a479-7a0060f0aa01'' \
curl 'https://api.erpya.com/adempiere-api/dictionary/reference?token=b6d0c7c7-0785-4302-bb20-94c1bd5488b2&language=es&uuid=a47df90e-fb40-11e8-a479-7a0060f0aa01' \
-X GET \
-H 'content-type: application/json' \
-H 'accept: */*;charset=UTF-8'
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/default-modules/adempiere-api/img.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ null
curl 'https://api.erpya.com/adempiere-api/img?action=fit&width=100&height=100&url=4c374d54-0e21-4a2f-9e18-9b03b22b5d6c-chavo_crop1595979643620.jpg_1902800913.jpg' \
-X GET \
-H 'content-type: application/json' \
-H 'accept: */*;charset=UTF-8'
-H 'accept: */*;charset=UTF-8'
```

#### Response Body:
Expand Down
Loading

0 comments on commit 8eece62

Please sign in to comment.