API Documentation

⌘K
POST/api/1/excel-addin/batch

Batch Functions

Executes multiple Excel custom functions in a single request, ideal for populating spreadsheet ranges

Request Body

required
application/json
object
requestsarray
Array of:
object
idstring

Unique request ID (cell reference)

functionstring

Function name

argsarray
Array of:

Responses

Was this helpful?
Request
curl -X POST \
  'https://api.eulerpool.com/api/1/excel-addin/batch' \
  -H 'Accept: application/json' \
  -H 'Content-Type: application/json'
200 Response
{
  "responses": {
    "id": "string",
    "value": null,
    "error": "string"
  }
}