Skip to main content

Notifications

Power Pages - General Discussions
Unanswered

How to execute batch webapi requests on power pages?

Posted on by 14
Hello everyone,
according to information on this page Execute batch operations using the Web API (Microsoft Dataverse) - Power Apps | Microsoft Learn I tried to execute a batch request on power pages but I only get "406 (Not Acceptable)" error message. Could you please check if there is anything wrong with my code? Or how else can I execute batch requests?

The code to execute the api request:
 
fetch(`/api/data/v9.2/$batch`, {
        method: 'POST',
        headers: {
          'OData-MaxVersion': '4.0',
          'OData-Version': '4.0',
          'Content-Type': `multipart/mixed; boundary="batch_8a23z8"`,
          'Accept': 'application/json',
          'If-None-Match': 'null',
        },
        body: batchdata,
      })
        .then(response => response.json())
        .then(data => {
          console.log('Batch request success:', data);
        })
        .catch(error => {
          console.error('Batch request error:', error);
          // Log the detailed error response if available
            if (error.responseText) {
                console.error("Server response:", error.responseText);
            }
        });
 
The test value in "batchdata" variable (I tried to type it in as text but it causes error when I update post):
 
 
Thank you for your help in advance!
Categories:

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

September 2024 Newsletter…

September 2024 Community Newsletter…

Community Update Sept 16…

Power Platform Community Update…

Welcome to the new Power Platform Community!…

We are excited to announce our new Copilot Cookbook Gallery in the Community…

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 141,122

#2
RandyHayes Profile Picture

RandyHayes 76,308

#3
Pstork1 Profile Picture

Pstork1 63,414

Leaderboard

Featured topics