Employees

Create document

POST
/api/public/v3/employees/{employee_id}/documents

Path Parameters

employee_id*integer

Request Body

application/x-www-form-urlencoded

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://example.com/api/public/v3/employees/0/documents" \  -H "Content-Type: application/x-www-form-urlencoded" \  -d 'url=string&document_folder_id=string&name=string'
{  "data": {    "id": 0,    "name": "string",    "type": "string",    "url": "string",    "document_folder": {      "id": 0,      "name": "string",      "description": null,      "created_at": "string",      "updated_at": "string"    },    "created_at": "string",    "updated_at": "string"  }}