-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcisco-expressway-configuration-api-openapi.yml
More file actions
1879 lines (1879 loc) · 59.3 KB
/
cisco-expressway-configuration-api-openapi.yml
File metadata and controls
1879 lines (1879 loc) · 59.3 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
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.1.0
info:
title: Cisco Expressway Configuration API
description: >-
RESTful API for configuring and managing Cisco Expressway systems including
zones, search rules, transforms, DNS servers, NTP servers, SFTP
configuration, system upgrades, and admin account management. The API uses
JSON Schema version 4 for request and response schemas and is
self-documented via RAML definitions available at /api/raml on the
Expressway system. All endpoints require HTTPS and HTTP Basic
Authentication using Expressway administrator credentials.
version: 14.2.0
contact:
name: Cisco TAC
email: tac@cisco.com
url: https://www.cisco.com/c/en/us/support/unified-communications/expressway-series/tsd-products-support-series-home.html
license:
name: Cisco EULA
url: https://www.cisco.com/c/en/us/about/legal/cloud-and-software/end_user_license_agreement.html
x-logo:
url: https://www.cisco.com/c/dam/en/us/products/collateral/unified-communications/expressway-series/datasheet-c78-733751.jpg
externalDocs:
description: Cisco Expressway REST API Summary Guide (X14.2)
url: https://www.cisco.com/c/en/us/td/docs/voice_ip_comm/expressway/admin_guide/X14-2/rest-api/exwy_b_cisco-expressway-rest-api-summary-guide--x142/exwy_m_using-the-expressway-rest-api.html
servers:
- url: https://{host}/api
description: Cisco Expressway server
variables:
host:
default: expressway.example.com
description: >-
The FQDN or IP address of the Cisco Expressway node. The API is
only accessible via HTTPS.
security:
- basicAuth: []
tags:
- name: Admin Account
description: Administrator account management
- name: DNS
description: DNS server configuration management
- name: NTP
description: NTP server configuration for time synchronization
- name: Search Rules
description: Search rule configuration for call routing decisions
- name: SFTP
description: SFTP configuration for system upgrades
- name: SIP
description: SIP protocol configuration
- name: System
description: System-level configuration and information
- name: Transforms
description: Pre-search transform configuration for alias modification
- name: Upgrade
description: System upgrade operations
- name: Zones
description: Zone configuration for call routing and firewall traversal
paths:
/provisioning/common/sysinfo:
get:
operationId: getSystemInfo
summary: Cisco Expressway Retrieve system information
description: >-
Returns basic system information for the Expressway node including the
system name, software version, hardware details, serial number, and
uptime.
tags:
- System
responses:
'200':
description: System information retrieved successfully
content:
application/json:
schema:
$ref: '#/components/schemas/SystemInfo'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
/v1/provisioning/common/dns/dnsserver:
get:
operationId: listDnsServers
summary: Cisco Expressway List all configured DNS servers
description: >-
Retrieves the list of all DNS servers configured on the Expressway.
Supports filtering by name or address using query path segments such
as /dnsserver/address/{address}.
tags:
- DNS
responses:
'200':
description: DNS server list retrieved successfully
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/DnsServer'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
post:
operationId: createDnsServer
summary: Cisco Expressway Add a new DNS server
description: >-
Adds a new DNS server entry to the Expressway configuration. The
Expressway supports up to five DNS server addresses.
tags:
- DNS
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/DnsServerInput'
responses:
'200':
description: DNS server created successfully
content:
application/json:
schema:
$ref: '#/components/schemas/DnsServer'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'409':
$ref: '#/components/responses/Conflict'
put:
operationId: updateDnsServer
summary: Cisco Expressway Modify a DNS server entry
description: >-
Updates an existing DNS server configuration on the Expressway.
The target server is identified by its current address or index.
tags:
- DNS
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/DnsServerInput'
responses:
'200':
description: DNS server updated successfully
content:
application/json:
schema:
$ref: '#/components/schemas/DnsServer'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
delete:
operationId: deleteDnsServer
summary: Cisco Expressway Delete a DNS server entry
description: >-
Removes a DNS server from the Expressway configuration. The target
server is identified by its address or index in the configuration.
tags:
- DNS
responses:
'200':
description: DNS server deleted successfully
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
/v1/provisioning/common/time/ntpserver:
get:
operationId: listNtpServers
summary: Cisco Expressway List all configured NTP servers
description: >-
Retrieves the list of all NTP servers configured on the Expressway for
time synchronization. Supports filtering by name or address.
tags:
- NTP
responses:
'200':
description: NTP server list retrieved successfully
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/NtpServer'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
post:
operationId: createNtpServer
summary: Cisco Expressway Add a new NTP server
description: >-
Adds a new NTP server entry to the Expressway configuration for time
synchronization. Up to five NTP servers can be configured.
tags:
- NTP
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/NtpServerInput'
responses:
'200':
description: NTP server created successfully
content:
application/json:
schema:
$ref: '#/components/schemas/NtpServer'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'409':
$ref: '#/components/responses/Conflict'
put:
operationId: updateNtpServer
summary: Cisco Expressway Modify an NTP server entry
description: >-
Updates an existing NTP server configuration on the Expressway.
tags:
- NTP
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/NtpServerInput'
responses:
'200':
description: NTP server updated successfully
content:
application/json:
schema:
$ref: '#/components/schemas/NtpServer'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
delete:
operationId: deleteNtpServer
summary: Cisco Expressway Delete an NTP server entry
description: >-
Removes an NTP server from the Expressway configuration.
tags:
- NTP
responses:
'200':
description: NTP server deleted successfully
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
/v1/provisioning/common/sftpconfig:
get:
operationId: getSftpConfig
summary: Cisco Expressway Retrieve SFTP configuration
description: >-
Returns the current SFTP configuration used for system upgrades
including the SFTP server address, port, path, and credentials.
tags:
- SFTP
responses:
'200':
description: SFTP configuration retrieved successfully
content:
application/json:
schema:
$ref: '#/components/schemas/SftpConfig'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
put:
operationId: updateSftpConfig
summary: Cisco Expressway Update SFTP configuration
description: >-
Updates the SFTP configuration for system upgrades. Configure the
server address, credentials, and file path to the upgrade image.
tags:
- SFTP
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/SftpConfigInput'
responses:
'200':
description: SFTP configuration updated successfully
content:
application/json:
schema:
$ref: '#/components/schemas/SftpConfig'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
/v1/provisioning/common/upgrade:
post:
operationId: triggerUpgrade
summary: Cisco Expressway Trigger a system upgrade
description: >-
Initiates a system software upgrade on the Expressway. The SFTP
configuration must be set before triggering the upgrade. The upgrade
process downloads the image via SFTP and optionally reboots the
system automatically.
tags:
- Upgrade
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UpgradeRequest'
responses:
'200':
description: Upgrade initiated successfully
content:
application/json:
schema:
$ref: '#/components/schemas/UpgradeResponse'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
/v1/provisioning/common/adminaccount/changepassword:
post:
operationId: changeAdminPassword
summary: Cisco Expressway Change administrator password
description: >-
Changes the password for an administrator account on the Expressway.
Requires the current password and the new password.
tags:
- Admin Account
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/ChangePasswordRequest'
responses:
'200':
description: Password changed successfully
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
/provisioning/edge/zone/traversalserver:
get:
operationId: listEdgeTraversalServerZones
summary: Cisco Expressway List Expressway-E traversal server zones
description: >-
Retrieves all traversal server zones configured on the Expressway-E.
Traversal server zones enable the Expressway-E to provide firewall
traversal services to traversal clients (Expressway-C). Supports
filtering by name using the path pattern
/zone/traversalserver/name/{zoneName}.
tags:
- Zones
responses:
'200':
description: Traversal server zone list retrieved successfully
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/TraversalServerZone'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
post:
operationId: createEdgeTraversalServerZone
summary: Cisco Expressway Create a traversal server zone on Expressway-E
description: >-
Creates a new traversal server zone on the Expressway-E to provide
firewall traversal services. The zone defines connection credentials,
H.323 and SIP protocol settings, and media encryption mode.
tags:
- Zones
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/TraversalServerZoneInput'
responses:
'200':
description: Traversal server zone created successfully
content:
application/json:
schema:
$ref: '#/components/schemas/TraversalServerZone'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'409':
$ref: '#/components/responses/Conflict'
put:
operationId: updateEdgeTraversalServerZone
summary: Cisco Expressway Update a traversal server zone on Expressway-E
description: >-
Modifies an existing traversal server zone configuration on the
Expressway-E including connection credentials, protocol settings,
and media encryption parameters.
tags:
- Zones
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/TraversalServerZoneInput'
responses:
'200':
description: Traversal server zone updated successfully
content:
application/json:
schema:
$ref: '#/components/schemas/TraversalServerZone'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
delete:
operationId: deleteEdgeTraversalServerZone
summary: Cisco Expressway Delete a traversal server zone from Expressway-E
description: >-
Removes a traversal server zone from the Expressway-E configuration.
The zone is identified by its name.
tags:
- Zones
responses:
'200':
description: Traversal server zone deleted successfully
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
/provisioning/controller/zone/traversalclient:
get:
operationId: listControllerTraversalClientZones
summary: Cisco Expressway List Expressway-C traversal client zones
description: >-
Retrieves all traversal client zones configured on the Expressway-C.
Traversal client zones define connections from the Expressway-C to
a traversal server (Expressway-E) across a firewall. Supports
filtering by name using the path pattern
/zone/traversalclient/name/{zoneName}.
tags:
- Zones
responses:
'200':
description: Traversal client zone list retrieved successfully
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/TraversalClientZone'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
post:
operationId: createControllerTraversalClientZone
summary: Cisco Expressway Create a traversal client zone on Expressway-C
description: >-
Creates a new traversal client zone on the Expressway-C to connect
to a traversal server (Expressway-E) across a firewall. The zone
defines connection credentials, retry intervals, and protocol
settings.
tags:
- Zones
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/TraversalClientZoneInput'
responses:
'200':
description: Traversal client zone created successfully
content:
application/json:
schema:
$ref: '#/components/schemas/TraversalClientZone'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'409':
$ref: '#/components/responses/Conflict'
put:
operationId: updateControllerTraversalClientZone
summary: Cisco Expressway Update a traversal client zone on Expressway-C
description: >-
Modifies an existing traversal client zone configuration on the
Expressway-C including connection credentials, retry intervals,
and protocol settings.
tags:
- Zones
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/TraversalClientZoneInput'
responses:
'200':
description: Traversal client zone updated successfully
content:
application/json:
schema:
$ref: '#/components/schemas/TraversalClientZone'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
delete:
operationId: deleteControllerTraversalClientZone
summary: Cisco Expressway Delete a traversal client zone from Expressway-C
description: >-
Removes a traversal client zone from the Expressway-C configuration.
tags:
- Zones
responses:
'200':
description: Traversal client zone deleted successfully
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
/provisioning/common/zone/neighbor:
get:
operationId: listNeighborZones
summary: Cisco Expressway List all neighbor zones
description: >-
Retrieves all neighbor zones configured on the Expressway. Neighbor
zones connect the local Expressway to another system such as another
Expressway, Unified CM, or a gatekeeper. Supports filtering by name.
tags:
- Zones
responses:
'200':
description: Neighbor zone list retrieved successfully
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/NeighborZone'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
post:
operationId: createNeighborZone
summary: Cisco Expressway Create a neighbor zone
description: >-
Creates a new neighbor zone on the Expressway. Neighbor zones define
connections to peer systems such as other Expressway nodes, Unified
CM clusters, or gatekeepers with configurable H.323 and SIP protocol
settings.
tags:
- Zones
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/NeighborZoneInput'
responses:
'200':
description: Neighbor zone created successfully
content:
application/json:
schema:
$ref: '#/components/schemas/NeighborZone'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'409':
$ref: '#/components/responses/Conflict'
put:
operationId: updateNeighborZone
summary: Cisco Expressway Update a neighbor zone
description: >-
Modifies an existing neighbor zone configuration on the Expressway
including peer addresses, protocol settings, zone profile, and
authentication options.
tags:
- Zones
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/NeighborZoneInput'
responses:
'200':
description: Neighbor zone updated successfully
content:
application/json:
schema:
$ref: '#/components/schemas/NeighborZone'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
delete:
operationId: deleteNeighborZone
summary: Cisco Expressway Delete a neighbor zone
description: >-
Removes a neighbor zone from the Expressway configuration.
tags:
- Zones
responses:
'200':
description: Neighbor zone deleted successfully
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
/provisioning/common/zone/dns:
get:
operationId: listDnsZones
summary: Cisco Expressway List all DNS zones
description: >-
Retrieves all DNS zones configured on the Expressway. DNS zones
enable endpoint location through DNS lookups for SIP and H.323
calls.
tags:
- Zones
responses:
'200':
description: DNS zone list retrieved successfully
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/DnsZone'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
post:
operationId: createDnsZone
summary: Cisco Expressway Create a DNS zone
description: >-
Creates a new DNS zone on the Expressway for endpoint discovery via
DNS lookups. Configurable for H.323 and SIP protocols with fallback
transport and TLS mapping options.
tags:
- Zones
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/DnsZoneInput'
responses:
'200':
description: DNS zone created successfully
content:
application/json:
schema:
$ref: '#/components/schemas/DnsZone'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'409':
$ref: '#/components/responses/Conflict'
/provisioning/common/searchrule:
get:
operationId: listSearchRules
summary: Cisco Expressway List all search rules
description: >-
Retrieves all search rules configured on the Expressway. Search
rules define how the Expressway routes incoming search requests to
the appropriate target zones or policy services, with configurable
alias pattern matching, priority, and protocol filtering.
tags:
- Search Rules
responses:
'200':
description: Search rule list retrieved successfully
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/SearchRule'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
post:
operationId: createSearchRule
summary: Cisco Expressway Create a search rule
description: >-
Creates a new search rule on the Expressway. Search rules determine
how incoming calls are routed to target zones based on alias
patterns, source zones, and protocol type. Each search rule has a
configurable priority that determines its evaluation order.
tags:
- Search Rules
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/SearchRuleInput'
responses:
'200':
description: Search rule created successfully
content:
application/json:
schema:
$ref: '#/components/schemas/SearchRule'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'409':
$ref: '#/components/responses/Conflict'
put:
operationId: updateSearchRule
summary: Cisco Expressway Update a search rule
description: >-
Modifies an existing search rule configuration on the Expressway
including the alias pattern, target zone, priority, and protocol
filter settings.
tags:
- Search Rules
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/SearchRuleInput'
responses:
'200':
description: Search rule updated successfully
content:
application/json:
schema:
$ref: '#/components/schemas/SearchRule'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
delete:
operationId: deleteSearchRule
summary: Cisco Expressway Delete a search rule
description: >-
Removes a search rule from the Expressway configuration.
tags:
- Search Rules
responses:
'200':
description: Search rule deleted successfully
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
/provisioning/common/transform:
get:
operationId: listTransforms
summary: Cisco Expressway List all pre-search transforms
description: >-
Retrieves all pre-search transforms configured on the Expressway.
Pre-search transforms modify the destination alias in an incoming
search request before any searches are sent to external zones,
enabling alias normalization and rewriting.
tags:
- Transforms
responses:
'200':
description: Transform list retrieved successfully
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Transform'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
post:
operationId: createTransform
summary: Cisco Expressway Create a pre-search transform
description: >-
Creates a new pre-search transform on the Expressway. Transforms
are applied to incoming search requests to modify the destination
alias before routing decisions are made, using pattern matching
and replacement strings.
tags:
- Transforms
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/TransformInput'
responses:
'200':
description: Transform created successfully
content:
application/json:
schema:
$ref: '#/components/schemas/Transform'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'409':
$ref: '#/components/responses/Conflict'
put:
operationId: updateTransform
summary: Cisco Expressway Update a pre-search transform
description: >-
Modifies an existing pre-search transform configuration on the
Expressway including the alias pattern, replacement string, and
priority.
tags:
- Transforms
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/TransformInput'
responses:
'200':
description: Transform updated successfully
content:
application/json:
schema:
$ref: '#/components/schemas/Transform'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
delete:
operationId: deleteTransform
summary: Cisco Expressway Delete a pre-search transform
description: >-
Removes a pre-search transform from the Expressway configuration.
tags:
- Transforms
responses:
'200':
description: Transform deleted successfully
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
/provisioning/common/sip/configuration:
get:
operationId: getSipConfiguration
summary: Cisco Expressway Retrieve SIP configuration
description: >-
Returns the current SIP protocol configuration for the Expressway
including SIP mode, listening ports, transport protocols, registration
settings, and session timer parameters.
tags:
- SIP
responses:
'200':
description: SIP configuration retrieved successfully
content:
application/json:
schema:
$ref: '#/components/schemas/SipConfiguration'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
put:
operationId: updateSipConfiguration
summary: Cisco Expressway Update SIP configuration
description: >-
Modifies the SIP protocol configuration on the Expressway including
SIP mode, transport settings, registration proxy behavior, and
session timer parameters.
tags:
- SIP
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/SipConfigurationInput'
responses:
'200':
description: SIP configuration updated successfully
content:
application/json:
schema:
$ref: '#/components/schemas/SipConfiguration'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
components:
securitySchemes:
basicAuth:
type: http
scheme: basic
description: >-
HTTP Basic Authentication using Expressway administrator credentials.
The API is only accessible via HTTPS.
schemas:
SystemInfo:
type: object
description: System information for the Expressway node
properties:
SystemName:
type: string
description: The name assigned to the Expressway
examples:
- Expressway-C-Primary
SoftwareVersion:
type: string
description: Currently installed software version
examples:
- X14.2
HardwareVersion:
type: string
description: Hardware or virtual appliance version
examples:
- VM
SerialNumber:
type: string
description: Hardware or VM serial number
examples:
- A1B2C3D4E5F6
Uptime:
type: string
description: Time elapsed since the system last restarted
examples:
- 45 days 12:34:56
IPv4Address:
type: string
format: ipv4
description: IPv4 address of the Expressway
examples:
- 10.0.0.1
IPv6Address:
type: string
format: ipv6
description: IPv6 address of the Expressway
VMSize:
type: string
description: Virtual machine size designation
enum:
- Small
- Medium
- Large
DnsServer:
type: object
description: DNS server configuration entry
properties:
Index:
type: integer
description: Index position of the DNS server (1-5)