Update Store

PUT /stores/{externalStoreID}

Update a specific store using externalStoreID.

Path parameters

  • externalStoreID string Required

    External Store ID

Body Required

  • name string

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • error string
    • message string
    • statusCode integer
  • default

    All errors will return the same object with a describing code & message

    Hide response attributes Show response attributes object
    • error string
    • message string
    • statusCode integer
PUT /stores/{externalStoreID}
curl \
 --request PUT 'https://api.maddenanalytics.com/v2/api/stores/{externalStoreID}' \
 --data '{"name":"string"}'
Request examples
{
  "name": "string"
}
Response examples (200)
{
  "error": "Error Type (if any)",
  "message": "Message describing the error",
  "statusCode": 400
}
Response examples (default)
{
  "error": "Error Type (if any)",
  "message": "Message describing the error",
  "statusCode": 400
}