-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.http
More file actions
46 lines (44 loc) · 1.16 KB
/
Copy pathtest.http
File metadata and controls
46 lines (44 loc) · 1.16 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
POST https://prod-08.germanywestcentral.logic.azure.com:443/workflows/bffd16e9e8024defa2a4650332bd0eff/triggers/When_a_HTTP_request_is_received/paths/invoke?api-version=2016-10-01&sp=%2Ftriggers%2FWhen_a_HTTP_request_is_received%2Frun&sv=1.0&sig=Qd8ajqOvPkwrtPnry0Bdxg1MTABD0ZRtJTNuTskaf28
Content-Type: application/json
{
"orderDate": "2025-06-05T10:45:00Z",
"customer": {
"customerId": "CUST-98765",
"name": "Jane Doe",
"email": "jane.doe@example.com",
"phone": "+31-612345678"
},
"items": [
{
"productId": "SKU-12345",
"name": "Wireless Mouse",
"quantity": 2,
"unitPrice": 25.99,
"totalPrice": 51.98
},
{
"productId": "SKU-54321",
"name": "USB-C Hub",
"quantity": 1,
"unitPrice": 39.95,
"totalPrice": 39.95
}
],
"shipping": {
"address": {
"street": "Main Street 12",
"postalCode": "1234 AB",
"city": "Amsterdam",
"country": "Netherlands"
},
"method": "Standard",
"cost": 4.95
},
"payment": {
"method": "Credit Card",
"transactionId": "TXN-4567890",
"paid": true
},
"totalAmount": 96.88,
"status": "Processing"
}