Created
January 26, 2012 08:33
-
-
Save jimmyjacobson/1681767 to your computer and use it in GitHub Desktop.
Error on Event Creation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -d "startDate=1234" "http://localhost:3000/event" | |
{ | |
"type": "ValidationError", | |
"msg": "Event creation failed", | |
"errors": [ | |
{ | |
"msg": "missing parameter", | |
"parameter": "endDate" | |
}, | |
{ | |
"msg": "Requires ISO8601 Format", | |
"parameter": "startDate" | |
}, | |
{ | |
"msg": "missing parameter", | |
"parameter": "location" | |
}, | |
{ | |
"msg": "missing parameter", | |
"parameter": "description" | |
}, | |
{ | |
"msg": "missing parameter", | |
"parameter": "name" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment