-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtravelers-openapi.yml
More file actions
560 lines (560 loc) · 14.9 KB
/
Copy pathtravelers-openapi.yml
File metadata and controls
560 lines (560 loc) · 14.9 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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
openapi: 3.0.3
info:
title: Travelers API
description: >-
Travelers provides APIs for business insurance claim reporting, commercial
lines quoting, and policy management. These APIs enable agents, brokers,
and commercial clients to programmatically manage insurance workflows
including submitting claims, obtaining quotes, and managing policies
across property, casualty, workers compensation, and commercial auto lines.
version: v1.0.0
contact:
name: Travelers Developer Portal
url: https://developer.travelers.com/s/
x-logo:
url: https://www.travelers.com/logo.png
servers:
- url: https://api.travelers.com/v1
description: Travelers API Production Server
security:
- OAuth2: []
tags:
- name: Claims
description: Business insurance claim reporting and management
- name: Quoting
description: Commercial insurance quoting and policy pricing
- name: Policies
description: Policy information and management
paths:
/claims:
get:
operationId: listClaims
summary: List Claims
description: >-
Returns a list of business insurance claims for the authenticated
organization, filterable by status, policy type, and date range.
tags:
- Claims
parameters:
- name: status
in: query
required: false
schema:
type: string
enum: [open, in-review, settled, closed]
description: Filter by claim status
- name: policy_type
in: query
required: false
schema:
type: string
enum: [property, casualty, workers-compensation, commercial-auto, general-liability]
description: Filter by insurance policy type
- name: start_date
in: query
required: false
schema:
type: string
format: date
description: Filter claims from this date (YYYY-MM-DD)
- name: end_date
in: query
required: false
schema:
type: string
format: date
description: Filter claims to this date (YYYY-MM-DD)
- name: limit
in: query
required: false
schema:
type: integer
default: 20
description: Maximum number of claims to return
responses:
'200':
description: Successful response with claim list
content:
application/json:
schema:
$ref: '#/components/schemas/ClaimListResponse'
'401':
$ref: '#/components/responses/Unauthorized'
post:
operationId: reportClaim
summary: Report Claim
description: >-
Submits a new business insurance claim report to Travelers. Supports
property, casualty, workers compensation, and commercial auto claims.
tags:
- Claims
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/ClaimRequest'
responses:
'201':
description: Claim submitted successfully
content:
application/json:
schema:
$ref: '#/components/schemas/ClaimResponse'
'400':
$ref: '#/components/responses/BadRequest'
'422':
$ref: '#/components/responses/UnprocessableEntity'
/claims/{claim_number}:
get:
operationId: getClaim
summary: Get Claim
description: Returns details of a specific insurance claim by claim number.
tags:
- Claims
parameters:
- name: claim_number
in: path
required: true
schema:
type: string
description: The claim number assigned by Travelers
responses:
'200':
description: Successful response with claim details
content:
application/json:
schema:
$ref: '#/components/schemas/ClaimResponse'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
/claims/{claim_number}/documents:
post:
operationId: uploadClaimDocument
summary: Upload Claim Document
description: >-
Uploads supporting documentation for an existing claim, such as
photos, police reports, or medical records.
tags:
- Claims
parameters:
- name: claim_number
in: path
required: true
schema:
type: string
requestBody:
required: true
content:
multipart/form-data:
schema:
type: object
properties:
file:
type: string
format: binary
document_type:
type: string
enum: [photo, police-report, medical-record, invoice, other]
description:
type: string
responses:
'201':
description: Document uploaded successfully
content:
application/json:
schema:
$ref: '#/components/schemas/DocumentResponse'
'404':
$ref: '#/components/responses/NotFound'
/quotes:
post:
operationId: requestQuote
summary: Request Commercial Insurance Quote
description: >-
Requests a commercial insurance quote for Business Owner Policies
or Workers Compensation coverage. Returns indications or fully
bindable quotes for eligible customers.
tags:
- Quoting
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/QuoteRequest'
responses:
'200':
description: Quote generated successfully
content:
application/json:
schema:
$ref: '#/components/schemas/QuoteResponse'
'400':
$ref: '#/components/responses/BadRequest'
'422':
$ref: '#/components/responses/UnprocessableEntity'
/quotes/{quote_id}:
get:
operationId: getQuote
summary: Get Quote
description: Returns a previously generated insurance quote by ID.
tags:
- Quoting
parameters:
- name: quote_id
in: path
required: true
schema:
type: string
description: Quote identifier
responses:
'200':
description: Successful response with quote details
content:
application/json:
schema:
$ref: '#/components/schemas/QuoteResponse'
'404':
$ref: '#/components/responses/NotFound'
/policies:
get:
operationId: listPolicies
summary: List Policies
description: >-
Returns a list of commercial insurance policies for the authenticated
organization.
tags:
- Policies
parameters:
- name: status
in: query
required: false
schema:
type: string
enum: [active, expired, cancelled, pending]
description: Filter by policy status
- name: policy_type
in: query
required: false
schema:
type: string
description: Filter by policy type
responses:
'200':
description: Successful response with policy list
content:
application/json:
schema:
$ref: '#/components/schemas/PolicyListResponse'
'401':
$ref: '#/components/responses/Unauthorized'
/policies/{policy_number}:
get:
operationId: getPolicy
summary: Get Policy
description: Returns details of a specific insurance policy.
tags:
- Policies
parameters:
- name: policy_number
in: path
required: true
schema:
type: string
description: The policy number
responses:
'200':
description: Successful response with policy details
content:
application/json:
schema:
$ref: '#/components/schemas/PolicyResponse'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
components:
securitySchemes:
OAuth2:
type: oauth2
flows:
clientCredentials:
tokenUrl: https://api.travelers.com/oauth/token
scopes:
claims:read: Read claim data
claims:write: Submit and update claims
quotes:read: Read quote data
quotes:write: Request quotes
policies:read: Read policy data
responses:
Unauthorized:
description: Unauthorized - invalid or missing credentials
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
BadRequest:
description: Bad request - invalid input data
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
NotFound:
description: Resource not found
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
UnprocessableEntity:
description: Unprocessable entity - validation errors
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
schemas:
ErrorResponse:
type: object
properties:
error:
type: string
code:
type: string
details:
type: array
items:
type: string
Claim:
type: object
properties:
claim_number:
type: string
policy_number:
type: string
policy_type:
type: string
status:
type: string
enum: [open, in-review, settled, closed]
loss_date:
type: string
format: date
reported_date:
type: string
format: date-time
description:
type: string
claimant:
$ref: '#/components/schemas/Claimant'
adjuster:
$ref: '#/components/schemas/Adjuster'
total_incurred:
type: number
format: float
Claimant:
type: object
properties:
name:
type: string
contact_email:
type: string
format: email
contact_phone:
type: string
Adjuster:
type: object
properties:
name:
type: string
email:
type: string
format: email
phone:
type: string
ClaimRequest:
type: object
required:
- policy_number
- loss_date
- description
- policy_type
properties:
policy_number:
type: string
policy_type:
type: string
enum: [property, casualty, workers-compensation, commercial-auto, general-liability]
loss_date:
type: string
format: date
description:
type: string
loss_location:
type: object
properties:
address:
type: string
city:
type: string
state:
type: string
zip:
type: string
claimant:
$ref: '#/components/schemas/Claimant'
ClaimResponse:
type: object
properties:
data:
$ref: '#/components/schemas/Claim'
ClaimListResponse:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/Claim'
total:
type: integer
page:
type: integer
limit:
type: integer
DocumentResponse:
type: object
properties:
data:
type: object
properties:
id:
type: string
document_type:
type: string
filename:
type: string
uploaded_at:
type: string
format: date-time
BusinessInfo:
type: object
properties:
name:
type: string
address:
type: string
city:
type: string
state:
type: string
zip:
type: string
industry_code:
type: string
annual_revenue:
type: number
format: float
employee_count:
type: integer
QuoteRequest:
type: object
required:
- product_type
- business_info
properties:
product_type:
type: string
enum: [business-owners-policy, workers-compensation]
business_info:
$ref: '#/components/schemas/BusinessInfo'
effective_date:
type: string
format: date
coverage_options:
type: object
additionalProperties: true
Quote:
type: object
properties:
quote_id:
type: string
product_type:
type: string
status:
type: string
enum: [indication, bindable, declined]
premium:
type: number
format: float
effective_date:
type: string
format: date
expiration_date:
type: string
format: date
coverages:
type: array
items:
type: object
properties:
type:
type: string
limit:
type: number
deductible:
type: number
created_at:
type: string
format: date-time
QuoteResponse:
type: object
properties:
data:
$ref: '#/components/schemas/Quote'
Policy:
type: object
properties:
policy_number:
type: string
product_type:
type: string
status:
type: string
enum: [active, expired, cancelled, pending]
insured_name:
type: string
effective_date:
type: string
format: date
expiration_date:
type: string
format: date
premium:
type: number
format: float
coverages:
type: array
items:
type: object
properties:
type:
type: string
limit:
type: number
deductible:
type: number
PolicyResponse:
type: object
properties:
data:
$ref: '#/components/schemas/Policy'
PolicyListResponse:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/Policy'
total:
type: integer