Create Stores

POST /v1/stores

Create Stores for an account. Can be done in batch.

Body Required

Responses

  • 200

    OK

    Hide response attribute Show response attribute object
  • All errors will return the same object with a describing code & message

    Hide response attributes Show response attributes object
POST /v1/stores
curl \
 -X POST https://ma-api.maddenanalytics.com/v1/stores \
 -H "Authorization: $API_KEY" \
 -d '[{"name":"string"}]'
Request example
[
  {
    "name": "string"
  }
]
Response examples (200)
[
  {
    "name": "string"
  }
]
Response examples (default)
{
  "error": "Error Type (if any)",
  "message": "Message describing the error",
  "statusCode": 400
}