-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClerezza Signal.postman_collection.json
62 lines (62 loc) · 1.3 KB
/
Clerezza Signal.postman_collection.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"info": {
"_postman_id": "4db3a595-2813-4082-aa3f-c6eb5d13b63c",
"name": "Clerezza Signal",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "POST Messages",
"protocolProfileBehavior": {
"disabledSystemHeaders": {}
},
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\r\n \"Person\": {\r\n \"username\": \"testuser\"\r\n },\r\n \"Message\": {\r\n \"text\": \"Test Message\",\r\n \"timestamp\": \"1629474568\"\r\n },\r\n \"Conversation\": {\r\n \"conversationName\": \"TestConversation\"\r\n }\r\n}"
},
"url": {
"raw": "http://localhost:8080/signal/messages",
"protocol": "http",
"host": [
"localhost"
],
"port": "8080",
"path": [
"signal",
"messages"
]
}
},
"response": []
},
{
"name": "GET Graph",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "http://localhost:8080/signal/messages",
"protocol": "http",
"host": [
"localhost"
],
"port": "8080",
"path": [
"signal",
"messages"
]
}
},
"response": []
}
]
}