api/v1/stores/create
POST /api/v1/stores
Status: 422
Body
// No request body necessary.
Headers:
'Access-Control-Allow-Origin': '"*"'
'Access-Control-Allow-Credentials': '"true"'
'Access-Control-Allow-Methods': '"GET, POST, PUT, DELETE, OPTIONS"'
'Access-Control-Allow-Headers': '"x-requested-with, x-requested-by, Authorization"'
'Content-Type': '"application/json; charset=utf-8"'
Body
{
"errors": {
"name": [
"can't be blank"
],
"street": [
"can't be blank"
],
"city": [
"can't be blank"
],
"state": [
"can't be blank"
],
"postal_code": [
"can't be blank"
]
}
}