Get pdfDocument

Retrieve a PDF print-out of the corresponding document as binary content for Dynamics 365 Business Central.

Note

To generate a document in the supported local language, you must specify Accept-Language in the Request header, for example Accept-Language: nl-NL for Dutch.

HTTP request

Replace the URL prefix for Dynamics 365 Business Central depending on environment following the guideline. The following example gets a link to the content of the PDF:

GET businesscentralPrefix/api/beta/companies({id})/salesQuote({quoteId})/pdfDocument

Request headers

Header Value
Authorization Bearer {token}. Required.

Request body

Do not supply a request body for this method.

Response

If successful, this method returns a 200 OK response code and a link to the PDF document in the response body.

Example

Request Here is an example of the request.

GET https://{businesscentralPrefix}/api/beta/companies({id})/salesQuotes({quoteId})/pdfDocument

Response Here is an example of the response.

Note

The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.

{

    "@odata.context":"https://api.businesscentral.dynamics.com/v1.0/api/beta/$metadata#companies('CRONUS%20International%20Ltd.')/salesQuotes(94913756-80e9-47bc-995a-048a655b8cdd)/pdfDocument",
    "value":
    [
        {
            "@odata.etag":"W/\"JzQ0O0tQNUdjaUtZcU8rcUNCQTdXOUxIZVEwalA0clhjSmlXU1pqWjQ4RFczd2s9MTswMDsn\"",
            "id":"94913756-80e9-47bc-995a-048a655b8cdd",
            "content@odata.mediaReadLink":"https:// api.businesscentral.dynamics.com/v1.0/pi/beta/companies(name='CRONUS%20International%20Ltd.')/salesQuotes(94913756-80e9-47bc-995a-048a655b8cdd)/pdfDocument(94913756-80e9-47bc-995a-048a655b8cdd)/content"
        }
    ]
}

HTTP request

Replace the URL prefix for Dynamics 365 Business Central depending on environment following the guideline. The following example gets the actual PDF document: GET businesscentralPrefix/api/beta/companies({companyid})/salesQuotes({quoteId})/pdfDocument({invoiceid})/content

Request headers

Header Value
Authorization Bearer {token}. Required.

Request body

Do not supply a request body for this method.

Response

If successful, this method returns a 200 OK response code and the PDF document in the response body.

Example

Request Here is an example of the request.

GET https://{businesscentralPrefix}/api/beta/companies({companyid})/salesQuotes({quoteId})/pdfDocument({id})/content

Response The PDF document in binary format.

See also

Tips for working with the APIs
Enabling the APIs for Dynamics 365 Business Central
Endpoints for the APIs
Error Codes