Zamzar · Example Payload

Upload File

File ConversionDocumentsVideoAudioImagesCADREST API

Upload File is an example object payload from Zamzar, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

titlesummaryrequestresponse

Example Payload

Raw ↑
{
  "title": "Upload a File",
  "summary": "Upload a local file to Zamzar for use as input to a conversion job.",
  "request": {
    "method": "POST",
    "url": "https://api.zamzar.com/v1/files",
    "headers": {
      "Authorization": "Bearer YOUR_API_KEY",
      "Content-Type": "multipart/form-data"
    },
    "body": {
      "content": "<binary file data>",
      "name": "document.docx"
    }
  },
  "response": {
    "status": 201,
    "body": {
      "id": 123456,
      "key": "apikey",
      "name": "document.docx",
      "size": 204800,
      "format": "docx",
      "created_at": "2022-01-01T14:00:00Z"
    }
  }
}