Skip to content

Instantly share code, notes, and snippets.

@kuy
Created July 23, 2017 15:32
Show Gist options
  • Select an option

  • Save kuy/9c64c98be1ee2afba9ad450300311885 to your computer and use it in GitHub Desktop.

Select an option

Save kuy/9c64c98be1ee2afba9ad450300311885 to your computer and use it in GitHub Desktop.
Answers
curl -XPUT 'localhost:9200/answers/user/1?pretty' -H 'Content-Type: application/json' -d'
{
    "user" : 1,
    "choice" : [ "A", "B", "C" ]
}
'
curl -XPUT 'localhost:9200/answers/user/2?pretty' -H 'Content-Type: application/json' -d'
{
    "user" : 2,
    "choice" : [ "B", "C" ]
}
'
curl -XPUT 'localhost:9200/answers/user/3?pretty' -H 'Content-Type: application/json' -d'
{
    "user" : 3,
    "choice" : [ "B" ]
}
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment