Create Document
Creates a new document. If no `content` is provided for a RESUME or COVER_LETTER, it is auto-seeded from the user's MasterProfile (when one exists). Free-tier users are limited to 1 active document per type; upgrading removes that limit.
Your personal API key — vw_ followed by 64 hex characters. The same key is also accepted
as Authorization: Bearer vw_....
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
application/json
curl -X POST "https://example.com/api/v1/documents" \ -H "Content-Type: application/json" \ -d '{ "type": "RESUME", "title": "My Resume" }'{ "success": true, "message": "string", "data": { "id": "string", "userId": "string", "type": "RESUME", "title": "string", "slug": "string", "tags": [ "string" ], "content": {}, "metadata": {}, "templateId": "modern", "schemaVersion": 0, "revision": 0, "visibility": "PRIVATE", "lastSyncedAt": "2019-08-24T14:15:22Z", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "deletedAt": "2019-08-24T14:15:22Z" }}