Request |
Supported |
Get All Sections from a Document |
✅ |
Get a Specific Section |
✅ |
Delete Section |
✅ |
Get Textshot |
✅ |
use CodebarAg\DocuWare\Requests\Documents\Sections\GetAllSectionsFromADocument;
$sections = $connector->send(new GetAllSectionsFromADocument(
$fileCabinetId,
$documentId
))->dto();
use CodebarAg\DocuWare\Requests\Documents\Sections\GetASpecificSection;
$section = $connector->send(new GetASpecificSection(
$fileCabinetId,
$sectionsId
))->dto();
use CodebarAg\DocuWare\Requests\Documents\Sections\DeleteSection;
$deleted = $connector->send(new DeleteSection(
$fileCabinetId,
$sectionId
))->dto();
use CodebarAg\DocuWare\Requests\Documents\Sections\GetTextshot;
$deleted = $connector->send(new GetTextshot(
$fileCabinetId,
$sectionId
))->dto();