Update Record
Updates a record for application using record id:
URL : /api/v1/app/{app_id}/record/{record_id}
Method : PUT
Parameters
access_token
(required, header parameter)
Send this as header – e.g.“Authorization: Bearer access_token”
app_id
(required, path parameter)
Application Id App for where the record is present
record_id
(required, path parameter)
ID of the record you want to fetch
Sample Request
curl -H "Authorization: Bearer {access_token}" -X PUT https://my.worksmart.app/api/v1/app/1234/record/1 -d 'f1=New Updated Data'
Last updated