Employees

Update row

PUT
/api/public/v3/employees/{employee_id}/tables/{table_id}/rows/{id}

Path Parameters

employee_id*integer
id*integer
table_id*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X PUT "https://example.com/api/public/v3/employees/0/tables/string/rows/0" \  -H "Content-Type: application/json" \  -d '{    "notes": "string"  }'
{  "data": {    "id": 0  }}