diff --git a/rest/index.php b/rest/index.php
index 4994e5d6859ceae2a07fa3fcbd651ad990fbb4c4..bf831b1aef86ad06fe0d80dbf071f1cf6114818a 100755
--- a/rest/index.php
+++ b/rest/index.php
@@ -368,6 +368,7 @@ $app->get('/categories', \Resource\controllers\ResController::class . ':getCateg
 $app->get('/resources/{resId}/users/{userId}/isDestinationChanging', \Action\controllers\PreProcessActionController::class . ':isDestinationChanging');
 $app->get('/resources/{resId}/users/{userId}/groups/{groupId}/baskets/{basketId}/processingData', \Resource\controllers\ResController::class . ':getProcessingData');
 $app->post('/resources/exportData', \Resource\controllers\ResourceDataExportController::class . ':generateFile');
+$app->put('/resources/{resId}/setInIntegrations', \Resource\controllers\ResController::class . ':setInIntegrations');
 
 //ResourcesList
 $app->get('/resourcesList/users/{userId}/groups/{groupId}/baskets/{basketId}', \Resource\controllers\ResourceListController::class . ':get');
diff --git a/src/app/resource/controllers/ResController.php b/src/app/resource/controllers/ResController.php
index f8e629e65bdb539338e94708d38fbd43b7b5d829..3045b5e7452e12793246bffd843168478418c657 100755
--- a/src/app/resource/controllers/ResController.php
+++ b/src/app/resource/controllers/ResController.php
@@ -713,6 +713,38 @@ class ResController
         return $response->withJson(['success' => 'success']);
     }
 
+    public static function setInIntegrations(Request $request, Response $response, array $args)
+    {
+        if (!Validator::intVal()->validate($args['resId']) || !ResController::hasRightByResId(['resId' => [$args['resId']], 'userId' => $GLOBALS['id']])) {
+            return $response->withStatus(403)->withJson(['errors' => 'Document out of perimeter']);
+        }
+
+        $body = $request->getParsedBody();
+
+        if (empty($body['integrations'])) {
+            return $response->withStatus(403)->withJson(['errors' => 'Query param integrations is missing']);
+        }
+
+        $resource = ResModel::getById(['resId' => $args['resId'], 'select' => ['integrations']]);
+        if (empty($resource)) {
+            return $response->withStatus(400)->withJson(['errors' => 'Resource not found']);
+        }
+        $integrations = json_decode($resource['integrations'], true);
+
+        $integrations['inSignatureBook'] = $body['integrations']['inSignatureBook'] ?? $integrations['inSignatureBook'];
+        $integrations['inShipping'] = $body['integrations']['inShipping'] ?? $integrations['inShipping'];
+
+        ResModel::update([
+            'set' => [
+                'integrations' => json_encode($integrations)
+            ],
+            'where' => ['res_id = ?'],
+            'data'  => [$args['resId']]
+        ]);
+
+        return $response->withStatus(204);
+    }
+
     public static function getEncodedDocument(array $aArgs)
     {
         ValidatorModel::notEmpty($aArgs, ['resId']);