-
Notifications
You must be signed in to change notification settings - Fork 214
Expand file tree
/
Copy pathpublish_domain_events.http
More file actions
62 lines (57 loc) · 1.21 KB
/
publish_domain_events.http
File metadata and controls
62 lines (57 loc) · 1.21 KB
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
POST http://localhost:8030/domain-events
Content-Type: application/json
{
"eventName": "course.created",
"eventRaw": {
"data": {
"id": "{{$random.uuid}}",
"type": "course.created",
"occurred_on": "2023-11-14 10:00:00",
"attributes": {
"id": "c3a11f1d-512e-420b-aeae-e687a3c449aa",
"name": "Demo course",
"duration": "2 days"
}
},
"meta": {
}
}
}
###
POST http://localhost:8030/domain-events
Content-Type: application/json
{
"eventName": "course.renamed",
"eventRaw": {
"data": {
"id": "{{$random.uuid}}",
"type": "course.renamed",
"occurred_on": "2023-11-14 10:00:00",
"attributes": {
"id": "7b081a3e-f90e-4efe-a3a5-81e853e89c8b",
"name": "Este es el nombre bueno"
}
},
"meta": {
}
}
}
###
POST http://localhost:8030/domain-events
Content-Type: application/json
{
"eventName": "course.renamed",
"eventRaw": {
"data": {
"id": "{{$random.uuid}}",
"type": "course.renamed",
"occurred_on": "2022-11-14 10:00:00",
"attributes": {
"id": "7b081a3e-f90e-4efe-a3a5-81e853e89c8b",
"name": "Este es el nombre malo"
}
},
"meta": {
}
}
}