From 31e42ef6cd988a82d7a6dd791d3cee42fab93ee7 Mon Sep 17 00:00:00 2001 From: Debora Crescenzo Date: Mon, 2 Jun 2025 08:24:06 +0100 Subject: [PATCH] MT#62025 Add multipart/form-data to api/faxes req NGCP-Flow: mr11.5 Change-Id: Ie8ef2353b1477a5ef89c028bb5cd41d6ee8a9f9e (cherry picked from commit 9255b70d33321fe7994fe2630f41fa0f6c675056) --- src/api/communication.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/api/communication.js b/src/api/communication.js index f3430ae3..6d0ef6d5 100644 --- a/src/api/communication.js +++ b/src/api/communication.js @@ -12,6 +12,7 @@ export async function createFax (options) { } return await post({ resource: 'faxes', + headers: { 'Content-Type': 'multipart/form-data' }, body: formData }) }