-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapi-docs.yaml
More file actions
375 lines (375 loc) · 11.8 KB
/
Copy pathapi-docs.yaml
File metadata and controls
375 lines (375 loc) · 11.8 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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
openapi: 3.0.1
info:
title: OpenAPI definition
version: v0
servers:
- url: http://localhost:8080
description: Generated server url
tags:
- name: Carbon Footprint Calculation
description: "Calculates the carbon footprint for a given flight based on real-time\
\ Salesforce data, including checked-in passengers."
- name: Finance Agreement Calculation
description: "Calculates finance agreements for car purchases based on valuation,\
\ credit status, and business margins."
- name: Shipping Calculation
description: Calculates the shipping options for a product given external data.
paths:
/api/social/renderCard:
post:
tags:
- Services for Managing Social Cards for Marketing Campaigns
summary: Renders a custom social card for marketing campaigns.
operationId: renderCard
x-sfdc:
heroku:
authorization:
connectedApp: 'ActionsServiceConnectedApp'
permissionSet: 'ActionsServicePermissions'
requestBody:
description: Use the line1 and line2 properites to customize
content:
application/json:
schema:
$ref: "#/components/schemas/RenderCardRequest"
required: true
responses:
"200":
description: OK
content:
'*/*':
schema:
$ref: "#/components/schemas/RenderCardResponse"
/api/shipping/calculateShippingOptions:
post:
tags:
- Shipping Calculation
summary: Calculate Shipping Options
description: Calculates the shipping options for a product given external data.
operationId: calculateShippingOptions
x-sfdc:
heroku:
authorization:
connectedApp: 'ActionsServiceConnectedApp'
permissionSet: 'ActionsServicePermissions'
requestBody:
description: "Request to determine shipping options for a product, including\
\ the Salesforce record ID of the product being shipped."
content:
application/json:
schema:
$ref: "#/components/schemas/CalculateShippingOptionsRequest"
required: true
responses:
"200":
description: Response containing the calculated shipping options.
content:
'*/*':
schema:
$ref: "#/components/schemas/CalculateShippingOptionsResponse"
/api/finance/calculateFinanceAgreement:
post:
tags:
- Finance Agreement Calculation
summary: Calculate a Finance Agreement
description: "Processes a finance agreement based on car valuation, customer\
\ credit profile, business margin constraints, and competitor pricing."
operationId: calculateFinanceAgreement
x-sfdc:
heroku:
authorization:
connectedApp: 'ActionsServiceConnectedApp'
permissionSet: 'ActionsServicePermissions'
requestBody:
description: "Request to compute a finance agreement for a car purchase, including\
\ the Salesforce record ID of both the customer applying for financing and\
\ the vehicle being financed."
content:
application/json:
schema:
$ref: "#/components/schemas/FinanceCalculationRequest"
required: true
responses:
"200":
description: Response containing the calculated finance agreement.
content:
'*/*':
schema:
$ref: "#/components/schemas/FinanceCalculationResponse"
"404":
description: Vehicle not found in Salesforce.
content:
'*/*':
schema:
$ref: "#/components/schemas/FinanceCalculationResponse"
"503":
description: Salesforce connection error.
content:
'*/*':
schema:
$ref: "#/components/schemas/FinanceCalculationResponse"
"500":
description: Unexpected server error.
content:
'*/*':
schema:
$ref: "#/components/schemas/FinanceCalculationResponse"
/api/carbon/calculateCarbonFootprint:
post:
tags:
- Carbon Footprint Calculation
summary: Calculate Carbon Footprint
description: Calculates the carbon footprint for a given flight using real DEFRA
2023 factors and live Salesforce passenger data.
operationId: calculateCarbonFootprint
x-sfdc:
heroku:
authorization:
connectedApp: 'ActionsServiceConnectedApp'
permissionSet: 'ActionsServicePermissions'
requestBody:
description: "Request to calculate the carbon footprint of a flight, using\
\ its Salesforce record ID."
content:
application/json:
schema:
$ref: "#/components/schemas/CarbonFootprintRequest"
required: true
responses:
"200":
description: Response containing the carbon footprint summary for the flight.
content:
'*/*':
schema:
$ref: "#/components/schemas/CarbonFootprintResponse"
"404":
description: Flight not found in Salesforce.
content:
'*/*':
schema:
$ref: "#/components/schemas/CarbonFootprintResponse"
"503":
description: Salesforce connection error.
content:
'*/*':
schema:
$ref: "#/components/schemas/CarbonFootprintResponse"
"500":
description: Unexpected server error.
content:
'*/*':
schema:
$ref: "#/components/schemas/CarbonFootprintResponse"
components:
schemas:
RenderCardRequest:
type: object
properties:
line1:
type: string
line2:
type: string
description: Request to customize the rendering of the social card.
RenderCardResponse:
type: object
properties:
socialCard:
type: string
description: Response from rendering social card contains base64 encoded png
image.
CalculateShippingOptionsRequest:
type: object
properties:
productId:
type: string
description: The Salesforce record ID of the product.
example: PROD123456
description: "Request to determine shipping options for a product, including\
\ the Salesforce record ID of the product being shipped."
CalculateShippingOptionsResponse:
type: object
properties:
product:
$ref: "#/components/schemas/ProductInfo"
shippingOptions:
type: array
items:
$ref: "#/components/schemas/ShippingOption"
recommendedOption:
$ref: "#/components/schemas/ShippingOption"
timestamp:
type: string
units:
type: object
additionalProperties:
type: string
description: Response containing the calculated shipping options for the given
product. Describe the results in natural language text to the user.
Dimensions:
type: object
properties:
length:
type: number
format: double
width:
type: number
format: double
height:
type: number
format: double
description: Product dimensions in centimeters.
ProductInfo:
type: object
properties:
productId:
type: string
name:
type: string
weight:
type: number
format: double
dimensions:
$ref: "#/components/schemas/Dimensions"
category:
type: string
price:
type: number
format: double
description: Product details including weight and dimensions.
ShippingOption:
type: object
properties:
carrier:
type: string
service:
type: string
estimatedDeliveryDays:
type: integer
format: int32
cost:
type: number
format: double
carbonFootprint:
type: number
format: double
description: Available shipping options for the product.
FinanceCalculationRequest:
type: object
properties:
customerId:
type: string
description: The Salesforce record ID of the customer applying for financing.
example: 0035g00000XyZbHAZ
vehicleId:
type: string
description: The Salesforce record ID of the car being financed.
example: a0B5g00000LkVnWEAV
maxInterestRate:
type: number
description: The maximum interest rate the user is prepared to go to (percentage).
format: double
example: 3.5
downPayment:
type: number
description: The down payment the user is prepared to give.
format: double
example: 1000
years:
type: integer
description: The number of years to pay the finance the user is requesting.
format: int32
example: 3
description: "Request to compute a finance agreement for a car purchase, including\
\ the Salesforce record ID of both the customer applying for financing and\
\ the vehicle being financed."
FinanceCalculationResponse:
type: object
properties:
recommendedFinanceOffer:
$ref: "#/components/schemas/FinanceOffer"
description: Response containing the calculated finance agreement.
FinanceOffer:
type: object
properties:
finalCarPrice:
type: number
format: double
adjustedInterestRate:
type: number
format: double
monthlyPayment:
type: number
format: double
loanTermMonths:
type: integer
format: int32
totalFinancingCost:
type: number
format: double
description: Recommended finance offer based on business rules and customer
affordability.
CarbonFootprintRequest:
type: object
properties:
flightId:
type: string
description: Request to calculate the carbon footprint of a flight.
CarbonFootprintResponse:
type: object
properties:
flight:
$ref: "#/components/schemas/FlightInfo"
emissions:
$ref: "#/components/schemas/EmissionsData"
methodology:
$ref: "#/components/schemas/Methodology"
timestamp:
type: string
units:
type: object
additionalProperties:
type: string
description: Response containing the calculated carbon footprint for the flight.
EmissionsData:
type: object
properties:
totalCo2Kg:
type: number
format: double
co2PerPassengerKg:
type: number
format: double
co2PerKmKg:
type: number
format: double
description: Carbon emissions data for the flight.
FlightInfo:
type: object
properties:
flightNumber:
type: string
departureAirport:
type: string
arrivalAirport:
type: string
distanceKm:
type: integer
format: int32
passengerCount:
type: integer
format: int32
description: Flight information details.
Methodology:
type: object
properties:
calculationBasis:
type: string
fuelToCo2Ratio:
type: number
format: double
radiativeForcingMultiplier:
type: number
format: double
dataSource:
type: string
description: Details about the methodology used for emissions calculation.