This is an automated email from the ASF dual-hosted git repository.
shuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/unomi.git
The following commit(s) were added to refs/heads/master by this push:
new 481325c fix typo in recipes
new c1c217c Merge pull request #100 from pragnesh/docfix
481325c is described below
commit 481325c1f67bed9053ba31852ea0f909854d7b31
Author: pragnesh <[email protected]>
AuthorDate: Wed Sep 25 12:27:45 2019 +0530
fix typo in recipes
---
manual/src/main/asciidoc/recipes.adoc | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/manual/src/main/asciidoc/recipes.adoc
b/manual/src/main/asciidoc/recipes.adoc
index 84d8c26..165c8b7 100644
--- a/manual/src/main/asciidoc/recipes.adoc
+++ b/manual/src/main/asciidoc/recipes.adoc
@@ -166,7 +166,7 @@ curl -X POST http://localhost:8181/eventcollector \
"target":{
"itemType":"form",
"scope":"example",
- "itemId":"contactForm",
+ "itemId":"contactForm"
},
"properties" : {
"firstName" : "John",
@@ -187,7 +187,7 @@ that looks something like this (and
https://unomi.apache.org/rest-api-doc/#17681
[source]
----
-curl -X POST http://localhost:8181/cxs/event/search \
+curl -X POST http://localhost:8181/cxs/events/search \
--user karaf:karaf \
-H "Content-Type: application/json" \
-d @- <<'EOF'
@@ -257,7 +257,7 @@ structure. Here's an example of a profile search with a
Query object:
[source]
----
-curl -X POST http://localhost:8181/cxs/rules \
+curl -X POST http://localhost:8181/cxs/profiles/search \
--user karaf:karaf \
-H "Content-Type: application/json" \
-d @- <<'EOF'
@@ -284,7 +284,7 @@ curl -X POST http://localhost:8181/cxs/rules \
"propertyName": "properties.lastName",
"comparisonOperator": "exists"
}
- },
+ }
]
}
}