Bulk Request API

Body·
required
application/json

Bulk API request

  • requests
    Type: array object[] · Requests 1…100
    required

    An array of request objects

    Engine API request

Responses
  • application/json
  • application/json
Request Example for post/v1/bulk
curl 'https://api.askmiso.com/v1/bulk?api_key=YOUR_SECRET_TOKEN' \
  --request POST \
  --header 'Content-Type: application/json' \
  --data '{
  "requests": [
    {
      "api_name": "",
      "body": {}
    }
  ]
}'
{
  "data": [
    {
      "error": true,
      "status_code": 1,
      "body": {}
    }
  ],
  "errors": true
}