Employees

Create row

POST
/api/public/v3/employees/{employee_id}/tables/{table_id}/rows

Path Parameters

employee_id*integer
table_id*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

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