DigiOffice API Services Services

<back to all web services

GeneratePowerPointDocument

Generate new or update a (corporate identity) document based on an existing document registration.

Requires Authentication
"use strict";
export class GeneratePowerPointDocumentResponse {
    /** @param {{DocumentID?:string}} [init] */
    constructor(init) { Object.assign(this, init) }
    /**
     * @type {string}
     * @description Contains the registration ID of the generated (corporate identity) document */
    DocumentID;
}
export class GeneratePowerPointDocument {
    /** @param {{RegisteredDocumentID?:string,RecreateDocument?:boolean,DocumentGeneratorDocumentID?:string,DataSourceEntityID?:string}} [init] */
    constructor(init) { Object.assign(this, init) }
    /**
     * @type {string}
     * @description ID of the current document registration */
    RegisteredDocumentID;
    /**
     * @type {boolean}
     * @description Recreate document */
    RecreateDocument;
    /**
     * @type {?string}
     * @description ID of the document generator configuration */
    DocumentGeneratorDocumentID;
    /**
     * @type {string}
     * @description ID of the entity (corresponding to the entityType configured at the DocumentGeneratorDocument) to use as the datasource. Leave blank to fall back on the current document registration. */
    DataSourceEntityID;
}

JavaScript GeneratePowerPointDocument DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv

HTTP + CSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /csv/reply/GeneratePowerPointDocument HTTP/1.1 
Host: test-do-services.klokgroep.nl 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

{"RegisteredDocumentID":"00000000-0000-0000-0000-000000000000","RecreateDocument":false,"DocumentGeneratorDocumentID":"00000000-0000-0000-0000-000000000000","DataSourceEntityID":"String"}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"DocumentID":"00000000-0000-0000-0000-000000000000"}