diff --git a/README.md b/README.md index 4b5dd87..06edfc8 100644 --- a/README.md +++ b/README.md @@ -24,8 +24,10 @@ docker pull securitybunker/databunker docker run -p 3000:3000 -d --rm --name dbunker securitybunker/databunker demo # Create user records -curl -s http://localhost:3000/v1/user -X POST -H "X-Bunker-Token: DEMO" -H "Content-Type: application/json" \ --d '{"first":"John","last":"Doe","login":"john","email":"user@gmail.com"}' +curl -s http://localhost:3000/v1/user -X POST \ + -H "X-Bunker-Token: DEMO" \ + -H "Content-Type: application/json" \ + -d '{"first":"John","last":"Doe","login":"john","email":"user@gmail.com"}' # Get user by login, email, phone, or token curl -s -H "X-Bunker-Token: DEMO" -X GET http://localhost:3000/v1/user/login/john