{ "title": "Submit a Conversion Job", "summary": "Start a conversion job for an uploaded file, a remote URL, or an S3 bucket.", "request": { "method": "POST", "url": "https://api.zamzar.com/v1/jobs", "headers": { "Authorization": "Bearer YOUR_API_KEY", "Content-Type": "multipart/form-data" }, "body": { "source_file": "123456", "target_format": "pdf" } }, "response": { "status": 201, "body": { "id": 1, "key": "apikey", "status": "initialising", "sandbox": false, "created_at": "2022-01-01T14:15:22Z", "finished_at": null, "source_file": { "id": 123456, "name": "document.docx", "size": 204800, "format": "docx", "created_at": "2022-01-01T14:00:00Z" }, "target_files": [], "target_format": "pdf", "credit_cost": 1 } } }