blob: faeb8fe596be0a3158d4218245c2d8e56cfe8582 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
curl -i \
--header "Content-Type: application/json" \
--request POST \
--data '{
"target":"abc",
"message":"xyz xyz"
}' \
https://irker.open-infrastructure.net/test.py
|