Ir al final de los metadatos
Ir al inicio de los metadatos

Estás viendo una versión antigua de este contenido. Ve a la versión actual.

Comparar con el actual Ver historial de versiones

« Anterior Versión 4 Actual »

REST/MVC Path for Category definition
HTTP MethodPathDescriptionController Method

/rest/customers/Adds a new customer

addCustomer(customer: CustomerDTO)

Parameters:
  • customer: Customer json (Body)
/rest/customers/{customerId}Updates an existent customerupdateCustomer(customer: CustomerDTO, customerId: String)
Parameters:
  • customer: Customer json (Body)
  • customerId: Customer identifier (Path parameter)
/rest/customers/{customerId}Removes an existent customerremoveCustomer(customerId: String)
Parameters:
  • customerId: Customer identifier  (Path parameter)
/rest/customers/Search customers by criteria

findCustomersByCriteria(criteria: CustomerCriteria)

Parameters:
  • criteria: Criteria filter json (Body parameter)
  • Sin etiquetas