Skip to main content
Participant
June 9, 2021
Question

INVALID_MULTIPART_REQUEST

  • June 9, 2021
  • 1 reply
  • 1045 views
$response = Http::withHeaders([
'Authorization' => 'Bearer XYZ',
'X-API-Key' => 'ABC123',
'Content-Type' => 'multipart/form-data',
])->post('https://cpf-ue1.adobe.io/ops/:create', $data);

 

In Laravel i'm trying the endpoint to create a PDF. I use the example data from the document services api documentation: https://documentcloud.adobe.com/document-services/index.html#post-documentGeneration

 

{
"cpf:engine": {
"repo:assetId": "urn:aaid:cpf:Service-52d5db6097ed436ebb96f13a4c7bf8fb"
},
"cpf:inputs": {
"documentIn": {
"dc:format": "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
"cpf:location": "InputFile0"
},
"params": {
"cpf:inline": {
"outputFormat": "pdf",
"jsonDataForMerge": {
"customerName": "Kane Miller",
"customerVisits": 100,
"itemsBought": [
{
"name": "Sprays",
"quantity": 50,
"amount": 100
},
{
"name": "Chemicals",
"quantity": 100,
"amount": 200
}
],
"totalAmount": 300,
"previousBalance": 50,
"lastThreeBillings": [
100,
200,
300
],
"photograph": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mP88h8AAu0B9XNPCQQAAAAASUVORK5CYII="
}
}
}
},
"cpf:outputs": {
"documentOut": {
"dc:format": "application/pdf",
"cpf:location": "multipartLabel"
}
}
}

 

I get the following reply:

 

array:5 [  "requestId" => "fmbhttWQ9VUrmMYuuz2sMjvc28CclxA1"
  "type" => "Bad Request"
  "title" => "Not a multipart request. Aborting."
  "status" => 400
  "report" => "{"error_code":"INVALID_MULTIPART_REQUEST"}"]

 

What's wrong here?

This topic has been closed for replies.

1 reply

Participating Frequently
June 30, 2021

Hi @agence rosseelr32959105,

 

Thanks a lot for trying out our Product and providing for your valudable inputs. To ease out the "Getting started" with our APIs, we have captured Template postman collection with each API in the documentation  https://documentcloud.adobe.com/document-services/index.html.

The $data needs to be a multipart object (Please refer Form Parameters section inside API definition for POST documentGeneration endpoint) -

1. contentAnalyserRequests - containing the JSON schema you have defined above.

2. InputFile0 - The docx file part that is to be converted to PDF.

 

Alternatively, please try out our Node JS SDK interface which eases out the process of document generation even further -

Samples - https://github.com/adobe/pdfservices-node-sdk-samples

Sample code for reference - https://github.com/adobe/pdfservices-node-sdk-samples/blob/master/src/documentmerge/merge-document-to-pdf.js

SDK - https://www.npmjs.com/package/@adobe/pdfservices-node-sdk

 

Hope this helps.

Participant
June 30, 2021
Belinda Beasley