POST
/
v2
/
export
/
google-docs
curl --request POST \
  --url https://api.usecloudpress.com/v2/export/google-docs \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form 'options={
  "autoMapDocumentProperties": true,
  "conversion": {
    "destination": "<any>",
    "source": "<any>"
  },
  "destination": 123,
  "destinationReference": "<string>",
  "fieldMappings": {},
  "webhooks": [
    "<string>"
  ]
}'
{
  "id": "<string>",
  "outputDocuments": [
    {
      "links": [
        {
          "description": "<string>",
          "title": "<string>",
          "url": "<string>"
        }
      ],
      "title": "<string>"
    }
  ],
  "queuedAt": "2023-11-07T05:31:56Z",
  "status": "queued",
  "summary": "<string>",
  "type": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

multipart/form-data

Google Doc Export request

Response

200
application/json
Success

The response is of type object.