POST api/OnOffice/CreatePdf

Request Information

URI Parameters

None.

Body Parameters

OfficeEntry
NameDescriptionTypeAdditional information
PathWord

string

None.

PathPdf

string

None.

NameFile

string

None.

FileWord

Collection of byte

None.

FilePdf

Collection of byte

None.

Request Formats

application/json, text/json

Sample:
{
  "PathWord": "sample string 1",
  "PathPdf": "sample string 2",
  "NameFile": "sample string 3",
  "FileWord": "QEA=",
  "FilePdf": "QEA="
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

OfficeResponse
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

Code

integer

None.

FilePdf

Collection of byte

None.

FileWord

Collection of byte

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Message": "sample string 2",
  "Code": 3,
  "FilePdf": "QEA=",
  "FileWord": "QEA="
}