Skip to content

Instantly share code, notes, and snippets.

@mattneary
Created December 23, 2014 19:30
Show Gist options
  • Save mattneary/99cfeef743e0c41409ac to your computer and use it in GitHub Desktop.
Save mattneary/99cfeef743e0c41409ac to your computer and use it in GitHub Desktop.
#!/bin/bash
curl -s \
-d '{
"user": {
"email": "[email protected]",
"password": "password",
"password_confirmation": "password",
"profile_attributes": {
"gender": "m",
"name": "Matt Neary",
"age": 19,
"level": 1,
"location": "Columbus, OH"
}
}
}' \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "X-Api-Token: xSJ7U0kYhtUHBYhhE5SDnA" \
"http://practicegigs-staging.com/api/v1/users.json"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment