¿En qué podemos ayudarte?
< Todos los temas
Imprimir

UpdateData (method)

Updates the information stored in the LisfOfData parameter.


Comments

Returns a list containing the information added.


Definition


JSON

/json/UpdateData/{Token}/{TableName}


Using POST to send list of data in DataField format


Parameters

ParameterDescription
TokenAuthentication code, see more in GetToken (method)
ListOfDataA list containing the fields and values you want to update


Example JSON

http://test.aliquosoftware.net/aliquoserver/api.svc/json/UpdateData/_PutTokenHere_/Clientes

[
   {
      "Field": "codigo",
      "Value": "c01",
      "IsKey": "1"
   },
   {
      "Field": "nombre",
      "Value": "new name customer01",
      "IsKey": "0"
   }
]
Tabla de contenidos