Skip to main content
POST
/
v1
/
bulk
Bulk Request API
curl --request POST \
  --url 'https://api.askmiso.com/v1/bulk?api_key=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "requests": [
    {
      "api_name": "<string>",
      "body": {}
    }
  ]
}
'
{
  "data": [
    {
      "error": true,
      "status_code": 123,
      "body": {}
    }
  ],
  "errors": true
}

Authorizations

api_key
string
query
required

Your secret API key is used to access every Miso API endpoint. You should secure this key and only use it on a backend server. Never leave this key in your client-side JavaScript code. If the private key is compromised, you can revoke it in Dojo and get a new one.

Specify your secret key in the api_key query parameter. For example:

POST /v1/users?api_key=039c501ac8dfcac91c6f05601cee876e1cc07e17

Body

application/json

Bulk API request

requests
EngineAPIRequest · object[]
required

An array of request objects

Required array length: 1 - 100 elements

Response

Successful Response

Bulk API response

data
BulkIndividualResponse · object[]
required

The bulk request results

errors
boolean
required

Whether there is any errors in the responses