-
Notifications
You must be signed in to change notification settings - Fork 19
/
dev_summit_cdc_debezium.postman_collection.json
93 lines (93 loc) · 1.92 KB
/
dev_summit_cdc_debezium.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"info": {
"_postman_id": "93eb4090-d61f-4879-bc00-d1ffd3e1bd79",
"name": "Dev_Summit_CDC_Debezium",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "Register User",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "",
"type": "string"
}
]
},
"method": "POST",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"type": "text",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": " \n \n {\n \"FirstName\" :\"Suat\",\n \"LastName\" :\"Kose\",\n \"Email\" :\"suat@kose.com\",\n \"Password\": \"qweryt\"\n }"
},
"url": {
"raw": "http://localhost:5001/api/users",
"protocol": "http",
"host": [
"localhost"
],
"port": "5001",
"path": [
"api",
"users"
]
}
},
"response": []
},
{
"name": "Update Customer",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "",
"type": "string"
}
]
},
"method": "PUT",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"type": "text",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"FirstName\":\"Suat updated\",\n \"LastName\":\"Kose updated\",\n\t\"Address\": \"Uskudar\",\n\t\"PhoneNumber\":\"5381234567\",\n \"BirthDate\": \"1989-06-09\",\n \"Gender\": \"Male\"\n}"
},
"url": {
"raw": "http://localhost:5005/api/customers/suat@kose.com",
"protocol": "http",
"host": [
"localhost"
],
"port": "5005",
"path": [
"api",
"customers",
"suat@kose.com"
]
}
},
"response": []
}
],
"protocolProfileBehavior": {}
}