reach-api-sdk 1.0.220 → 1.0.222
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/reach-sdk.d.ts +961 -265
- package/dist/reach-sdk.js +536 -1
- package/package.json +1 -1
- package/src/apiClient.ts +6 -0
- package/src/definition/swagger.yaml +2635 -899
- package/src/index.ts +6 -0
- package/src/models/TenantFaq.ts +54 -0
- package/src/models/TenantFaqPage.ts +12 -0
- package/src/models/TenantFaqPatch.ts +42 -0
- package/src/models/TenantFaqPost.ts +38 -0
- package/src/models/TenantWebsiteSetting.ts +8 -0
- package/src/models/TenantWebsiteSettingPatch.ts +8 -0
- package/src/services/PublicTenantFaqsService.ts +264 -0
- package/src/services/TenantFaqsService.ts +752 -0
|
@@ -91662,6 +91662,356 @@ paths:
|
|
|
91662
91662
|
text/json:
|
|
91663
91663
|
schema:
|
|
91664
91664
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
91665
|
+
'/api/public/tenant-faqs/{id}':
|
|
91666
|
+
get:
|
|
91667
|
+
tags:
|
|
91668
|
+
- PublicTenantFaqs
|
|
91669
|
+
operationId: GetObject
|
|
91670
|
+
parameters:
|
|
91671
|
+
- name: x_tenant_subdomain
|
|
91672
|
+
in: header
|
|
91673
|
+
schema:
|
|
91674
|
+
type: string
|
|
91675
|
+
- name: id
|
|
91676
|
+
in: path
|
|
91677
|
+
required: true
|
|
91678
|
+
schema:
|
|
91679
|
+
type: string
|
|
91680
|
+
responses:
|
|
91681
|
+
'200':
|
|
91682
|
+
description: OK
|
|
91683
|
+
content:
|
|
91684
|
+
text/plain:
|
|
91685
|
+
schema:
|
|
91686
|
+
$ref: '#/components/schemas/TenantFaq'
|
|
91687
|
+
application/json:
|
|
91688
|
+
schema:
|
|
91689
|
+
$ref: '#/components/schemas/TenantFaq'
|
|
91690
|
+
text/json:
|
|
91691
|
+
schema:
|
|
91692
|
+
$ref: '#/components/schemas/TenantFaq'
|
|
91693
|
+
'400':
|
|
91694
|
+
description: Bad Request
|
|
91695
|
+
content:
|
|
91696
|
+
text/plain:
|
|
91697
|
+
schema:
|
|
91698
|
+
$ref: '#/components/schemas/ReachError'
|
|
91699
|
+
application/json:
|
|
91700
|
+
schema:
|
|
91701
|
+
$ref: '#/components/schemas/ReachError'
|
|
91702
|
+
text/json:
|
|
91703
|
+
schema:
|
|
91704
|
+
$ref: '#/components/schemas/ReachError'
|
|
91705
|
+
'500':
|
|
91706
|
+
description: Internal Server Error
|
|
91707
|
+
content:
|
|
91708
|
+
text/plain:
|
|
91709
|
+
schema:
|
|
91710
|
+
$ref: '#/components/schemas/ReachError'
|
|
91711
|
+
application/json:
|
|
91712
|
+
schema:
|
|
91713
|
+
$ref: '#/components/schemas/ReachError'
|
|
91714
|
+
text/json:
|
|
91715
|
+
schema:
|
|
91716
|
+
$ref: '#/components/schemas/ReachError'
|
|
91717
|
+
'422':
|
|
91718
|
+
description: Unprocessable Content
|
|
91719
|
+
content:
|
|
91720
|
+
text/plain:
|
|
91721
|
+
schema:
|
|
91722
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
91723
|
+
application/json:
|
|
91724
|
+
schema:
|
|
91725
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
91726
|
+
text/json:
|
|
91727
|
+
schema:
|
|
91728
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
91729
|
+
/api/public/tenant-faqs:
|
|
91730
|
+
get:
|
|
91731
|
+
tags:
|
|
91732
|
+
- PublicTenantFaqs
|
|
91733
|
+
operationId: GetPage
|
|
91734
|
+
parameters:
|
|
91735
|
+
- name: x_tenant_subdomain
|
|
91736
|
+
in: header
|
|
91737
|
+
schema:
|
|
91738
|
+
type: string
|
|
91739
|
+
- name: Ids
|
|
91740
|
+
in: query
|
|
91741
|
+
description: Gets or sets the queryable tenant FAQ ids.
|
|
91742
|
+
schema:
|
|
91743
|
+
type: array
|
|
91744
|
+
items:
|
|
91745
|
+
type: string
|
|
91746
|
+
format: uuid
|
|
91747
|
+
- name: ShowOnStorefront
|
|
91748
|
+
in: query
|
|
91749
|
+
description: Gets or sets the queryable ShowOnStorefront value.
|
|
91750
|
+
schema:
|
|
91751
|
+
type: boolean
|
|
91752
|
+
- name: ShowOnCustomerPortal
|
|
91753
|
+
in: query
|
|
91754
|
+
description: Gets or sets the queryable ShowOnCustomerPortal value.
|
|
91755
|
+
schema:
|
|
91756
|
+
type: boolean
|
|
91757
|
+
- name: PageNumber
|
|
91758
|
+
in: query
|
|
91759
|
+
description: Gets or sets the page number for paged queries.
|
|
91760
|
+
schema:
|
|
91761
|
+
type: integer
|
|
91762
|
+
format: int32
|
|
91763
|
+
- name: Take
|
|
91764
|
+
in: query
|
|
91765
|
+
description: 'Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.'
|
|
91766
|
+
schema:
|
|
91767
|
+
type: integer
|
|
91768
|
+
format: int32
|
|
91769
|
+
- name: Skip
|
|
91770
|
+
in: query
|
|
91771
|
+
description: 'Gets or sets how much items to skip from begining of db table, when this is set page is always 1.'
|
|
91772
|
+
schema:
|
|
91773
|
+
type: integer
|
|
91774
|
+
format: int32
|
|
91775
|
+
- name: LimitListRequests
|
|
91776
|
+
in: query
|
|
91777
|
+
description: Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
91778
|
+
schema:
|
|
91779
|
+
type: boolean
|
|
91780
|
+
- name: TenantId
|
|
91781
|
+
in: query
|
|
91782
|
+
description: Gets or sets the Tenant Id.
|
|
91783
|
+
schema:
|
|
91784
|
+
type: string
|
|
91785
|
+
format: uuid
|
|
91786
|
+
- name: ModifiedById
|
|
91787
|
+
in: query
|
|
91788
|
+
description: Gets or sets the Modifed By Id.
|
|
91789
|
+
schema:
|
|
91790
|
+
type: string
|
|
91791
|
+
format: uuid
|
|
91792
|
+
- name: ModifiedByIds
|
|
91793
|
+
in: query
|
|
91794
|
+
description: Gets or sets the Modifed By Ids.
|
|
91795
|
+
schema:
|
|
91796
|
+
type: array
|
|
91797
|
+
items:
|
|
91798
|
+
type: string
|
|
91799
|
+
format: uuid
|
|
91800
|
+
- name: DateCreatedGTE
|
|
91801
|
+
in: query
|
|
91802
|
+
description: Gets or sets the Date Created greater than equal to.
|
|
91803
|
+
schema:
|
|
91804
|
+
type: string
|
|
91805
|
+
format: date-time
|
|
91806
|
+
- name: DateCreatedLTE
|
|
91807
|
+
in: query
|
|
91808
|
+
description: Gets or sets the Date Created less than equal to.
|
|
91809
|
+
schema:
|
|
91810
|
+
type: string
|
|
91811
|
+
format: date-time
|
|
91812
|
+
- name: IsLive
|
|
91813
|
+
in: query
|
|
91814
|
+
description: Gets or sets the queryable only is live status.
|
|
91815
|
+
schema:
|
|
91816
|
+
type: boolean
|
|
91817
|
+
- name: SortOrderDirection
|
|
91818
|
+
in: query
|
|
91819
|
+
description: Gets or sets the sort order direction.
|
|
91820
|
+
schema:
|
|
91821
|
+
$ref: '#/components/schemas/SearchSortOrderDirection'
|
|
91822
|
+
responses:
|
|
91823
|
+
'200':
|
|
91824
|
+
description: OK
|
|
91825
|
+
content:
|
|
91826
|
+
text/plain:
|
|
91827
|
+
schema:
|
|
91828
|
+
$ref: '#/components/schemas/TenantFaqPage'
|
|
91829
|
+
application/json:
|
|
91830
|
+
schema:
|
|
91831
|
+
$ref: '#/components/schemas/TenantFaqPage'
|
|
91832
|
+
text/json:
|
|
91833
|
+
schema:
|
|
91834
|
+
$ref: '#/components/schemas/TenantFaqPage'
|
|
91835
|
+
'400':
|
|
91836
|
+
description: Bad Request
|
|
91837
|
+
content:
|
|
91838
|
+
text/plain:
|
|
91839
|
+
schema:
|
|
91840
|
+
$ref: '#/components/schemas/ReachError'
|
|
91841
|
+
application/json:
|
|
91842
|
+
schema:
|
|
91843
|
+
$ref: '#/components/schemas/ReachError'
|
|
91844
|
+
text/json:
|
|
91845
|
+
schema:
|
|
91846
|
+
$ref: '#/components/schemas/ReachError'
|
|
91847
|
+
'500':
|
|
91848
|
+
description: Internal Server Error
|
|
91849
|
+
content:
|
|
91850
|
+
text/plain:
|
|
91851
|
+
schema:
|
|
91852
|
+
$ref: '#/components/schemas/ReachError'
|
|
91853
|
+
application/json:
|
|
91854
|
+
schema:
|
|
91855
|
+
$ref: '#/components/schemas/ReachError'
|
|
91856
|
+
text/json:
|
|
91857
|
+
schema:
|
|
91858
|
+
$ref: '#/components/schemas/ReachError'
|
|
91859
|
+
'422':
|
|
91860
|
+
description: Unprocessable Content
|
|
91861
|
+
content:
|
|
91862
|
+
text/plain:
|
|
91863
|
+
schema:
|
|
91864
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
91865
|
+
application/json:
|
|
91866
|
+
schema:
|
|
91867
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
91868
|
+
text/json:
|
|
91869
|
+
schema:
|
|
91870
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
91871
|
+
/api/public/tenant-faqs/exists:
|
|
91872
|
+
get:
|
|
91873
|
+
tags:
|
|
91874
|
+
- PublicTenantFaqs
|
|
91875
|
+
summary: Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
91876
|
+
operationId: Exists
|
|
91877
|
+
parameters:
|
|
91878
|
+
- name: x_tenant_subdomain
|
|
91879
|
+
in: header
|
|
91880
|
+
description: The tenants subdomain.
|
|
91881
|
+
schema:
|
|
91882
|
+
type: string
|
|
91883
|
+
- name: Ids
|
|
91884
|
+
in: query
|
|
91885
|
+
description: Gets or sets the queryable tenant FAQ ids.
|
|
91886
|
+
schema:
|
|
91887
|
+
type: array
|
|
91888
|
+
items:
|
|
91889
|
+
type: string
|
|
91890
|
+
format: uuid
|
|
91891
|
+
- name: ShowOnStorefront
|
|
91892
|
+
in: query
|
|
91893
|
+
description: Gets or sets the queryable ShowOnStorefront value.
|
|
91894
|
+
schema:
|
|
91895
|
+
type: boolean
|
|
91896
|
+
- name: ShowOnCustomerPortal
|
|
91897
|
+
in: query
|
|
91898
|
+
description: Gets or sets the queryable ShowOnCustomerPortal value.
|
|
91899
|
+
schema:
|
|
91900
|
+
type: boolean
|
|
91901
|
+
- name: PageNumber
|
|
91902
|
+
in: query
|
|
91903
|
+
description: Gets or sets the page number for paged queries.
|
|
91904
|
+
schema:
|
|
91905
|
+
type: integer
|
|
91906
|
+
format: int32
|
|
91907
|
+
- name: Take
|
|
91908
|
+
in: query
|
|
91909
|
+
description: 'Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.'
|
|
91910
|
+
schema:
|
|
91911
|
+
type: integer
|
|
91912
|
+
format: int32
|
|
91913
|
+
- name: Skip
|
|
91914
|
+
in: query
|
|
91915
|
+
description: 'Gets or sets how much items to skip from begining of db table, when this is set page is always 1.'
|
|
91916
|
+
schema:
|
|
91917
|
+
type: integer
|
|
91918
|
+
format: int32
|
|
91919
|
+
- name: LimitListRequests
|
|
91920
|
+
in: query
|
|
91921
|
+
description: Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
91922
|
+
schema:
|
|
91923
|
+
type: boolean
|
|
91924
|
+
- name: TenantId
|
|
91925
|
+
in: query
|
|
91926
|
+
description: Gets or sets the Tenant Id.
|
|
91927
|
+
schema:
|
|
91928
|
+
type: string
|
|
91929
|
+
format: uuid
|
|
91930
|
+
- name: ModifiedById
|
|
91931
|
+
in: query
|
|
91932
|
+
description: Gets or sets the Modifed By Id.
|
|
91933
|
+
schema:
|
|
91934
|
+
type: string
|
|
91935
|
+
format: uuid
|
|
91936
|
+
- name: ModifiedByIds
|
|
91937
|
+
in: query
|
|
91938
|
+
description: Gets or sets the Modifed By Ids.
|
|
91939
|
+
schema:
|
|
91940
|
+
type: array
|
|
91941
|
+
items:
|
|
91942
|
+
type: string
|
|
91943
|
+
format: uuid
|
|
91944
|
+
- name: DateCreatedGTE
|
|
91945
|
+
in: query
|
|
91946
|
+
description: Gets or sets the Date Created greater than equal to.
|
|
91947
|
+
schema:
|
|
91948
|
+
type: string
|
|
91949
|
+
format: date-time
|
|
91950
|
+
- name: DateCreatedLTE
|
|
91951
|
+
in: query
|
|
91952
|
+
description: Gets or sets the Date Created less than equal to.
|
|
91953
|
+
schema:
|
|
91954
|
+
type: string
|
|
91955
|
+
format: date-time
|
|
91956
|
+
- name: IsLive
|
|
91957
|
+
in: query
|
|
91958
|
+
description: Gets or sets the queryable only is live status.
|
|
91959
|
+
schema:
|
|
91960
|
+
type: boolean
|
|
91961
|
+
- name: SortOrderDirection
|
|
91962
|
+
in: query
|
|
91963
|
+
description: Gets or sets the sort order direction.
|
|
91964
|
+
schema:
|
|
91965
|
+
$ref: '#/components/schemas/SearchSortOrderDirection'
|
|
91966
|
+
responses:
|
|
91967
|
+
'200':
|
|
91968
|
+
description: OK
|
|
91969
|
+
content:
|
|
91970
|
+
text/plain:
|
|
91971
|
+
schema:
|
|
91972
|
+
type: boolean
|
|
91973
|
+
application/json:
|
|
91974
|
+
schema:
|
|
91975
|
+
type: boolean
|
|
91976
|
+
text/json:
|
|
91977
|
+
schema:
|
|
91978
|
+
type: boolean
|
|
91979
|
+
'400':
|
|
91980
|
+
description: Bad Request
|
|
91981
|
+
content:
|
|
91982
|
+
text/plain:
|
|
91983
|
+
schema:
|
|
91984
|
+
$ref: '#/components/schemas/ReachError'
|
|
91985
|
+
application/json:
|
|
91986
|
+
schema:
|
|
91987
|
+
$ref: '#/components/schemas/ReachError'
|
|
91988
|
+
text/json:
|
|
91989
|
+
schema:
|
|
91990
|
+
$ref: '#/components/schemas/ReachError'
|
|
91991
|
+
'500':
|
|
91992
|
+
description: Internal Server Error
|
|
91993
|
+
content:
|
|
91994
|
+
text/plain:
|
|
91995
|
+
schema:
|
|
91996
|
+
$ref: '#/components/schemas/ReachError'
|
|
91997
|
+
application/json:
|
|
91998
|
+
schema:
|
|
91999
|
+
$ref: '#/components/schemas/ReachError'
|
|
92000
|
+
text/json:
|
|
92001
|
+
schema:
|
|
92002
|
+
$ref: '#/components/schemas/ReachError'
|
|
92003
|
+
'422':
|
|
92004
|
+
description: Unprocessable Content
|
|
92005
|
+
content:
|
|
92006
|
+
text/plain:
|
|
92007
|
+
schema:
|
|
92008
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
92009
|
+
application/json:
|
|
92010
|
+
schema:
|
|
92011
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
92012
|
+
text/json:
|
|
92013
|
+
schema:
|
|
92014
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
91665
92015
|
/api/public/tenants/init:
|
|
91666
92016
|
get:
|
|
91667
92017
|
tags:
|
|
@@ -122578,163 +122928,1434 @@ paths:
|
|
|
122578
122928
|
text/json:
|
|
122579
122929
|
schema:
|
|
122580
122930
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
122581
|
-
get:
|
|
122582
|
-
tags:
|
|
122583
|
-
- Surveys
|
|
122584
|
-
summary: Gets a list of resources.
|
|
122585
|
-
operationId: GetPage
|
|
122586
|
-
parameters:
|
|
122587
|
-
- name: Id
|
|
122588
|
-
in: query
|
|
122589
|
-
description: Gets or sets the queryable Survey Id.
|
|
122590
|
-
schema:
|
|
122591
|
-
type: string
|
|
122592
|
-
format: uuid
|
|
122593
|
-
- name: Archived
|
|
122594
|
-
in: query
|
|
122595
|
-
description: Gets or sets the queryable archived value.
|
|
122596
|
-
schema:
|
|
122597
|
-
type: boolean
|
|
122598
|
-
- name: ResponseDateGTE
|
|
122599
|
-
in: query
|
|
122600
|
-
description: Gets or sets the queryable response date greater than or equal to query params.
|
|
122601
|
-
schema:
|
|
122602
|
-
type: string
|
|
122603
|
-
format: date-time
|
|
122604
|
-
- name: ResponseDateLTE
|
|
122605
|
-
in: query
|
|
122606
|
-
description: Gets or sets the queryable response date less than or equal to query params.
|
|
122607
|
-
schema:
|
|
122608
|
-
type: string
|
|
122609
|
-
format: date-time
|
|
122610
|
-
- name: Email
|
|
122611
|
-
in: query
|
|
122612
|
-
description: Gets or sets the queryable email address query params.
|
|
122613
|
-
schema:
|
|
122614
|
-
type: string
|
|
122615
|
-
- name: IncludeSummary
|
|
122616
|
-
in: query
|
|
122617
|
-
description: Gets or sets if responsesCount and lastResponseDate should be included.
|
|
122618
|
-
schema:
|
|
122619
|
-
type: boolean
|
|
122620
|
-
- name: PageNumber
|
|
122621
|
-
in: query
|
|
122622
|
-
description: Gets or sets the page number for paged queries.
|
|
122623
|
-
schema:
|
|
122624
|
-
type: integer
|
|
122625
|
-
format: int32
|
|
122626
|
-
- name: Take
|
|
122627
|
-
in: query
|
|
122628
|
-
description: 'Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.'
|
|
122629
|
-
schema:
|
|
122630
|
-
type: integer
|
|
122631
|
-
format: int32
|
|
122632
|
-
- name: Skip
|
|
122633
|
-
in: query
|
|
122634
|
-
description: 'Gets or sets how much items to skip from begining of db table, when this is set page is always 1.'
|
|
122635
|
-
schema:
|
|
122636
|
-
type: integer
|
|
122637
|
-
format: int32
|
|
122638
|
-
- name: LimitListRequests
|
|
122639
|
-
in: query
|
|
122640
|
-
description: Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
122641
|
-
schema:
|
|
122642
|
-
type: boolean
|
|
122643
|
-
- name: TenantId
|
|
122644
|
-
in: query
|
|
122645
|
-
description: Gets or sets the Tenant Id.
|
|
122646
|
-
schema:
|
|
122647
|
-
type: string
|
|
122648
|
-
format: uuid
|
|
122649
|
-
- name: ModifiedById
|
|
122650
|
-
in: query
|
|
122651
|
-
description: Gets or sets the Modifed By Id.
|
|
122652
|
-
schema:
|
|
122653
|
-
type: string
|
|
122654
|
-
format: uuid
|
|
122655
|
-
- name: ModifiedByIds
|
|
122656
|
-
in: query
|
|
122657
|
-
description: Gets or sets the Modifed By Ids.
|
|
122658
|
-
schema:
|
|
122659
|
-
type: array
|
|
122660
|
-
items:
|
|
122661
|
-
type: string
|
|
122662
|
-
format: uuid
|
|
122663
|
-
- name: DateCreatedGTE
|
|
122664
|
-
in: query
|
|
122665
|
-
description: Gets or sets the Date Created greater than equal to.
|
|
122666
|
-
schema:
|
|
122667
|
-
type: string
|
|
122668
|
-
format: date-time
|
|
122669
|
-
- name: DateCreatedLTE
|
|
122670
|
-
in: query
|
|
122671
|
-
description: Gets or sets the Date Created less than equal to.
|
|
122672
|
-
schema:
|
|
122673
|
-
type: string
|
|
122674
|
-
format: date-time
|
|
122675
|
-
- name: IsLive
|
|
122676
|
-
in: query
|
|
122677
|
-
description: Gets or sets the queryable only is live status.
|
|
122678
|
-
schema:
|
|
122679
|
-
type: boolean
|
|
122680
|
-
- name: SortOrderDirection
|
|
122681
|
-
in: query
|
|
122682
|
-
description: Gets or sets the sort order direction.
|
|
122683
|
-
schema:
|
|
122684
|
-
$ref: '#/components/schemas/SearchSortOrderDirection'
|
|
122685
|
-
responses:
|
|
122686
|
-
'200':
|
|
122687
|
-
description: OK
|
|
122688
|
-
content:
|
|
122689
|
-
text/plain:
|
|
122690
|
-
schema:
|
|
122691
|
-
$ref: '#/components/schemas/SurveyPage'
|
|
122692
|
-
application/json:
|
|
122693
|
-
schema:
|
|
122694
|
-
$ref: '#/components/schemas/SurveyPage'
|
|
122695
|
-
text/json:
|
|
122696
|
-
schema:
|
|
122697
|
-
$ref: '#/components/schemas/SurveyPage'
|
|
122698
|
-
'400':
|
|
122699
|
-
description: Bad Request
|
|
122700
|
-
content:
|
|
122701
|
-
text/plain:
|
|
122702
|
-
schema:
|
|
122703
|
-
$ref: '#/components/schemas/ReachError'
|
|
122704
|
-
application/json:
|
|
122705
|
-
schema:
|
|
122706
|
-
$ref: '#/components/schemas/ReachError'
|
|
122707
|
-
text/json:
|
|
122708
|
-
schema:
|
|
122709
|
-
$ref: '#/components/schemas/ReachError'
|
|
122710
|
-
'500':
|
|
122711
|
-
description: Internal Server Error
|
|
122712
|
-
content:
|
|
122713
|
-
text/plain:
|
|
122714
|
-
schema:
|
|
122715
|
-
$ref: '#/components/schemas/ReachError'
|
|
122716
|
-
application/json:
|
|
122717
|
-
schema:
|
|
122718
|
-
$ref: '#/components/schemas/ReachError'
|
|
122719
|
-
text/json:
|
|
122720
|
-
schema:
|
|
122721
|
-
$ref: '#/components/schemas/ReachError'
|
|
122722
|
-
'422':
|
|
122723
|
-
description: Unprocessable Content
|
|
122724
|
-
content:
|
|
122725
|
-
text/plain:
|
|
122726
|
-
schema:
|
|
122727
|
-
$ref: '#/components/schemas/ValidationResultModel'
|
|
122728
|
-
application/json:
|
|
122729
|
-
schema:
|
|
122730
|
-
$ref: '#/components/schemas/ValidationResultModel'
|
|
122731
|
-
text/json:
|
|
122732
|
-
schema:
|
|
122733
|
-
$ref: '#/components/schemas/ValidationResultModel'
|
|
122734
|
-
'/api/surveys/{id}':
|
|
122931
|
+
get:
|
|
122932
|
+
tags:
|
|
122933
|
+
- Surveys
|
|
122934
|
+
summary: Gets a list of resources.
|
|
122935
|
+
operationId: GetPage
|
|
122936
|
+
parameters:
|
|
122937
|
+
- name: Id
|
|
122938
|
+
in: query
|
|
122939
|
+
description: Gets or sets the queryable Survey Id.
|
|
122940
|
+
schema:
|
|
122941
|
+
type: string
|
|
122942
|
+
format: uuid
|
|
122943
|
+
- name: Archived
|
|
122944
|
+
in: query
|
|
122945
|
+
description: Gets or sets the queryable archived value.
|
|
122946
|
+
schema:
|
|
122947
|
+
type: boolean
|
|
122948
|
+
- name: ResponseDateGTE
|
|
122949
|
+
in: query
|
|
122950
|
+
description: Gets or sets the queryable response date greater than or equal to query params.
|
|
122951
|
+
schema:
|
|
122952
|
+
type: string
|
|
122953
|
+
format: date-time
|
|
122954
|
+
- name: ResponseDateLTE
|
|
122955
|
+
in: query
|
|
122956
|
+
description: Gets or sets the queryable response date less than or equal to query params.
|
|
122957
|
+
schema:
|
|
122958
|
+
type: string
|
|
122959
|
+
format: date-time
|
|
122960
|
+
- name: Email
|
|
122961
|
+
in: query
|
|
122962
|
+
description: Gets or sets the queryable email address query params.
|
|
122963
|
+
schema:
|
|
122964
|
+
type: string
|
|
122965
|
+
- name: IncludeSummary
|
|
122966
|
+
in: query
|
|
122967
|
+
description: Gets or sets if responsesCount and lastResponseDate should be included.
|
|
122968
|
+
schema:
|
|
122969
|
+
type: boolean
|
|
122970
|
+
- name: PageNumber
|
|
122971
|
+
in: query
|
|
122972
|
+
description: Gets or sets the page number for paged queries.
|
|
122973
|
+
schema:
|
|
122974
|
+
type: integer
|
|
122975
|
+
format: int32
|
|
122976
|
+
- name: Take
|
|
122977
|
+
in: query
|
|
122978
|
+
description: 'Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.'
|
|
122979
|
+
schema:
|
|
122980
|
+
type: integer
|
|
122981
|
+
format: int32
|
|
122982
|
+
- name: Skip
|
|
122983
|
+
in: query
|
|
122984
|
+
description: 'Gets or sets how much items to skip from begining of db table, when this is set page is always 1.'
|
|
122985
|
+
schema:
|
|
122986
|
+
type: integer
|
|
122987
|
+
format: int32
|
|
122988
|
+
- name: LimitListRequests
|
|
122989
|
+
in: query
|
|
122990
|
+
description: Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
122991
|
+
schema:
|
|
122992
|
+
type: boolean
|
|
122993
|
+
- name: TenantId
|
|
122994
|
+
in: query
|
|
122995
|
+
description: Gets or sets the Tenant Id.
|
|
122996
|
+
schema:
|
|
122997
|
+
type: string
|
|
122998
|
+
format: uuid
|
|
122999
|
+
- name: ModifiedById
|
|
123000
|
+
in: query
|
|
123001
|
+
description: Gets or sets the Modifed By Id.
|
|
123002
|
+
schema:
|
|
123003
|
+
type: string
|
|
123004
|
+
format: uuid
|
|
123005
|
+
- name: ModifiedByIds
|
|
123006
|
+
in: query
|
|
123007
|
+
description: Gets or sets the Modifed By Ids.
|
|
123008
|
+
schema:
|
|
123009
|
+
type: array
|
|
123010
|
+
items:
|
|
123011
|
+
type: string
|
|
123012
|
+
format: uuid
|
|
123013
|
+
- name: DateCreatedGTE
|
|
123014
|
+
in: query
|
|
123015
|
+
description: Gets or sets the Date Created greater than equal to.
|
|
123016
|
+
schema:
|
|
123017
|
+
type: string
|
|
123018
|
+
format: date-time
|
|
123019
|
+
- name: DateCreatedLTE
|
|
123020
|
+
in: query
|
|
123021
|
+
description: Gets or sets the Date Created less than equal to.
|
|
123022
|
+
schema:
|
|
123023
|
+
type: string
|
|
123024
|
+
format: date-time
|
|
123025
|
+
- name: IsLive
|
|
123026
|
+
in: query
|
|
123027
|
+
description: Gets or sets the queryable only is live status.
|
|
123028
|
+
schema:
|
|
123029
|
+
type: boolean
|
|
123030
|
+
- name: SortOrderDirection
|
|
123031
|
+
in: query
|
|
123032
|
+
description: Gets or sets the sort order direction.
|
|
123033
|
+
schema:
|
|
123034
|
+
$ref: '#/components/schemas/SearchSortOrderDirection'
|
|
123035
|
+
responses:
|
|
123036
|
+
'200':
|
|
123037
|
+
description: OK
|
|
123038
|
+
content:
|
|
123039
|
+
text/plain:
|
|
123040
|
+
schema:
|
|
123041
|
+
$ref: '#/components/schemas/SurveyPage'
|
|
123042
|
+
application/json:
|
|
123043
|
+
schema:
|
|
123044
|
+
$ref: '#/components/schemas/SurveyPage'
|
|
123045
|
+
text/json:
|
|
123046
|
+
schema:
|
|
123047
|
+
$ref: '#/components/schemas/SurveyPage'
|
|
123048
|
+
'400':
|
|
123049
|
+
description: Bad Request
|
|
123050
|
+
content:
|
|
123051
|
+
text/plain:
|
|
123052
|
+
schema:
|
|
123053
|
+
$ref: '#/components/schemas/ReachError'
|
|
123054
|
+
application/json:
|
|
123055
|
+
schema:
|
|
123056
|
+
$ref: '#/components/schemas/ReachError'
|
|
123057
|
+
text/json:
|
|
123058
|
+
schema:
|
|
123059
|
+
$ref: '#/components/schemas/ReachError'
|
|
123060
|
+
'500':
|
|
123061
|
+
description: Internal Server Error
|
|
123062
|
+
content:
|
|
123063
|
+
text/plain:
|
|
123064
|
+
schema:
|
|
123065
|
+
$ref: '#/components/schemas/ReachError'
|
|
123066
|
+
application/json:
|
|
123067
|
+
schema:
|
|
123068
|
+
$ref: '#/components/schemas/ReachError'
|
|
123069
|
+
text/json:
|
|
123070
|
+
schema:
|
|
123071
|
+
$ref: '#/components/schemas/ReachError'
|
|
123072
|
+
'422':
|
|
123073
|
+
description: Unprocessable Content
|
|
123074
|
+
content:
|
|
123075
|
+
text/plain:
|
|
123076
|
+
schema:
|
|
123077
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
123078
|
+
application/json:
|
|
123079
|
+
schema:
|
|
123080
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
123081
|
+
text/json:
|
|
123082
|
+
schema:
|
|
123083
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
123084
|
+
'/api/surveys/{id}':
|
|
123085
|
+
delete:
|
|
123086
|
+
tags:
|
|
123087
|
+
- Surveys
|
|
123088
|
+
summary: Deletes the resource.
|
|
123089
|
+
operationId: DeleteById
|
|
123090
|
+
parameters:
|
|
123091
|
+
- name: id
|
|
123092
|
+
in: path
|
|
123093
|
+
description: The <typeparamref name="TObject" /> id.
|
|
123094
|
+
required: true
|
|
123095
|
+
schema:
|
|
123096
|
+
type: string
|
|
123097
|
+
format: uuid
|
|
123098
|
+
responses:
|
|
123099
|
+
'200':
|
|
123100
|
+
description: OK
|
|
123101
|
+
'400':
|
|
123102
|
+
description: Bad Request
|
|
123103
|
+
content:
|
|
123104
|
+
text/plain:
|
|
123105
|
+
schema:
|
|
123106
|
+
$ref: '#/components/schemas/ReachError'
|
|
123107
|
+
application/json:
|
|
123108
|
+
schema:
|
|
123109
|
+
$ref: '#/components/schemas/ReachError'
|
|
123110
|
+
text/json:
|
|
123111
|
+
schema:
|
|
123112
|
+
$ref: '#/components/schemas/ReachError'
|
|
123113
|
+
'500':
|
|
123114
|
+
description: Internal Server Error
|
|
123115
|
+
content:
|
|
123116
|
+
text/plain:
|
|
123117
|
+
schema:
|
|
123118
|
+
$ref: '#/components/schemas/ReachError'
|
|
123119
|
+
application/json:
|
|
123120
|
+
schema:
|
|
123121
|
+
$ref: '#/components/schemas/ReachError'
|
|
123122
|
+
text/json:
|
|
123123
|
+
schema:
|
|
123124
|
+
$ref: '#/components/schemas/ReachError'
|
|
123125
|
+
'422':
|
|
123126
|
+
description: Unprocessable Content
|
|
123127
|
+
content:
|
|
123128
|
+
text/plain:
|
|
123129
|
+
schema:
|
|
123130
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
123131
|
+
application/json:
|
|
123132
|
+
schema:
|
|
123133
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
123134
|
+
text/json:
|
|
123135
|
+
schema:
|
|
123136
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
123137
|
+
get:
|
|
123138
|
+
tags:
|
|
123139
|
+
- Surveys
|
|
123140
|
+
summary: Gets the resource by its Id.
|
|
123141
|
+
operationId: GetObject
|
|
123142
|
+
parameters:
|
|
123143
|
+
- name: id
|
|
123144
|
+
in: path
|
|
123145
|
+
description: The <typeparamref name="TObject" /> id.
|
|
123146
|
+
required: true
|
|
123147
|
+
schema:
|
|
123148
|
+
type: string
|
|
123149
|
+
format: uuid
|
|
123150
|
+
responses:
|
|
123151
|
+
'200':
|
|
123152
|
+
description: OK
|
|
123153
|
+
content:
|
|
123154
|
+
text/plain:
|
|
123155
|
+
schema:
|
|
123156
|
+
$ref: '#/components/schemas/Survey'
|
|
123157
|
+
application/json:
|
|
123158
|
+
schema:
|
|
123159
|
+
$ref: '#/components/schemas/Survey'
|
|
123160
|
+
text/json:
|
|
123161
|
+
schema:
|
|
123162
|
+
$ref: '#/components/schemas/Survey'
|
|
123163
|
+
'400':
|
|
123164
|
+
description: Bad Request
|
|
123165
|
+
content:
|
|
123166
|
+
text/plain:
|
|
123167
|
+
schema:
|
|
123168
|
+
$ref: '#/components/schemas/ReachError'
|
|
123169
|
+
application/json:
|
|
123170
|
+
schema:
|
|
123171
|
+
$ref: '#/components/schemas/ReachError'
|
|
123172
|
+
text/json:
|
|
123173
|
+
schema:
|
|
123174
|
+
$ref: '#/components/schemas/ReachError'
|
|
123175
|
+
'500':
|
|
123176
|
+
description: Internal Server Error
|
|
123177
|
+
content:
|
|
123178
|
+
text/plain:
|
|
123179
|
+
schema:
|
|
123180
|
+
$ref: '#/components/schemas/ReachError'
|
|
123181
|
+
application/json:
|
|
123182
|
+
schema:
|
|
123183
|
+
$ref: '#/components/schemas/ReachError'
|
|
123184
|
+
text/json:
|
|
123185
|
+
schema:
|
|
123186
|
+
$ref: '#/components/schemas/ReachError'
|
|
123187
|
+
'422':
|
|
123188
|
+
description: Unprocessable Content
|
|
123189
|
+
content:
|
|
123190
|
+
text/plain:
|
|
123191
|
+
schema:
|
|
123192
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
123193
|
+
application/json:
|
|
123194
|
+
schema:
|
|
123195
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
123196
|
+
text/json:
|
|
123197
|
+
schema:
|
|
123198
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
123199
|
+
'/api/surveys/{id}/deletable':
|
|
123200
|
+
get:
|
|
123201
|
+
tags:
|
|
123202
|
+
- Surveys
|
|
123203
|
+
summary: Returns a value indicating whether the resource is deletable.
|
|
123204
|
+
operationId: CanDelete
|
|
123205
|
+
parameters:
|
|
123206
|
+
- name: id
|
|
123207
|
+
in: path
|
|
123208
|
+
description: The <typeparamref name="TObject" /> id.
|
|
123209
|
+
required: true
|
|
123210
|
+
schema:
|
|
123211
|
+
type: string
|
|
123212
|
+
format: uuid
|
|
123213
|
+
responses:
|
|
123214
|
+
'200':
|
|
123215
|
+
description: OK
|
|
123216
|
+
content:
|
|
123217
|
+
text/plain:
|
|
123218
|
+
schema:
|
|
123219
|
+
type: boolean
|
|
123220
|
+
application/json:
|
|
123221
|
+
schema:
|
|
123222
|
+
type: boolean
|
|
123223
|
+
text/json:
|
|
123224
|
+
schema:
|
|
123225
|
+
type: boolean
|
|
123226
|
+
'400':
|
|
123227
|
+
description: Bad Request
|
|
123228
|
+
content:
|
|
123229
|
+
text/plain:
|
|
123230
|
+
schema:
|
|
123231
|
+
$ref: '#/components/schemas/ReachError'
|
|
123232
|
+
application/json:
|
|
123233
|
+
schema:
|
|
123234
|
+
$ref: '#/components/schemas/ReachError'
|
|
123235
|
+
text/json:
|
|
123236
|
+
schema:
|
|
123237
|
+
$ref: '#/components/schemas/ReachError'
|
|
123238
|
+
'500':
|
|
123239
|
+
description: Internal Server Error
|
|
123240
|
+
content:
|
|
123241
|
+
text/plain:
|
|
123242
|
+
schema:
|
|
123243
|
+
$ref: '#/components/schemas/ReachError'
|
|
123244
|
+
application/json:
|
|
123245
|
+
schema:
|
|
123246
|
+
$ref: '#/components/schemas/ReachError'
|
|
123247
|
+
text/json:
|
|
123248
|
+
schema:
|
|
123249
|
+
$ref: '#/components/schemas/ReachError'
|
|
123250
|
+
'422':
|
|
123251
|
+
description: Unprocessable Content
|
|
123252
|
+
content:
|
|
123253
|
+
text/plain:
|
|
123254
|
+
schema:
|
|
123255
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
123256
|
+
application/json:
|
|
123257
|
+
schema:
|
|
123258
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
123259
|
+
text/json:
|
|
123260
|
+
schema:
|
|
123261
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
123262
|
+
/api/surveys/exists:
|
|
123263
|
+
get:
|
|
123264
|
+
tags:
|
|
123265
|
+
- Surveys
|
|
123266
|
+
summary: Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
123267
|
+
operationId: Exists
|
|
123268
|
+
parameters:
|
|
123269
|
+
- name: Id
|
|
123270
|
+
in: query
|
|
123271
|
+
description: Gets or sets the queryable Survey Id.
|
|
123272
|
+
schema:
|
|
123273
|
+
type: string
|
|
123274
|
+
format: uuid
|
|
123275
|
+
- name: Archived
|
|
123276
|
+
in: query
|
|
123277
|
+
description: Gets or sets the queryable archived value.
|
|
123278
|
+
schema:
|
|
123279
|
+
type: boolean
|
|
123280
|
+
- name: ResponseDateGTE
|
|
123281
|
+
in: query
|
|
123282
|
+
description: Gets or sets the queryable response date greater than or equal to query params.
|
|
123283
|
+
schema:
|
|
123284
|
+
type: string
|
|
123285
|
+
format: date-time
|
|
123286
|
+
- name: ResponseDateLTE
|
|
123287
|
+
in: query
|
|
123288
|
+
description: Gets or sets the queryable response date less than or equal to query params.
|
|
123289
|
+
schema:
|
|
123290
|
+
type: string
|
|
123291
|
+
format: date-time
|
|
123292
|
+
- name: Email
|
|
123293
|
+
in: query
|
|
123294
|
+
description: Gets or sets the queryable email address query params.
|
|
123295
|
+
schema:
|
|
123296
|
+
type: string
|
|
123297
|
+
- name: IncludeSummary
|
|
123298
|
+
in: query
|
|
123299
|
+
description: Gets or sets if responsesCount and lastResponseDate should be included.
|
|
123300
|
+
schema:
|
|
123301
|
+
type: boolean
|
|
123302
|
+
- name: PageNumber
|
|
123303
|
+
in: query
|
|
123304
|
+
description: Gets or sets the page number for paged queries.
|
|
123305
|
+
schema:
|
|
123306
|
+
type: integer
|
|
123307
|
+
format: int32
|
|
123308
|
+
- name: Take
|
|
123309
|
+
in: query
|
|
123310
|
+
description: 'Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.'
|
|
123311
|
+
schema:
|
|
123312
|
+
type: integer
|
|
123313
|
+
format: int32
|
|
123314
|
+
- name: Skip
|
|
123315
|
+
in: query
|
|
123316
|
+
description: 'Gets or sets how much items to skip from begining of db table, when this is set page is always 1.'
|
|
123317
|
+
schema:
|
|
123318
|
+
type: integer
|
|
123319
|
+
format: int32
|
|
123320
|
+
- name: LimitListRequests
|
|
123321
|
+
in: query
|
|
123322
|
+
description: Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
123323
|
+
schema:
|
|
123324
|
+
type: boolean
|
|
123325
|
+
- name: TenantId
|
|
123326
|
+
in: query
|
|
123327
|
+
description: Gets or sets the Tenant Id.
|
|
123328
|
+
schema:
|
|
123329
|
+
type: string
|
|
123330
|
+
format: uuid
|
|
123331
|
+
- name: ModifiedById
|
|
123332
|
+
in: query
|
|
123333
|
+
description: Gets or sets the Modifed By Id.
|
|
123334
|
+
schema:
|
|
123335
|
+
type: string
|
|
123336
|
+
format: uuid
|
|
123337
|
+
- name: ModifiedByIds
|
|
123338
|
+
in: query
|
|
123339
|
+
description: Gets or sets the Modifed By Ids.
|
|
123340
|
+
schema:
|
|
123341
|
+
type: array
|
|
123342
|
+
items:
|
|
123343
|
+
type: string
|
|
123344
|
+
format: uuid
|
|
123345
|
+
- name: DateCreatedGTE
|
|
123346
|
+
in: query
|
|
123347
|
+
description: Gets or sets the Date Created greater than equal to.
|
|
123348
|
+
schema:
|
|
123349
|
+
type: string
|
|
123350
|
+
format: date-time
|
|
123351
|
+
- name: DateCreatedLTE
|
|
123352
|
+
in: query
|
|
123353
|
+
description: Gets or sets the Date Created less than equal to.
|
|
123354
|
+
schema:
|
|
123355
|
+
type: string
|
|
123356
|
+
format: date-time
|
|
123357
|
+
- name: IsLive
|
|
123358
|
+
in: query
|
|
123359
|
+
description: Gets or sets the queryable only is live status.
|
|
123360
|
+
schema:
|
|
123361
|
+
type: boolean
|
|
123362
|
+
- name: SortOrderDirection
|
|
123363
|
+
in: query
|
|
123364
|
+
description: Gets or sets the sort order direction.
|
|
123365
|
+
schema:
|
|
123366
|
+
$ref: '#/components/schemas/SearchSortOrderDirection'
|
|
123367
|
+
responses:
|
|
123368
|
+
'200':
|
|
123369
|
+
description: OK
|
|
123370
|
+
content:
|
|
123371
|
+
text/plain:
|
|
123372
|
+
schema:
|
|
123373
|
+
type: boolean
|
|
123374
|
+
application/json:
|
|
123375
|
+
schema:
|
|
123376
|
+
type: boolean
|
|
123377
|
+
text/json:
|
|
123378
|
+
schema:
|
|
123379
|
+
type: boolean
|
|
123380
|
+
'400':
|
|
123381
|
+
description: Bad Request
|
|
123382
|
+
content:
|
|
123383
|
+
text/plain:
|
|
123384
|
+
schema:
|
|
123385
|
+
$ref: '#/components/schemas/ReachError'
|
|
123386
|
+
application/json:
|
|
123387
|
+
schema:
|
|
123388
|
+
$ref: '#/components/schemas/ReachError'
|
|
123389
|
+
text/json:
|
|
123390
|
+
schema:
|
|
123391
|
+
$ref: '#/components/schemas/ReachError'
|
|
123392
|
+
'500':
|
|
123393
|
+
description: Internal Server Error
|
|
123394
|
+
content:
|
|
123395
|
+
text/plain:
|
|
123396
|
+
schema:
|
|
123397
|
+
$ref: '#/components/schemas/ReachError'
|
|
123398
|
+
application/json:
|
|
123399
|
+
schema:
|
|
123400
|
+
$ref: '#/components/schemas/ReachError'
|
|
123401
|
+
text/json:
|
|
123402
|
+
schema:
|
|
123403
|
+
$ref: '#/components/schemas/ReachError'
|
|
123404
|
+
'422':
|
|
123405
|
+
description: Unprocessable Content
|
|
123406
|
+
content:
|
|
123407
|
+
text/plain:
|
|
123408
|
+
schema:
|
|
123409
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
123410
|
+
application/json:
|
|
123411
|
+
schema:
|
|
123412
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
123413
|
+
text/json:
|
|
123414
|
+
schema:
|
|
123415
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
123416
|
+
/api/surveys/count:
|
|
123417
|
+
get:
|
|
123418
|
+
tags:
|
|
123419
|
+
- Surveys
|
|
123420
|
+
summary: Returns the number of results in the database given the provided search params.
|
|
123421
|
+
operationId: Count
|
|
123422
|
+
parameters:
|
|
123423
|
+
- name: Id
|
|
123424
|
+
in: query
|
|
123425
|
+
description: Gets or sets the queryable Survey Id.
|
|
123426
|
+
schema:
|
|
123427
|
+
type: string
|
|
123428
|
+
format: uuid
|
|
123429
|
+
- name: Archived
|
|
123430
|
+
in: query
|
|
123431
|
+
description: Gets or sets the queryable archived value.
|
|
123432
|
+
schema:
|
|
123433
|
+
type: boolean
|
|
123434
|
+
- name: ResponseDateGTE
|
|
123435
|
+
in: query
|
|
123436
|
+
description: Gets or sets the queryable response date greater than or equal to query params.
|
|
123437
|
+
schema:
|
|
123438
|
+
type: string
|
|
123439
|
+
format: date-time
|
|
123440
|
+
- name: ResponseDateLTE
|
|
123441
|
+
in: query
|
|
123442
|
+
description: Gets or sets the queryable response date less than or equal to query params.
|
|
123443
|
+
schema:
|
|
123444
|
+
type: string
|
|
123445
|
+
format: date-time
|
|
123446
|
+
- name: Email
|
|
123447
|
+
in: query
|
|
123448
|
+
description: Gets or sets the queryable email address query params.
|
|
123449
|
+
schema:
|
|
123450
|
+
type: string
|
|
123451
|
+
- name: IncludeSummary
|
|
123452
|
+
in: query
|
|
123453
|
+
description: Gets or sets if responsesCount and lastResponseDate should be included.
|
|
123454
|
+
schema:
|
|
123455
|
+
type: boolean
|
|
123456
|
+
- name: PageNumber
|
|
123457
|
+
in: query
|
|
123458
|
+
description: Gets or sets the page number for paged queries.
|
|
123459
|
+
schema:
|
|
123460
|
+
type: integer
|
|
123461
|
+
format: int32
|
|
123462
|
+
- name: Take
|
|
123463
|
+
in: query
|
|
123464
|
+
description: 'Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.'
|
|
123465
|
+
schema:
|
|
123466
|
+
type: integer
|
|
123467
|
+
format: int32
|
|
123468
|
+
- name: Skip
|
|
123469
|
+
in: query
|
|
123470
|
+
description: 'Gets or sets how much items to skip from begining of db table, when this is set page is always 1.'
|
|
123471
|
+
schema:
|
|
123472
|
+
type: integer
|
|
123473
|
+
format: int32
|
|
123474
|
+
- name: LimitListRequests
|
|
123475
|
+
in: query
|
|
123476
|
+
description: Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
123477
|
+
schema:
|
|
123478
|
+
type: boolean
|
|
123479
|
+
- name: TenantId
|
|
123480
|
+
in: query
|
|
123481
|
+
description: Gets or sets the Tenant Id.
|
|
123482
|
+
schema:
|
|
123483
|
+
type: string
|
|
123484
|
+
format: uuid
|
|
123485
|
+
- name: ModifiedById
|
|
123486
|
+
in: query
|
|
123487
|
+
description: Gets or sets the Modifed By Id.
|
|
123488
|
+
schema:
|
|
123489
|
+
type: string
|
|
123490
|
+
format: uuid
|
|
123491
|
+
- name: ModifiedByIds
|
|
123492
|
+
in: query
|
|
123493
|
+
description: Gets or sets the Modifed By Ids.
|
|
123494
|
+
schema:
|
|
123495
|
+
type: array
|
|
123496
|
+
items:
|
|
123497
|
+
type: string
|
|
123498
|
+
format: uuid
|
|
123499
|
+
- name: DateCreatedGTE
|
|
123500
|
+
in: query
|
|
123501
|
+
description: Gets or sets the Date Created greater than equal to.
|
|
123502
|
+
schema:
|
|
123503
|
+
type: string
|
|
123504
|
+
format: date-time
|
|
123505
|
+
- name: DateCreatedLTE
|
|
123506
|
+
in: query
|
|
123507
|
+
description: Gets or sets the Date Created less than equal to.
|
|
123508
|
+
schema:
|
|
123509
|
+
type: string
|
|
123510
|
+
format: date-time
|
|
123511
|
+
- name: IsLive
|
|
123512
|
+
in: query
|
|
123513
|
+
description: Gets or sets the queryable only is live status.
|
|
123514
|
+
schema:
|
|
123515
|
+
type: boolean
|
|
123516
|
+
- name: SortOrderDirection
|
|
123517
|
+
in: query
|
|
123518
|
+
description: Gets or sets the sort order direction.
|
|
123519
|
+
schema:
|
|
123520
|
+
$ref: '#/components/schemas/SearchSortOrderDirection'
|
|
123521
|
+
responses:
|
|
123522
|
+
'200':
|
|
123523
|
+
description: OK
|
|
123524
|
+
content:
|
|
123525
|
+
text/plain:
|
|
123526
|
+
schema:
|
|
123527
|
+
type: integer
|
|
123528
|
+
format: int32
|
|
123529
|
+
application/json:
|
|
123530
|
+
schema:
|
|
123531
|
+
type: integer
|
|
123532
|
+
format: int32
|
|
123533
|
+
text/json:
|
|
123534
|
+
schema:
|
|
123535
|
+
type: integer
|
|
123536
|
+
format: int32
|
|
123537
|
+
'400':
|
|
123538
|
+
description: Bad Request
|
|
123539
|
+
content:
|
|
123540
|
+
text/plain:
|
|
123541
|
+
schema:
|
|
123542
|
+
$ref: '#/components/schemas/ReachError'
|
|
123543
|
+
application/json:
|
|
123544
|
+
schema:
|
|
123545
|
+
$ref: '#/components/schemas/ReachError'
|
|
123546
|
+
text/json:
|
|
123547
|
+
schema:
|
|
123548
|
+
$ref: '#/components/schemas/ReachError'
|
|
123549
|
+
'500':
|
|
123550
|
+
description: Internal Server Error
|
|
123551
|
+
content:
|
|
123552
|
+
text/plain:
|
|
123553
|
+
schema:
|
|
123554
|
+
$ref: '#/components/schemas/ReachError'
|
|
123555
|
+
application/json:
|
|
123556
|
+
schema:
|
|
123557
|
+
$ref: '#/components/schemas/ReachError'
|
|
123558
|
+
text/json:
|
|
123559
|
+
schema:
|
|
123560
|
+
$ref: '#/components/schemas/ReachError'
|
|
123561
|
+
'422':
|
|
123562
|
+
description: Unprocessable Content
|
|
123563
|
+
content:
|
|
123564
|
+
text/plain:
|
|
123565
|
+
schema:
|
|
123566
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
123567
|
+
application/json:
|
|
123568
|
+
schema:
|
|
123569
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
123570
|
+
text/json:
|
|
123571
|
+
schema:
|
|
123572
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
123573
|
+
/api/surveys/without-references:
|
|
123574
|
+
get:
|
|
123575
|
+
tags:
|
|
123576
|
+
- Surveys
|
|
123577
|
+
summary: Gets a list of resources unpaged and without references.
|
|
123578
|
+
operationId: GetListWithoutReferences
|
|
123579
|
+
parameters:
|
|
123580
|
+
- name: Id
|
|
123581
|
+
in: query
|
|
123582
|
+
description: Gets or sets the queryable Survey Id.
|
|
123583
|
+
schema:
|
|
123584
|
+
type: string
|
|
123585
|
+
format: uuid
|
|
123586
|
+
- name: Archived
|
|
123587
|
+
in: query
|
|
123588
|
+
description: Gets or sets the queryable archived value.
|
|
123589
|
+
schema:
|
|
123590
|
+
type: boolean
|
|
123591
|
+
- name: ResponseDateGTE
|
|
123592
|
+
in: query
|
|
123593
|
+
description: Gets or sets the queryable response date greater than or equal to query params.
|
|
123594
|
+
schema:
|
|
123595
|
+
type: string
|
|
123596
|
+
format: date-time
|
|
123597
|
+
- name: ResponseDateLTE
|
|
123598
|
+
in: query
|
|
123599
|
+
description: Gets or sets the queryable response date less than or equal to query params.
|
|
123600
|
+
schema:
|
|
123601
|
+
type: string
|
|
123602
|
+
format: date-time
|
|
123603
|
+
- name: Email
|
|
123604
|
+
in: query
|
|
123605
|
+
description: Gets or sets the queryable email address query params.
|
|
123606
|
+
schema:
|
|
123607
|
+
type: string
|
|
123608
|
+
- name: IncludeSummary
|
|
123609
|
+
in: query
|
|
123610
|
+
description: Gets or sets if responsesCount and lastResponseDate should be included.
|
|
123611
|
+
schema:
|
|
123612
|
+
type: boolean
|
|
123613
|
+
- name: PageNumber
|
|
123614
|
+
in: query
|
|
123615
|
+
description: Gets or sets the page number for paged queries.
|
|
123616
|
+
schema:
|
|
123617
|
+
type: integer
|
|
123618
|
+
format: int32
|
|
123619
|
+
- name: Take
|
|
123620
|
+
in: query
|
|
123621
|
+
description: 'Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.'
|
|
123622
|
+
schema:
|
|
123623
|
+
type: integer
|
|
123624
|
+
format: int32
|
|
123625
|
+
- name: Skip
|
|
123626
|
+
in: query
|
|
123627
|
+
description: 'Gets or sets how much items to skip from begining of db table, when this is set page is always 1.'
|
|
123628
|
+
schema:
|
|
123629
|
+
type: integer
|
|
123630
|
+
format: int32
|
|
123631
|
+
- name: LimitListRequests
|
|
123632
|
+
in: query
|
|
123633
|
+
description: Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
123634
|
+
schema:
|
|
123635
|
+
type: boolean
|
|
123636
|
+
- name: TenantId
|
|
123637
|
+
in: query
|
|
123638
|
+
description: Gets or sets the Tenant Id.
|
|
123639
|
+
schema:
|
|
123640
|
+
type: string
|
|
123641
|
+
format: uuid
|
|
123642
|
+
- name: ModifiedById
|
|
123643
|
+
in: query
|
|
123644
|
+
description: Gets or sets the Modifed By Id.
|
|
123645
|
+
schema:
|
|
123646
|
+
type: string
|
|
123647
|
+
format: uuid
|
|
123648
|
+
- name: ModifiedByIds
|
|
123649
|
+
in: query
|
|
123650
|
+
description: Gets or sets the Modifed By Ids.
|
|
123651
|
+
schema:
|
|
123652
|
+
type: array
|
|
123653
|
+
items:
|
|
123654
|
+
type: string
|
|
123655
|
+
format: uuid
|
|
123656
|
+
- name: DateCreatedGTE
|
|
123657
|
+
in: query
|
|
123658
|
+
description: Gets or sets the Date Created greater than equal to.
|
|
123659
|
+
schema:
|
|
123660
|
+
type: string
|
|
123661
|
+
format: date-time
|
|
123662
|
+
- name: DateCreatedLTE
|
|
123663
|
+
in: query
|
|
123664
|
+
description: Gets or sets the Date Created less than equal to.
|
|
123665
|
+
schema:
|
|
123666
|
+
type: string
|
|
123667
|
+
format: date-time
|
|
123668
|
+
- name: IsLive
|
|
123669
|
+
in: query
|
|
123670
|
+
description: Gets or sets the queryable only is live status.
|
|
123671
|
+
schema:
|
|
123672
|
+
type: boolean
|
|
123673
|
+
- name: SortOrderDirection
|
|
123674
|
+
in: query
|
|
123675
|
+
description: Gets or sets the sort order direction.
|
|
123676
|
+
schema:
|
|
123677
|
+
$ref: '#/components/schemas/SearchSortOrderDirection'
|
|
123678
|
+
responses:
|
|
123679
|
+
'200':
|
|
123680
|
+
description: OK
|
|
123681
|
+
content:
|
|
123682
|
+
text/plain:
|
|
123683
|
+
schema:
|
|
123684
|
+
type: array
|
|
123685
|
+
items:
|
|
123686
|
+
$ref: '#/components/schemas/Survey'
|
|
123687
|
+
application/json:
|
|
123688
|
+
schema:
|
|
123689
|
+
type: array
|
|
123690
|
+
items:
|
|
123691
|
+
$ref: '#/components/schemas/Survey'
|
|
123692
|
+
text/json:
|
|
123693
|
+
schema:
|
|
123694
|
+
type: array
|
|
123695
|
+
items:
|
|
123696
|
+
$ref: '#/components/schemas/Survey'
|
|
123697
|
+
'400':
|
|
123698
|
+
description: Bad Request
|
|
123699
|
+
content:
|
|
123700
|
+
text/plain:
|
|
123701
|
+
schema:
|
|
123702
|
+
$ref: '#/components/schemas/ReachError'
|
|
123703
|
+
application/json:
|
|
123704
|
+
schema:
|
|
123705
|
+
$ref: '#/components/schemas/ReachError'
|
|
123706
|
+
text/json:
|
|
123707
|
+
schema:
|
|
123708
|
+
$ref: '#/components/schemas/ReachError'
|
|
123709
|
+
'500':
|
|
123710
|
+
description: Internal Server Error
|
|
123711
|
+
content:
|
|
123712
|
+
text/plain:
|
|
123713
|
+
schema:
|
|
123714
|
+
$ref: '#/components/schemas/ReachError'
|
|
123715
|
+
application/json:
|
|
123716
|
+
schema:
|
|
123717
|
+
$ref: '#/components/schemas/ReachError'
|
|
123718
|
+
text/json:
|
|
123719
|
+
schema:
|
|
123720
|
+
$ref: '#/components/schemas/ReachError'
|
|
123721
|
+
'422':
|
|
123722
|
+
description: Unprocessable Content
|
|
123723
|
+
content:
|
|
123724
|
+
text/plain:
|
|
123725
|
+
schema:
|
|
123726
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
123727
|
+
application/json:
|
|
123728
|
+
schema:
|
|
123729
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
123730
|
+
text/json:
|
|
123731
|
+
schema:
|
|
123732
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
123733
|
+
/api/surveys/id-name:
|
|
123734
|
+
get:
|
|
123735
|
+
tags:
|
|
123736
|
+
- Surveys
|
|
123737
|
+
summary: Gets a list of resources.
|
|
123738
|
+
operationId: GetListIdName
|
|
123739
|
+
parameters:
|
|
123740
|
+
- name: Id
|
|
123741
|
+
in: query
|
|
123742
|
+
description: Gets or sets the queryable Survey Id.
|
|
123743
|
+
schema:
|
|
123744
|
+
type: string
|
|
123745
|
+
format: uuid
|
|
123746
|
+
- name: Archived
|
|
123747
|
+
in: query
|
|
123748
|
+
description: Gets or sets the queryable archived value.
|
|
123749
|
+
schema:
|
|
123750
|
+
type: boolean
|
|
123751
|
+
- name: ResponseDateGTE
|
|
123752
|
+
in: query
|
|
123753
|
+
description: Gets or sets the queryable response date greater than or equal to query params.
|
|
123754
|
+
schema:
|
|
123755
|
+
type: string
|
|
123756
|
+
format: date-time
|
|
123757
|
+
- name: ResponseDateLTE
|
|
123758
|
+
in: query
|
|
123759
|
+
description: Gets or sets the queryable response date less than or equal to query params.
|
|
123760
|
+
schema:
|
|
123761
|
+
type: string
|
|
123762
|
+
format: date-time
|
|
123763
|
+
- name: Email
|
|
123764
|
+
in: query
|
|
123765
|
+
description: Gets or sets the queryable email address query params.
|
|
123766
|
+
schema:
|
|
123767
|
+
type: string
|
|
123768
|
+
- name: IncludeSummary
|
|
123769
|
+
in: query
|
|
123770
|
+
description: Gets or sets if responsesCount and lastResponseDate should be included.
|
|
123771
|
+
schema:
|
|
123772
|
+
type: boolean
|
|
123773
|
+
- name: PageNumber
|
|
123774
|
+
in: query
|
|
123775
|
+
description: Gets or sets the page number for paged queries.
|
|
123776
|
+
schema:
|
|
123777
|
+
type: integer
|
|
123778
|
+
format: int32
|
|
123779
|
+
- name: Take
|
|
123780
|
+
in: query
|
|
123781
|
+
description: 'Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.'
|
|
123782
|
+
schema:
|
|
123783
|
+
type: integer
|
|
123784
|
+
format: int32
|
|
123785
|
+
- name: Skip
|
|
123786
|
+
in: query
|
|
123787
|
+
description: 'Gets or sets how much items to skip from begining of db table, when this is set page is always 1.'
|
|
123788
|
+
schema:
|
|
123789
|
+
type: integer
|
|
123790
|
+
format: int32
|
|
123791
|
+
- name: LimitListRequests
|
|
123792
|
+
in: query
|
|
123793
|
+
description: Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
123794
|
+
schema:
|
|
123795
|
+
type: boolean
|
|
123796
|
+
- name: TenantId
|
|
123797
|
+
in: query
|
|
123798
|
+
description: Gets or sets the Tenant Id.
|
|
123799
|
+
schema:
|
|
123800
|
+
type: string
|
|
123801
|
+
format: uuid
|
|
123802
|
+
- name: ModifiedById
|
|
123803
|
+
in: query
|
|
123804
|
+
description: Gets or sets the Modifed By Id.
|
|
123805
|
+
schema:
|
|
123806
|
+
type: string
|
|
123807
|
+
format: uuid
|
|
123808
|
+
- name: ModifiedByIds
|
|
123809
|
+
in: query
|
|
123810
|
+
description: Gets or sets the Modifed By Ids.
|
|
123811
|
+
schema:
|
|
123812
|
+
type: array
|
|
123813
|
+
items:
|
|
123814
|
+
type: string
|
|
123815
|
+
format: uuid
|
|
123816
|
+
- name: DateCreatedGTE
|
|
123817
|
+
in: query
|
|
123818
|
+
description: Gets or sets the Date Created greater than equal to.
|
|
123819
|
+
schema:
|
|
123820
|
+
type: string
|
|
123821
|
+
format: date-time
|
|
123822
|
+
- name: DateCreatedLTE
|
|
123823
|
+
in: query
|
|
123824
|
+
description: Gets or sets the Date Created less than equal to.
|
|
123825
|
+
schema:
|
|
123826
|
+
type: string
|
|
123827
|
+
format: date-time
|
|
123828
|
+
- name: IsLive
|
|
123829
|
+
in: query
|
|
123830
|
+
description: Gets or sets the queryable only is live status.
|
|
123831
|
+
schema:
|
|
123832
|
+
type: boolean
|
|
123833
|
+
- name: SortOrderDirection
|
|
123834
|
+
in: query
|
|
123835
|
+
description: Gets or sets the sort order direction.
|
|
123836
|
+
schema:
|
|
123837
|
+
$ref: '#/components/schemas/SearchSortOrderDirection'
|
|
123838
|
+
responses:
|
|
123839
|
+
'200':
|
|
123840
|
+
description: OK
|
|
123841
|
+
content:
|
|
123842
|
+
text/plain:
|
|
123843
|
+
schema:
|
|
123844
|
+
type: array
|
|
123845
|
+
items:
|
|
123846
|
+
$ref: '#/components/schemas/Survey'
|
|
123847
|
+
application/json:
|
|
123848
|
+
schema:
|
|
123849
|
+
type: array
|
|
123850
|
+
items:
|
|
123851
|
+
$ref: '#/components/schemas/Survey'
|
|
123852
|
+
text/json:
|
|
123853
|
+
schema:
|
|
123854
|
+
type: array
|
|
123855
|
+
items:
|
|
123856
|
+
$ref: '#/components/schemas/Survey'
|
|
123857
|
+
'400':
|
|
123858
|
+
description: Bad Request
|
|
123859
|
+
content:
|
|
123860
|
+
text/plain:
|
|
123861
|
+
schema:
|
|
123862
|
+
$ref: '#/components/schemas/ReachError'
|
|
123863
|
+
application/json:
|
|
123864
|
+
schema:
|
|
123865
|
+
$ref: '#/components/schemas/ReachError'
|
|
123866
|
+
text/json:
|
|
123867
|
+
schema:
|
|
123868
|
+
$ref: '#/components/schemas/ReachError'
|
|
123869
|
+
'500':
|
|
123870
|
+
description: Internal Server Error
|
|
123871
|
+
content:
|
|
123872
|
+
text/plain:
|
|
123873
|
+
schema:
|
|
123874
|
+
$ref: '#/components/schemas/ReachError'
|
|
123875
|
+
application/json:
|
|
123876
|
+
schema:
|
|
123877
|
+
$ref: '#/components/schemas/ReachError'
|
|
123878
|
+
text/json:
|
|
123879
|
+
schema:
|
|
123880
|
+
$ref: '#/components/schemas/ReachError'
|
|
123881
|
+
'422':
|
|
123882
|
+
description: Unprocessable Content
|
|
123883
|
+
content:
|
|
123884
|
+
text/plain:
|
|
123885
|
+
schema:
|
|
123886
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
123887
|
+
application/json:
|
|
123888
|
+
schema:
|
|
123889
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
123890
|
+
text/json:
|
|
123891
|
+
schema:
|
|
123892
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
123893
|
+
/api/template-details/v2-temporary-route:
|
|
123894
|
+
post:
|
|
123895
|
+
tags:
|
|
123896
|
+
- TemplateDetails
|
|
123897
|
+
summary: Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
123898
|
+
operationId: Post
|
|
123899
|
+
requestBody:
|
|
123900
|
+
description: The <typeparamref name="TObject" /> model.
|
|
123901
|
+
content:
|
|
123902
|
+
application/json:
|
|
123903
|
+
schema:
|
|
123904
|
+
$ref: '#/components/schemas/TemplateDetailPost'
|
|
123905
|
+
text/json:
|
|
123906
|
+
schema:
|
|
123907
|
+
$ref: '#/components/schemas/TemplateDetailPost'
|
|
123908
|
+
application/*+json:
|
|
123909
|
+
schema:
|
|
123910
|
+
$ref: '#/components/schemas/TemplateDetailPost'
|
|
123911
|
+
responses:
|
|
123912
|
+
'200':
|
|
123913
|
+
description: OK
|
|
123914
|
+
content:
|
|
123915
|
+
text/plain:
|
|
123916
|
+
schema:
|
|
123917
|
+
$ref: '#/components/schemas/TemplateDetail'
|
|
123918
|
+
application/json:
|
|
123919
|
+
schema:
|
|
123920
|
+
$ref: '#/components/schemas/TemplateDetail'
|
|
123921
|
+
text/json:
|
|
123922
|
+
schema:
|
|
123923
|
+
$ref: '#/components/schemas/TemplateDetail'
|
|
123924
|
+
'400':
|
|
123925
|
+
description: Bad Request
|
|
123926
|
+
content:
|
|
123927
|
+
text/plain:
|
|
123928
|
+
schema:
|
|
123929
|
+
$ref: '#/components/schemas/ReachError'
|
|
123930
|
+
application/json:
|
|
123931
|
+
schema:
|
|
123932
|
+
$ref: '#/components/schemas/ReachError'
|
|
123933
|
+
text/json:
|
|
123934
|
+
schema:
|
|
123935
|
+
$ref: '#/components/schemas/ReachError'
|
|
123936
|
+
'500':
|
|
123937
|
+
description: Internal Server Error
|
|
123938
|
+
content:
|
|
123939
|
+
text/plain:
|
|
123940
|
+
schema:
|
|
123941
|
+
$ref: '#/components/schemas/ReachError'
|
|
123942
|
+
application/json:
|
|
123943
|
+
schema:
|
|
123944
|
+
$ref: '#/components/schemas/ReachError'
|
|
123945
|
+
text/json:
|
|
123946
|
+
schema:
|
|
123947
|
+
$ref: '#/components/schemas/ReachError'
|
|
123948
|
+
'422':
|
|
123949
|
+
description: Unprocessable Content
|
|
123950
|
+
content:
|
|
123951
|
+
text/plain:
|
|
123952
|
+
schema:
|
|
123953
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
123954
|
+
application/json:
|
|
123955
|
+
schema:
|
|
123956
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
123957
|
+
text/json:
|
|
123958
|
+
schema:
|
|
123959
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
123960
|
+
patch:
|
|
123961
|
+
tags:
|
|
123962
|
+
- TemplateDetails
|
|
123963
|
+
summary: Patches the resource.
|
|
123964
|
+
operationId: Patch
|
|
123965
|
+
requestBody:
|
|
123966
|
+
description: The <typeparamref name="TObject" /> model.
|
|
123967
|
+
content:
|
|
123968
|
+
application/json:
|
|
123969
|
+
schema:
|
|
123970
|
+
$ref: '#/components/schemas/TemplateDetailPatch'
|
|
123971
|
+
text/json:
|
|
123972
|
+
schema:
|
|
123973
|
+
$ref: '#/components/schemas/TemplateDetailPatch'
|
|
123974
|
+
application/*+json:
|
|
123975
|
+
schema:
|
|
123976
|
+
$ref: '#/components/schemas/TemplateDetailPatch'
|
|
123977
|
+
responses:
|
|
123978
|
+
'200':
|
|
123979
|
+
description: OK
|
|
123980
|
+
content:
|
|
123981
|
+
text/plain:
|
|
123982
|
+
schema:
|
|
123983
|
+
$ref: '#/components/schemas/TemplateDetail'
|
|
123984
|
+
application/json:
|
|
123985
|
+
schema:
|
|
123986
|
+
$ref: '#/components/schemas/TemplateDetail'
|
|
123987
|
+
text/json:
|
|
123988
|
+
schema:
|
|
123989
|
+
$ref: '#/components/schemas/TemplateDetail'
|
|
123990
|
+
'400':
|
|
123991
|
+
description: Bad Request
|
|
123992
|
+
content:
|
|
123993
|
+
text/plain:
|
|
123994
|
+
schema:
|
|
123995
|
+
$ref: '#/components/schemas/ReachError'
|
|
123996
|
+
application/json:
|
|
123997
|
+
schema:
|
|
123998
|
+
$ref: '#/components/schemas/ReachError'
|
|
123999
|
+
text/json:
|
|
124000
|
+
schema:
|
|
124001
|
+
$ref: '#/components/schemas/ReachError'
|
|
124002
|
+
'500':
|
|
124003
|
+
description: Internal Server Error
|
|
124004
|
+
content:
|
|
124005
|
+
text/plain:
|
|
124006
|
+
schema:
|
|
124007
|
+
$ref: '#/components/schemas/ReachError'
|
|
124008
|
+
application/json:
|
|
124009
|
+
schema:
|
|
124010
|
+
$ref: '#/components/schemas/ReachError'
|
|
124011
|
+
text/json:
|
|
124012
|
+
schema:
|
|
124013
|
+
$ref: '#/components/schemas/ReachError'
|
|
124014
|
+
'422':
|
|
124015
|
+
description: Unprocessable Content
|
|
124016
|
+
content:
|
|
124017
|
+
text/plain:
|
|
124018
|
+
schema:
|
|
124019
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
124020
|
+
application/json:
|
|
124021
|
+
schema:
|
|
124022
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
124023
|
+
text/json:
|
|
124024
|
+
schema:
|
|
124025
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
124026
|
+
/api/template-details/v2-temporary-route/list:
|
|
124027
|
+
post:
|
|
124028
|
+
tags:
|
|
124029
|
+
- TemplateDetails
|
|
124030
|
+
summary: Inserts a list of resources.
|
|
124031
|
+
operationId: PostList
|
|
124032
|
+
requestBody:
|
|
124033
|
+
description: The list of <typeparamref name="TObject" />.
|
|
124034
|
+
content:
|
|
124035
|
+
application/json:
|
|
124036
|
+
schema:
|
|
124037
|
+
type: array
|
|
124038
|
+
items:
|
|
124039
|
+
$ref: '#/components/schemas/TemplateDetailPost'
|
|
124040
|
+
text/json:
|
|
124041
|
+
schema:
|
|
124042
|
+
type: array
|
|
124043
|
+
items:
|
|
124044
|
+
$ref: '#/components/schemas/TemplateDetailPost'
|
|
124045
|
+
application/*+json:
|
|
124046
|
+
schema:
|
|
124047
|
+
type: array
|
|
124048
|
+
items:
|
|
124049
|
+
$ref: '#/components/schemas/TemplateDetailPost'
|
|
124050
|
+
responses:
|
|
124051
|
+
'200':
|
|
124052
|
+
description: OK
|
|
124053
|
+
content:
|
|
124054
|
+
text/plain:
|
|
124055
|
+
schema:
|
|
124056
|
+
type: array
|
|
124057
|
+
items:
|
|
124058
|
+
$ref: '#/components/schemas/TemplateDetail'
|
|
124059
|
+
application/json:
|
|
124060
|
+
schema:
|
|
124061
|
+
type: array
|
|
124062
|
+
items:
|
|
124063
|
+
$ref: '#/components/schemas/TemplateDetail'
|
|
124064
|
+
text/json:
|
|
124065
|
+
schema:
|
|
124066
|
+
type: array
|
|
124067
|
+
items:
|
|
124068
|
+
$ref: '#/components/schemas/TemplateDetail'
|
|
124069
|
+
'400':
|
|
124070
|
+
description: Bad Request
|
|
124071
|
+
content:
|
|
124072
|
+
text/plain:
|
|
124073
|
+
schema:
|
|
124074
|
+
$ref: '#/components/schemas/ReachError'
|
|
124075
|
+
application/json:
|
|
124076
|
+
schema:
|
|
124077
|
+
$ref: '#/components/schemas/ReachError'
|
|
124078
|
+
text/json:
|
|
124079
|
+
schema:
|
|
124080
|
+
$ref: '#/components/schemas/ReachError'
|
|
124081
|
+
'500':
|
|
124082
|
+
description: Internal Server Error
|
|
124083
|
+
content:
|
|
124084
|
+
text/plain:
|
|
124085
|
+
schema:
|
|
124086
|
+
$ref: '#/components/schemas/ReachError'
|
|
124087
|
+
application/json:
|
|
124088
|
+
schema:
|
|
124089
|
+
$ref: '#/components/schemas/ReachError'
|
|
124090
|
+
text/json:
|
|
124091
|
+
schema:
|
|
124092
|
+
$ref: '#/components/schemas/ReachError'
|
|
124093
|
+
'422':
|
|
124094
|
+
description: Unprocessable Content
|
|
124095
|
+
content:
|
|
124096
|
+
text/plain:
|
|
124097
|
+
schema:
|
|
124098
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
124099
|
+
application/json:
|
|
124100
|
+
schema:
|
|
124101
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
124102
|
+
text/json:
|
|
124103
|
+
schema:
|
|
124104
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
124105
|
+
/api/template-details/v2-temporary-route/with-references:
|
|
124106
|
+
patch:
|
|
124107
|
+
tags:
|
|
124108
|
+
- TemplateDetails
|
|
124109
|
+
summary: Patches the resource.
|
|
124110
|
+
operationId: PatchWithReferences
|
|
124111
|
+
requestBody:
|
|
124112
|
+
description: The <typeparamref name="TObject" /> model.
|
|
124113
|
+
content:
|
|
124114
|
+
application/json:
|
|
124115
|
+
schema:
|
|
124116
|
+
$ref: '#/components/schemas/TemplateDetailPatch'
|
|
124117
|
+
text/json:
|
|
124118
|
+
schema:
|
|
124119
|
+
$ref: '#/components/schemas/TemplateDetailPatch'
|
|
124120
|
+
application/*+json:
|
|
124121
|
+
schema:
|
|
124122
|
+
$ref: '#/components/schemas/TemplateDetailPatch'
|
|
124123
|
+
responses:
|
|
124124
|
+
'200':
|
|
124125
|
+
description: OK
|
|
124126
|
+
content:
|
|
124127
|
+
text/plain:
|
|
124128
|
+
schema:
|
|
124129
|
+
$ref: '#/components/schemas/TemplateDetail'
|
|
124130
|
+
application/json:
|
|
124131
|
+
schema:
|
|
124132
|
+
$ref: '#/components/schemas/TemplateDetail'
|
|
124133
|
+
text/json:
|
|
124134
|
+
schema:
|
|
124135
|
+
$ref: '#/components/schemas/TemplateDetail'
|
|
124136
|
+
'400':
|
|
124137
|
+
description: Bad Request
|
|
124138
|
+
content:
|
|
124139
|
+
text/plain:
|
|
124140
|
+
schema:
|
|
124141
|
+
$ref: '#/components/schemas/ReachError'
|
|
124142
|
+
application/json:
|
|
124143
|
+
schema:
|
|
124144
|
+
$ref: '#/components/schemas/ReachError'
|
|
124145
|
+
text/json:
|
|
124146
|
+
schema:
|
|
124147
|
+
$ref: '#/components/schemas/ReachError'
|
|
124148
|
+
'500':
|
|
124149
|
+
description: Internal Server Error
|
|
124150
|
+
content:
|
|
124151
|
+
text/plain:
|
|
124152
|
+
schema:
|
|
124153
|
+
$ref: '#/components/schemas/ReachError'
|
|
124154
|
+
application/json:
|
|
124155
|
+
schema:
|
|
124156
|
+
$ref: '#/components/schemas/ReachError'
|
|
124157
|
+
text/json:
|
|
124158
|
+
schema:
|
|
124159
|
+
$ref: '#/components/schemas/ReachError'
|
|
124160
|
+
'422':
|
|
124161
|
+
description: Unprocessable Content
|
|
124162
|
+
content:
|
|
124163
|
+
text/plain:
|
|
124164
|
+
schema:
|
|
124165
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
124166
|
+
application/json:
|
|
124167
|
+
schema:
|
|
124168
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
124169
|
+
text/json:
|
|
124170
|
+
schema:
|
|
124171
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
124172
|
+
/api/template-details:
|
|
124173
|
+
delete:
|
|
124174
|
+
tags:
|
|
124175
|
+
- TemplateDetails
|
|
124176
|
+
summary: Deletes the resource.
|
|
124177
|
+
operationId: DeleteByObject
|
|
124178
|
+
requestBody:
|
|
124179
|
+
description: The <typeparamref name="TObject" /> model.
|
|
124180
|
+
content:
|
|
124181
|
+
application/json:
|
|
124182
|
+
schema:
|
|
124183
|
+
$ref: '#/components/schemas/TemplateDetail'
|
|
124184
|
+
text/json:
|
|
124185
|
+
schema:
|
|
124186
|
+
$ref: '#/components/schemas/TemplateDetail'
|
|
124187
|
+
application/*+json:
|
|
124188
|
+
schema:
|
|
124189
|
+
$ref: '#/components/schemas/TemplateDetail'
|
|
124190
|
+
responses:
|
|
124191
|
+
'200':
|
|
124192
|
+
description: OK
|
|
124193
|
+
'400':
|
|
124194
|
+
description: Bad Request
|
|
124195
|
+
content:
|
|
124196
|
+
text/plain:
|
|
124197
|
+
schema:
|
|
124198
|
+
$ref: '#/components/schemas/ReachError'
|
|
124199
|
+
application/json:
|
|
124200
|
+
schema:
|
|
124201
|
+
$ref: '#/components/schemas/ReachError'
|
|
124202
|
+
text/json:
|
|
124203
|
+
schema:
|
|
124204
|
+
$ref: '#/components/schemas/ReachError'
|
|
124205
|
+
'500':
|
|
124206
|
+
description: Internal Server Error
|
|
124207
|
+
content:
|
|
124208
|
+
text/plain:
|
|
124209
|
+
schema:
|
|
124210
|
+
$ref: '#/components/schemas/ReachError'
|
|
124211
|
+
application/json:
|
|
124212
|
+
schema:
|
|
124213
|
+
$ref: '#/components/schemas/ReachError'
|
|
124214
|
+
text/json:
|
|
124215
|
+
schema:
|
|
124216
|
+
$ref: '#/components/schemas/ReachError'
|
|
124217
|
+
'422':
|
|
124218
|
+
description: Unprocessable Content
|
|
124219
|
+
content:
|
|
124220
|
+
text/plain:
|
|
124221
|
+
schema:
|
|
124222
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
124223
|
+
application/json:
|
|
124224
|
+
schema:
|
|
124225
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
124226
|
+
text/json:
|
|
124227
|
+
schema:
|
|
124228
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
124229
|
+
get:
|
|
124230
|
+
tags:
|
|
124231
|
+
- TemplateDetails
|
|
124232
|
+
summary: Gets a list of resources.
|
|
124233
|
+
operationId: GetPage
|
|
124234
|
+
parameters:
|
|
124235
|
+
- name: TemplateId
|
|
124236
|
+
in: query
|
|
124237
|
+
description: Gets or sets the queryable template detail id.
|
|
124238
|
+
schema:
|
|
124239
|
+
type: string
|
|
124240
|
+
format: uuid
|
|
124241
|
+
- name: PageNumber
|
|
124242
|
+
in: query
|
|
124243
|
+
description: Gets or sets the page number for paged queries.
|
|
124244
|
+
schema:
|
|
124245
|
+
type: integer
|
|
124246
|
+
format: int32
|
|
124247
|
+
- name: Take
|
|
124248
|
+
in: query
|
|
124249
|
+
description: 'Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.'
|
|
124250
|
+
schema:
|
|
124251
|
+
type: integer
|
|
124252
|
+
format: int32
|
|
124253
|
+
- name: Skip
|
|
124254
|
+
in: query
|
|
124255
|
+
description: 'Gets or sets how much items to skip from begining of db table, when this is set page is always 1.'
|
|
124256
|
+
schema:
|
|
124257
|
+
type: integer
|
|
124258
|
+
format: int32
|
|
124259
|
+
- name: LimitListRequests
|
|
124260
|
+
in: query
|
|
124261
|
+
description: Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
124262
|
+
schema:
|
|
124263
|
+
type: boolean
|
|
124264
|
+
- name: TenantId
|
|
124265
|
+
in: query
|
|
124266
|
+
description: Gets or sets the Tenant Id.
|
|
124267
|
+
schema:
|
|
124268
|
+
type: string
|
|
124269
|
+
format: uuid
|
|
124270
|
+
- name: ModifiedById
|
|
124271
|
+
in: query
|
|
124272
|
+
description: Gets or sets the Modifed By Id.
|
|
124273
|
+
schema:
|
|
124274
|
+
type: string
|
|
124275
|
+
format: uuid
|
|
124276
|
+
- name: ModifiedByIds
|
|
124277
|
+
in: query
|
|
124278
|
+
description: Gets or sets the Modifed By Ids.
|
|
124279
|
+
schema:
|
|
124280
|
+
type: array
|
|
124281
|
+
items:
|
|
124282
|
+
type: string
|
|
124283
|
+
format: uuid
|
|
124284
|
+
- name: DateCreatedGTE
|
|
124285
|
+
in: query
|
|
124286
|
+
description: Gets or sets the Date Created greater than equal to.
|
|
124287
|
+
schema:
|
|
124288
|
+
type: string
|
|
124289
|
+
format: date-time
|
|
124290
|
+
- name: DateCreatedLTE
|
|
124291
|
+
in: query
|
|
124292
|
+
description: Gets or sets the Date Created less than equal to.
|
|
124293
|
+
schema:
|
|
124294
|
+
type: string
|
|
124295
|
+
format: date-time
|
|
124296
|
+
- name: IsLive
|
|
124297
|
+
in: query
|
|
124298
|
+
description: Gets or sets the queryable only is live status.
|
|
124299
|
+
schema:
|
|
124300
|
+
type: boolean
|
|
124301
|
+
- name: SortOrderDirection
|
|
124302
|
+
in: query
|
|
124303
|
+
description: Gets or sets the sort order direction.
|
|
124304
|
+
schema:
|
|
124305
|
+
$ref: '#/components/schemas/SearchSortOrderDirection'
|
|
124306
|
+
responses:
|
|
124307
|
+
'200':
|
|
124308
|
+
description: OK
|
|
124309
|
+
content:
|
|
124310
|
+
text/plain:
|
|
124311
|
+
schema:
|
|
124312
|
+
$ref: '#/components/schemas/TemplateDetailPage'
|
|
124313
|
+
application/json:
|
|
124314
|
+
schema:
|
|
124315
|
+
$ref: '#/components/schemas/TemplateDetailPage'
|
|
124316
|
+
text/json:
|
|
124317
|
+
schema:
|
|
124318
|
+
$ref: '#/components/schemas/TemplateDetailPage'
|
|
124319
|
+
'400':
|
|
124320
|
+
description: Bad Request
|
|
124321
|
+
content:
|
|
124322
|
+
text/plain:
|
|
124323
|
+
schema:
|
|
124324
|
+
$ref: '#/components/schemas/ReachError'
|
|
124325
|
+
application/json:
|
|
124326
|
+
schema:
|
|
124327
|
+
$ref: '#/components/schemas/ReachError'
|
|
124328
|
+
text/json:
|
|
124329
|
+
schema:
|
|
124330
|
+
$ref: '#/components/schemas/ReachError'
|
|
124331
|
+
'500':
|
|
124332
|
+
description: Internal Server Error
|
|
124333
|
+
content:
|
|
124334
|
+
text/plain:
|
|
124335
|
+
schema:
|
|
124336
|
+
$ref: '#/components/schemas/ReachError'
|
|
124337
|
+
application/json:
|
|
124338
|
+
schema:
|
|
124339
|
+
$ref: '#/components/schemas/ReachError'
|
|
124340
|
+
text/json:
|
|
124341
|
+
schema:
|
|
124342
|
+
$ref: '#/components/schemas/ReachError'
|
|
124343
|
+
'422':
|
|
124344
|
+
description: Unprocessable Content
|
|
124345
|
+
content:
|
|
124346
|
+
text/plain:
|
|
124347
|
+
schema:
|
|
124348
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
124349
|
+
application/json:
|
|
124350
|
+
schema:
|
|
124351
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
124352
|
+
text/json:
|
|
124353
|
+
schema:
|
|
124354
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
124355
|
+
'/api/template-details/{id}':
|
|
122735
124356
|
delete:
|
|
122736
124357
|
tags:
|
|
122737
|
-
-
|
|
124358
|
+
- TemplateDetails
|
|
122738
124359
|
summary: Deletes the resource.
|
|
122739
124360
|
operationId: DeleteById
|
|
122740
124361
|
parameters:
|
|
@@ -122786,7 +124407,7 @@ paths:
|
|
|
122786
124407
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
122787
124408
|
get:
|
|
122788
124409
|
tags:
|
|
122789
|
-
-
|
|
124410
|
+
- TemplateDetails
|
|
122790
124411
|
summary: Gets the resource by its Id.
|
|
122791
124412
|
operationId: GetObject
|
|
122792
124413
|
parameters:
|
|
@@ -122803,13 +124424,13 @@ paths:
|
|
|
122803
124424
|
content:
|
|
122804
124425
|
text/plain:
|
|
122805
124426
|
schema:
|
|
122806
|
-
$ref: '#/components/schemas/
|
|
124427
|
+
$ref: '#/components/schemas/TemplateDetail'
|
|
122807
124428
|
application/json:
|
|
122808
124429
|
schema:
|
|
122809
|
-
$ref: '#/components/schemas/
|
|
124430
|
+
$ref: '#/components/schemas/TemplateDetail'
|
|
122810
124431
|
text/json:
|
|
122811
124432
|
schema:
|
|
122812
|
-
$ref: '#/components/schemas/
|
|
124433
|
+
$ref: '#/components/schemas/TemplateDetail'
|
|
122813
124434
|
'400':
|
|
122814
124435
|
description: Bad Request
|
|
122815
124436
|
content:
|
|
@@ -122846,10 +124467,10 @@ paths:
|
|
|
122846
124467
|
text/json:
|
|
122847
124468
|
schema:
|
|
122848
124469
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
122849
|
-
'/api/
|
|
124470
|
+
'/api/template-details/{id}/deletable':
|
|
122850
124471
|
get:
|
|
122851
124472
|
tags:
|
|
122852
|
-
-
|
|
124473
|
+
- TemplateDetails
|
|
122853
124474
|
summary: Returns a value indicating whether the resource is deletable.
|
|
122854
124475
|
operationId: CanDelete
|
|
122855
124476
|
parameters:
|
|
@@ -122909,46 +124530,19 @@ paths:
|
|
|
122909
124530
|
text/json:
|
|
122910
124531
|
schema:
|
|
122911
124532
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
122912
|
-
/api/
|
|
124533
|
+
/api/template-details/exists:
|
|
122913
124534
|
get:
|
|
122914
124535
|
tags:
|
|
122915
|
-
-
|
|
124536
|
+
- TemplateDetails
|
|
122916
124537
|
summary: Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
122917
124538
|
operationId: Exists
|
|
122918
124539
|
parameters:
|
|
122919
|
-
- name:
|
|
124540
|
+
- name: TemplateId
|
|
122920
124541
|
in: query
|
|
122921
|
-
description: Gets or sets the queryable
|
|
124542
|
+
description: Gets or sets the queryable template detail id.
|
|
122922
124543
|
schema:
|
|
122923
124544
|
type: string
|
|
122924
124545
|
format: uuid
|
|
122925
|
-
- name: Archived
|
|
122926
|
-
in: query
|
|
122927
|
-
description: Gets or sets the queryable archived value.
|
|
122928
|
-
schema:
|
|
122929
|
-
type: boolean
|
|
122930
|
-
- name: ResponseDateGTE
|
|
122931
|
-
in: query
|
|
122932
|
-
description: Gets or sets the queryable response date greater than or equal to query params.
|
|
122933
|
-
schema:
|
|
122934
|
-
type: string
|
|
122935
|
-
format: date-time
|
|
122936
|
-
- name: ResponseDateLTE
|
|
122937
|
-
in: query
|
|
122938
|
-
description: Gets or sets the queryable response date less than or equal to query params.
|
|
122939
|
-
schema:
|
|
122940
|
-
type: string
|
|
122941
|
-
format: date-time
|
|
122942
|
-
- name: Email
|
|
122943
|
-
in: query
|
|
122944
|
-
description: Gets or sets the queryable email address query params.
|
|
122945
|
-
schema:
|
|
122946
|
-
type: string
|
|
122947
|
-
- name: IncludeSummary
|
|
122948
|
-
in: query
|
|
122949
|
-
description: Gets or sets if responsesCount and lastResponseDate should be included.
|
|
122950
|
-
schema:
|
|
122951
|
-
type: boolean
|
|
122952
124546
|
- name: PageNumber
|
|
122953
124547
|
in: query
|
|
122954
124548
|
description: Gets or sets the page number for paged queries.
|
|
@@ -123063,46 +124657,19 @@ paths:
|
|
|
123063
124657
|
text/json:
|
|
123064
124658
|
schema:
|
|
123065
124659
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
123066
|
-
/api/
|
|
124660
|
+
/api/template-details/count:
|
|
123067
124661
|
get:
|
|
123068
124662
|
tags:
|
|
123069
|
-
-
|
|
124663
|
+
- TemplateDetails
|
|
123070
124664
|
summary: Returns the number of results in the database given the provided search params.
|
|
123071
124665
|
operationId: Count
|
|
123072
124666
|
parameters:
|
|
123073
|
-
- name:
|
|
124667
|
+
- name: TemplateId
|
|
123074
124668
|
in: query
|
|
123075
|
-
description: Gets or sets the queryable
|
|
124669
|
+
description: Gets or sets the queryable template detail id.
|
|
123076
124670
|
schema:
|
|
123077
124671
|
type: string
|
|
123078
124672
|
format: uuid
|
|
123079
|
-
- name: Archived
|
|
123080
|
-
in: query
|
|
123081
|
-
description: Gets or sets the queryable archived value.
|
|
123082
|
-
schema:
|
|
123083
|
-
type: boolean
|
|
123084
|
-
- name: ResponseDateGTE
|
|
123085
|
-
in: query
|
|
123086
|
-
description: Gets or sets the queryable response date greater than or equal to query params.
|
|
123087
|
-
schema:
|
|
123088
|
-
type: string
|
|
123089
|
-
format: date-time
|
|
123090
|
-
- name: ResponseDateLTE
|
|
123091
|
-
in: query
|
|
123092
|
-
description: Gets or sets the queryable response date less than or equal to query params.
|
|
123093
|
-
schema:
|
|
123094
|
-
type: string
|
|
123095
|
-
format: date-time
|
|
123096
|
-
- name: Email
|
|
123097
|
-
in: query
|
|
123098
|
-
description: Gets or sets the queryable email address query params.
|
|
123099
|
-
schema:
|
|
123100
|
-
type: string
|
|
123101
|
-
- name: IncludeSummary
|
|
123102
|
-
in: query
|
|
123103
|
-
description: Gets or sets if responsesCount and lastResponseDate should be included.
|
|
123104
|
-
schema:
|
|
123105
|
-
type: boolean
|
|
123106
124673
|
- name: PageNumber
|
|
123107
124674
|
in: query
|
|
123108
124675
|
description: Gets or sets the page number for paged queries.
|
|
@@ -123220,46 +124787,19 @@ paths:
|
|
|
123220
124787
|
text/json:
|
|
123221
124788
|
schema:
|
|
123222
124789
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
123223
|
-
/api/
|
|
124790
|
+
/api/template-details/without-references:
|
|
123224
124791
|
get:
|
|
123225
124792
|
tags:
|
|
123226
|
-
-
|
|
124793
|
+
- TemplateDetails
|
|
123227
124794
|
summary: Gets a list of resources unpaged and without references.
|
|
123228
124795
|
operationId: GetListWithoutReferences
|
|
123229
124796
|
parameters:
|
|
123230
|
-
- name:
|
|
124797
|
+
- name: TemplateId
|
|
123231
124798
|
in: query
|
|
123232
|
-
description: Gets or sets the queryable
|
|
124799
|
+
description: Gets or sets the queryable template detail id.
|
|
123233
124800
|
schema:
|
|
123234
124801
|
type: string
|
|
123235
124802
|
format: uuid
|
|
123236
|
-
- name: Archived
|
|
123237
|
-
in: query
|
|
123238
|
-
description: Gets or sets the queryable archived value.
|
|
123239
|
-
schema:
|
|
123240
|
-
type: boolean
|
|
123241
|
-
- name: ResponseDateGTE
|
|
123242
|
-
in: query
|
|
123243
|
-
description: Gets or sets the queryable response date greater than or equal to query params.
|
|
123244
|
-
schema:
|
|
123245
|
-
type: string
|
|
123246
|
-
format: date-time
|
|
123247
|
-
- name: ResponseDateLTE
|
|
123248
|
-
in: query
|
|
123249
|
-
description: Gets or sets the queryable response date less than or equal to query params.
|
|
123250
|
-
schema:
|
|
123251
|
-
type: string
|
|
123252
|
-
format: date-time
|
|
123253
|
-
- name: Email
|
|
123254
|
-
in: query
|
|
123255
|
-
description: Gets or sets the queryable email address query params.
|
|
123256
|
-
schema:
|
|
123257
|
-
type: string
|
|
123258
|
-
- name: IncludeSummary
|
|
123259
|
-
in: query
|
|
123260
|
-
description: Gets or sets if responsesCount and lastResponseDate should be included.
|
|
123261
|
-
schema:
|
|
123262
|
-
type: boolean
|
|
123263
124803
|
- name: PageNumber
|
|
123264
124804
|
in: query
|
|
123265
124805
|
description: Gets or sets the page number for paged queries.
|
|
@@ -123333,17 +124873,17 @@ paths:
|
|
|
123333
124873
|
schema:
|
|
123334
124874
|
type: array
|
|
123335
124875
|
items:
|
|
123336
|
-
$ref: '#/components/schemas/
|
|
124876
|
+
$ref: '#/components/schemas/TemplateDetail'
|
|
123337
124877
|
application/json:
|
|
123338
124878
|
schema:
|
|
123339
124879
|
type: array
|
|
123340
124880
|
items:
|
|
123341
|
-
$ref: '#/components/schemas/
|
|
124881
|
+
$ref: '#/components/schemas/TemplateDetail'
|
|
123342
124882
|
text/json:
|
|
123343
124883
|
schema:
|
|
123344
124884
|
type: array
|
|
123345
124885
|
items:
|
|
123346
|
-
$ref: '#/components/schemas/
|
|
124886
|
+
$ref: '#/components/schemas/TemplateDetail'
|
|
123347
124887
|
'400':
|
|
123348
124888
|
description: Bad Request
|
|
123349
124889
|
content:
|
|
@@ -123380,46 +124920,19 @@ paths:
|
|
|
123380
124920
|
text/json:
|
|
123381
124921
|
schema:
|
|
123382
124922
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
123383
|
-
/api/
|
|
124923
|
+
/api/template-details/id-name:
|
|
123384
124924
|
get:
|
|
123385
124925
|
tags:
|
|
123386
|
-
-
|
|
124926
|
+
- TemplateDetails
|
|
123387
124927
|
summary: Gets a list of resources.
|
|
123388
124928
|
operationId: GetListIdName
|
|
123389
124929
|
parameters:
|
|
123390
|
-
- name:
|
|
124930
|
+
- name: TemplateId
|
|
123391
124931
|
in: query
|
|
123392
|
-
description: Gets or sets the queryable
|
|
124932
|
+
description: Gets or sets the queryable template detail id.
|
|
123393
124933
|
schema:
|
|
123394
124934
|
type: string
|
|
123395
124935
|
format: uuid
|
|
123396
|
-
- name: Archived
|
|
123397
|
-
in: query
|
|
123398
|
-
description: Gets or sets the queryable archived value.
|
|
123399
|
-
schema:
|
|
123400
|
-
type: boolean
|
|
123401
|
-
- name: ResponseDateGTE
|
|
123402
|
-
in: query
|
|
123403
|
-
description: Gets or sets the queryable response date greater than or equal to query params.
|
|
123404
|
-
schema:
|
|
123405
|
-
type: string
|
|
123406
|
-
format: date-time
|
|
123407
|
-
- name: ResponseDateLTE
|
|
123408
|
-
in: query
|
|
123409
|
-
description: Gets or sets the queryable response date less than or equal to query params.
|
|
123410
|
-
schema:
|
|
123411
|
-
type: string
|
|
123412
|
-
format: date-time
|
|
123413
|
-
- name: Email
|
|
123414
|
-
in: query
|
|
123415
|
-
description: Gets or sets the queryable email address query params.
|
|
123416
|
-
schema:
|
|
123417
|
-
type: string
|
|
123418
|
-
- name: IncludeSummary
|
|
123419
|
-
in: query
|
|
123420
|
-
description: Gets or sets if responsesCount and lastResponseDate should be included.
|
|
123421
|
-
schema:
|
|
123422
|
-
type: boolean
|
|
123423
124936
|
- name: PageNumber
|
|
123424
124937
|
in: query
|
|
123425
124938
|
description: Gets or sets the page number for paged queries.
|
|
@@ -123493,17 +125006,17 @@ paths:
|
|
|
123493
125006
|
schema:
|
|
123494
125007
|
type: array
|
|
123495
125008
|
items:
|
|
123496
|
-
$ref: '#/components/schemas/
|
|
125009
|
+
$ref: '#/components/schemas/TemplateDetail'
|
|
123497
125010
|
application/json:
|
|
123498
125011
|
schema:
|
|
123499
125012
|
type: array
|
|
123500
125013
|
items:
|
|
123501
|
-
$ref: '#/components/schemas/
|
|
125014
|
+
$ref: '#/components/schemas/TemplateDetail'
|
|
123502
125015
|
text/json:
|
|
123503
125016
|
schema:
|
|
123504
125017
|
type: array
|
|
123505
125018
|
items:
|
|
123506
|
-
$ref: '#/components/schemas/
|
|
125019
|
+
$ref: '#/components/schemas/TemplateDetail'
|
|
123507
125020
|
'400':
|
|
123508
125021
|
description: Bad Request
|
|
123509
125022
|
content:
|
|
@@ -123540,10 +125053,10 @@ paths:
|
|
|
123540
125053
|
text/json:
|
|
123541
125054
|
schema:
|
|
123542
125055
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
123543
|
-
/api/template-
|
|
125056
|
+
/api/template-field-permissions/v2-temporary-route:
|
|
123544
125057
|
post:
|
|
123545
125058
|
tags:
|
|
123546
|
-
-
|
|
125059
|
+
- TemplateFieldPermissions
|
|
123547
125060
|
summary: Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
123548
125061
|
operationId: Post
|
|
123549
125062
|
requestBody:
|
|
@@ -123551,26 +125064,26 @@ paths:
|
|
|
123551
125064
|
content:
|
|
123552
125065
|
application/json:
|
|
123553
125066
|
schema:
|
|
123554
|
-
$ref: '#/components/schemas/
|
|
125067
|
+
$ref: '#/components/schemas/TemplateFieldPermissionPost'
|
|
123555
125068
|
text/json:
|
|
123556
125069
|
schema:
|
|
123557
|
-
$ref: '#/components/schemas/
|
|
125070
|
+
$ref: '#/components/schemas/TemplateFieldPermissionPost'
|
|
123558
125071
|
application/*+json:
|
|
123559
125072
|
schema:
|
|
123560
|
-
$ref: '#/components/schemas/
|
|
125073
|
+
$ref: '#/components/schemas/TemplateFieldPermissionPost'
|
|
123561
125074
|
responses:
|
|
123562
125075
|
'200':
|
|
123563
125076
|
description: OK
|
|
123564
125077
|
content:
|
|
123565
125078
|
text/plain:
|
|
123566
125079
|
schema:
|
|
123567
|
-
$ref: '#/components/schemas/
|
|
125080
|
+
$ref: '#/components/schemas/TemplateFieldPermission'
|
|
123568
125081
|
application/json:
|
|
123569
125082
|
schema:
|
|
123570
|
-
$ref: '#/components/schemas/
|
|
125083
|
+
$ref: '#/components/schemas/TemplateFieldPermission'
|
|
123571
125084
|
text/json:
|
|
123572
125085
|
schema:
|
|
123573
|
-
$ref: '#/components/schemas/
|
|
125086
|
+
$ref: '#/components/schemas/TemplateFieldPermission'
|
|
123574
125087
|
'400':
|
|
123575
125088
|
description: Bad Request
|
|
123576
125089
|
content:
|
|
@@ -123609,7 +125122,7 @@ paths:
|
|
|
123609
125122
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
123610
125123
|
patch:
|
|
123611
125124
|
tags:
|
|
123612
|
-
-
|
|
125125
|
+
- TemplateFieldPermissions
|
|
123613
125126
|
summary: Patches the resource.
|
|
123614
125127
|
operationId: Patch
|
|
123615
125128
|
requestBody:
|
|
@@ -123617,26 +125130,26 @@ paths:
|
|
|
123617
125130
|
content:
|
|
123618
125131
|
application/json:
|
|
123619
125132
|
schema:
|
|
123620
|
-
$ref: '#/components/schemas/
|
|
125133
|
+
$ref: '#/components/schemas/TemplateFieldPermissionPatch'
|
|
123621
125134
|
text/json:
|
|
123622
125135
|
schema:
|
|
123623
|
-
$ref: '#/components/schemas/
|
|
125136
|
+
$ref: '#/components/schemas/TemplateFieldPermissionPatch'
|
|
123624
125137
|
application/*+json:
|
|
123625
125138
|
schema:
|
|
123626
|
-
$ref: '#/components/schemas/
|
|
125139
|
+
$ref: '#/components/schemas/TemplateFieldPermissionPatch'
|
|
123627
125140
|
responses:
|
|
123628
125141
|
'200':
|
|
123629
125142
|
description: OK
|
|
123630
125143
|
content:
|
|
123631
125144
|
text/plain:
|
|
123632
125145
|
schema:
|
|
123633
|
-
$ref: '#/components/schemas/
|
|
125146
|
+
$ref: '#/components/schemas/TemplateFieldPermission'
|
|
123634
125147
|
application/json:
|
|
123635
125148
|
schema:
|
|
123636
|
-
$ref: '#/components/schemas/
|
|
125149
|
+
$ref: '#/components/schemas/TemplateFieldPermission'
|
|
123637
125150
|
text/json:
|
|
123638
125151
|
schema:
|
|
123639
|
-
$ref: '#/components/schemas/
|
|
125152
|
+
$ref: '#/components/schemas/TemplateFieldPermission'
|
|
123640
125153
|
'400':
|
|
123641
125154
|
description: Bad Request
|
|
123642
125155
|
content:
|
|
@@ -123673,10 +125186,10 @@ paths:
|
|
|
123673
125186
|
text/json:
|
|
123674
125187
|
schema:
|
|
123675
125188
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
123676
|
-
/api/template-
|
|
125189
|
+
/api/template-field-permissions/v2-temporary-route/list:
|
|
123677
125190
|
post:
|
|
123678
125191
|
tags:
|
|
123679
|
-
-
|
|
125192
|
+
- TemplateFieldPermissions
|
|
123680
125193
|
summary: Inserts a list of resources.
|
|
123681
125194
|
operationId: PostList
|
|
123682
125195
|
requestBody:
|
|
@@ -123686,17 +125199,17 @@ paths:
|
|
|
123686
125199
|
schema:
|
|
123687
125200
|
type: array
|
|
123688
125201
|
items:
|
|
123689
|
-
$ref: '#/components/schemas/
|
|
125202
|
+
$ref: '#/components/schemas/TemplateFieldPermissionPost'
|
|
123690
125203
|
text/json:
|
|
123691
125204
|
schema:
|
|
123692
125205
|
type: array
|
|
123693
125206
|
items:
|
|
123694
|
-
$ref: '#/components/schemas/
|
|
125207
|
+
$ref: '#/components/schemas/TemplateFieldPermissionPost'
|
|
123695
125208
|
application/*+json:
|
|
123696
125209
|
schema:
|
|
123697
125210
|
type: array
|
|
123698
125211
|
items:
|
|
123699
|
-
$ref: '#/components/schemas/
|
|
125212
|
+
$ref: '#/components/schemas/TemplateFieldPermissionPost'
|
|
123700
125213
|
responses:
|
|
123701
125214
|
'200':
|
|
123702
125215
|
description: OK
|
|
@@ -123705,17 +125218,17 @@ paths:
|
|
|
123705
125218
|
schema:
|
|
123706
125219
|
type: array
|
|
123707
125220
|
items:
|
|
123708
|
-
$ref: '#/components/schemas/
|
|
125221
|
+
$ref: '#/components/schemas/TemplateFieldPermission'
|
|
123709
125222
|
application/json:
|
|
123710
125223
|
schema:
|
|
123711
125224
|
type: array
|
|
123712
125225
|
items:
|
|
123713
|
-
$ref: '#/components/schemas/
|
|
125226
|
+
$ref: '#/components/schemas/TemplateFieldPermission'
|
|
123714
125227
|
text/json:
|
|
123715
125228
|
schema:
|
|
123716
125229
|
type: array
|
|
123717
125230
|
items:
|
|
123718
|
-
$ref: '#/components/schemas/
|
|
125231
|
+
$ref: '#/components/schemas/TemplateFieldPermission'
|
|
123719
125232
|
'400':
|
|
123720
125233
|
description: Bad Request
|
|
123721
125234
|
content:
|
|
@@ -123752,10 +125265,10 @@ paths:
|
|
|
123752
125265
|
text/json:
|
|
123753
125266
|
schema:
|
|
123754
125267
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
123755
|
-
/api/template-
|
|
125268
|
+
/api/template-field-permissions/v2-temporary-route/with-references:
|
|
123756
125269
|
patch:
|
|
123757
125270
|
tags:
|
|
123758
|
-
-
|
|
125271
|
+
- TemplateFieldPermissions
|
|
123759
125272
|
summary: Patches the resource.
|
|
123760
125273
|
operationId: PatchWithReferences
|
|
123761
125274
|
requestBody:
|
|
@@ -123763,26 +125276,26 @@ paths:
|
|
|
123763
125276
|
content:
|
|
123764
125277
|
application/json:
|
|
123765
125278
|
schema:
|
|
123766
|
-
$ref: '#/components/schemas/
|
|
125279
|
+
$ref: '#/components/schemas/TemplateFieldPermissionPatch'
|
|
123767
125280
|
text/json:
|
|
123768
125281
|
schema:
|
|
123769
|
-
$ref: '#/components/schemas/
|
|
125282
|
+
$ref: '#/components/schemas/TemplateFieldPermissionPatch'
|
|
123770
125283
|
application/*+json:
|
|
123771
125284
|
schema:
|
|
123772
|
-
$ref: '#/components/schemas/
|
|
125285
|
+
$ref: '#/components/schemas/TemplateFieldPermissionPatch'
|
|
123773
125286
|
responses:
|
|
123774
125287
|
'200':
|
|
123775
125288
|
description: OK
|
|
123776
125289
|
content:
|
|
123777
125290
|
text/plain:
|
|
123778
125291
|
schema:
|
|
123779
|
-
$ref: '#/components/schemas/
|
|
125292
|
+
$ref: '#/components/schemas/TemplateFieldPermission'
|
|
123780
125293
|
application/json:
|
|
123781
125294
|
schema:
|
|
123782
|
-
$ref: '#/components/schemas/
|
|
125295
|
+
$ref: '#/components/schemas/TemplateFieldPermission'
|
|
123783
125296
|
text/json:
|
|
123784
125297
|
schema:
|
|
123785
|
-
$ref: '#/components/schemas/
|
|
125298
|
+
$ref: '#/components/schemas/TemplateFieldPermission'
|
|
123786
125299
|
'400':
|
|
123787
125300
|
description: Bad Request
|
|
123788
125301
|
content:
|
|
@@ -123819,10 +125332,10 @@ paths:
|
|
|
123819
125332
|
text/json:
|
|
123820
125333
|
schema:
|
|
123821
125334
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
123822
|
-
/api/template-
|
|
125335
|
+
/api/template-field-permissions:
|
|
123823
125336
|
delete:
|
|
123824
125337
|
tags:
|
|
123825
|
-
-
|
|
125338
|
+
- TemplateFieldPermissions
|
|
123826
125339
|
summary: Deletes the resource.
|
|
123827
125340
|
operationId: DeleteByObject
|
|
123828
125341
|
requestBody:
|
|
@@ -123830,13 +125343,13 @@ paths:
|
|
|
123830
125343
|
content:
|
|
123831
125344
|
application/json:
|
|
123832
125345
|
schema:
|
|
123833
|
-
$ref: '#/components/schemas/
|
|
125346
|
+
$ref: '#/components/schemas/TemplateFieldPermission'
|
|
123834
125347
|
text/json:
|
|
123835
125348
|
schema:
|
|
123836
|
-
$ref: '#/components/schemas/
|
|
125349
|
+
$ref: '#/components/schemas/TemplateFieldPermission'
|
|
123837
125350
|
application/*+json:
|
|
123838
125351
|
schema:
|
|
123839
|
-
$ref: '#/components/schemas/
|
|
125352
|
+
$ref: '#/components/schemas/TemplateFieldPermission'
|
|
123840
125353
|
responses:
|
|
123841
125354
|
'200':
|
|
123842
125355
|
description: OK
|
|
@@ -123878,11 +125391,11 @@ paths:
|
|
|
123878
125391
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
123879
125392
|
get:
|
|
123880
125393
|
tags:
|
|
123881
|
-
-
|
|
125394
|
+
- TemplateFieldPermissions
|
|
123882
125395
|
summary: Gets a list of resources.
|
|
123883
125396
|
operationId: GetPage
|
|
123884
125397
|
parameters:
|
|
123885
|
-
- name:
|
|
125398
|
+
- name: TemplateDetailId
|
|
123886
125399
|
in: query
|
|
123887
125400
|
description: Gets or sets the queryable template detail id.
|
|
123888
125401
|
schema:
|
|
@@ -123959,13 +125472,13 @@ paths:
|
|
|
123959
125472
|
content:
|
|
123960
125473
|
text/plain:
|
|
123961
125474
|
schema:
|
|
123962
|
-
$ref: '#/components/schemas/
|
|
125475
|
+
$ref: '#/components/schemas/TemplateFieldPermissionPage'
|
|
123963
125476
|
application/json:
|
|
123964
125477
|
schema:
|
|
123965
|
-
$ref: '#/components/schemas/
|
|
125478
|
+
$ref: '#/components/schemas/TemplateFieldPermissionPage'
|
|
123966
125479
|
text/json:
|
|
123967
125480
|
schema:
|
|
123968
|
-
$ref: '#/components/schemas/
|
|
125481
|
+
$ref: '#/components/schemas/TemplateFieldPermissionPage'
|
|
123969
125482
|
'400':
|
|
123970
125483
|
description: Bad Request
|
|
123971
125484
|
content:
|
|
@@ -124002,10 +125515,10 @@ paths:
|
|
|
124002
125515
|
text/json:
|
|
124003
125516
|
schema:
|
|
124004
125517
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
124005
|
-
'/api/template-
|
|
125518
|
+
'/api/template-field-permissions/{id}':
|
|
124006
125519
|
delete:
|
|
124007
125520
|
tags:
|
|
124008
|
-
-
|
|
125521
|
+
- TemplateFieldPermissions
|
|
124009
125522
|
summary: Deletes the resource.
|
|
124010
125523
|
operationId: DeleteById
|
|
124011
125524
|
parameters:
|
|
@@ -124057,7 +125570,7 @@ paths:
|
|
|
124057
125570
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
124058
125571
|
get:
|
|
124059
125572
|
tags:
|
|
124060
|
-
-
|
|
125573
|
+
- TemplateFieldPermissions
|
|
124061
125574
|
summary: Gets the resource by its Id.
|
|
124062
125575
|
operationId: GetObject
|
|
124063
125576
|
parameters:
|
|
@@ -124074,13 +125587,13 @@ paths:
|
|
|
124074
125587
|
content:
|
|
124075
125588
|
text/plain:
|
|
124076
125589
|
schema:
|
|
124077
|
-
$ref: '#/components/schemas/
|
|
125590
|
+
$ref: '#/components/schemas/TemplateFieldPermission'
|
|
124078
125591
|
application/json:
|
|
124079
125592
|
schema:
|
|
124080
|
-
$ref: '#/components/schemas/
|
|
125593
|
+
$ref: '#/components/schemas/TemplateFieldPermission'
|
|
124081
125594
|
text/json:
|
|
124082
125595
|
schema:
|
|
124083
|
-
$ref: '#/components/schemas/
|
|
125596
|
+
$ref: '#/components/schemas/TemplateFieldPermission'
|
|
124084
125597
|
'400':
|
|
124085
125598
|
description: Bad Request
|
|
124086
125599
|
content:
|
|
@@ -124117,10 +125630,10 @@ paths:
|
|
|
124117
125630
|
text/json:
|
|
124118
125631
|
schema:
|
|
124119
125632
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
124120
|
-
'/api/template-
|
|
125633
|
+
'/api/template-field-permissions/{id}/deletable':
|
|
124121
125634
|
get:
|
|
124122
125635
|
tags:
|
|
124123
|
-
-
|
|
125636
|
+
- TemplateFieldPermissions
|
|
124124
125637
|
summary: Returns a value indicating whether the resource is deletable.
|
|
124125
125638
|
operationId: CanDelete
|
|
124126
125639
|
parameters:
|
|
@@ -124180,14 +125693,14 @@ paths:
|
|
|
124180
125693
|
text/json:
|
|
124181
125694
|
schema:
|
|
124182
125695
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
124183
|
-
/api/template-
|
|
125696
|
+
/api/template-field-permissions/exists:
|
|
124184
125697
|
get:
|
|
124185
125698
|
tags:
|
|
124186
|
-
-
|
|
125699
|
+
- TemplateFieldPermissions
|
|
124187
125700
|
summary: Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
124188
125701
|
operationId: Exists
|
|
124189
125702
|
parameters:
|
|
124190
|
-
- name:
|
|
125703
|
+
- name: TemplateDetailId
|
|
124191
125704
|
in: query
|
|
124192
125705
|
description: Gets or sets the queryable template detail id.
|
|
124193
125706
|
schema:
|
|
@@ -124307,14 +125820,14 @@ paths:
|
|
|
124307
125820
|
text/json:
|
|
124308
125821
|
schema:
|
|
124309
125822
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
124310
|
-
/api/template-
|
|
125823
|
+
/api/template-field-permissions/count:
|
|
124311
125824
|
get:
|
|
124312
125825
|
tags:
|
|
124313
|
-
-
|
|
125826
|
+
- TemplateFieldPermissions
|
|
124314
125827
|
summary: Returns the number of results in the database given the provided search params.
|
|
124315
125828
|
operationId: Count
|
|
124316
125829
|
parameters:
|
|
124317
|
-
- name:
|
|
125830
|
+
- name: TemplateDetailId
|
|
124318
125831
|
in: query
|
|
124319
125832
|
description: Gets or sets the queryable template detail id.
|
|
124320
125833
|
schema:
|
|
@@ -124437,14 +125950,14 @@ paths:
|
|
|
124437
125950
|
text/json:
|
|
124438
125951
|
schema:
|
|
124439
125952
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
124440
|
-
/api/template-
|
|
125953
|
+
/api/template-field-permissions/without-references:
|
|
124441
125954
|
get:
|
|
124442
125955
|
tags:
|
|
124443
|
-
-
|
|
125956
|
+
- TemplateFieldPermissions
|
|
124444
125957
|
summary: Gets a list of resources unpaged and without references.
|
|
124445
125958
|
operationId: GetListWithoutReferences
|
|
124446
125959
|
parameters:
|
|
124447
|
-
- name:
|
|
125960
|
+
- name: TemplateDetailId
|
|
124448
125961
|
in: query
|
|
124449
125962
|
description: Gets or sets the queryable template detail id.
|
|
124450
125963
|
schema:
|
|
@@ -124523,17 +126036,17 @@ paths:
|
|
|
124523
126036
|
schema:
|
|
124524
126037
|
type: array
|
|
124525
126038
|
items:
|
|
124526
|
-
$ref: '#/components/schemas/
|
|
126039
|
+
$ref: '#/components/schemas/TemplateFieldPermission'
|
|
124527
126040
|
application/json:
|
|
124528
126041
|
schema:
|
|
124529
126042
|
type: array
|
|
124530
126043
|
items:
|
|
124531
|
-
$ref: '#/components/schemas/
|
|
126044
|
+
$ref: '#/components/schemas/TemplateFieldPermission'
|
|
124532
126045
|
text/json:
|
|
124533
126046
|
schema:
|
|
124534
126047
|
type: array
|
|
124535
126048
|
items:
|
|
124536
|
-
$ref: '#/components/schemas/
|
|
126049
|
+
$ref: '#/components/schemas/TemplateFieldPermission'
|
|
124537
126050
|
'400':
|
|
124538
126051
|
description: Bad Request
|
|
124539
126052
|
content:
|
|
@@ -124570,14 +126083,14 @@ paths:
|
|
|
124570
126083
|
text/json:
|
|
124571
126084
|
schema:
|
|
124572
126085
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
124573
|
-
/api/template-
|
|
126086
|
+
/api/template-field-permissions/id-name:
|
|
124574
126087
|
get:
|
|
124575
126088
|
tags:
|
|
124576
|
-
-
|
|
126089
|
+
- TemplateFieldPermissions
|
|
124577
126090
|
summary: Gets a list of resources.
|
|
124578
126091
|
operationId: GetListIdName
|
|
124579
126092
|
parameters:
|
|
124580
|
-
- name:
|
|
126093
|
+
- name: TemplateDetailId
|
|
124581
126094
|
in: query
|
|
124582
126095
|
description: Gets or sets the queryable template detail id.
|
|
124583
126096
|
schema:
|
|
@@ -124656,17 +126169,17 @@ paths:
|
|
|
124656
126169
|
schema:
|
|
124657
126170
|
type: array
|
|
124658
126171
|
items:
|
|
124659
|
-
$ref: '#/components/schemas/
|
|
126172
|
+
$ref: '#/components/schemas/TemplateFieldPermission'
|
|
124660
126173
|
application/json:
|
|
124661
126174
|
schema:
|
|
124662
126175
|
type: array
|
|
124663
126176
|
items:
|
|
124664
|
-
$ref: '#/components/schemas/
|
|
126177
|
+
$ref: '#/components/schemas/TemplateFieldPermission'
|
|
124665
126178
|
text/json:
|
|
124666
126179
|
schema:
|
|
124667
126180
|
type: array
|
|
124668
126181
|
items:
|
|
124669
|
-
$ref: '#/components/schemas/
|
|
126182
|
+
$ref: '#/components/schemas/TemplateFieldPermission'
|
|
124670
126183
|
'400':
|
|
124671
126184
|
description: Bad Request
|
|
124672
126185
|
content:
|
|
@@ -124703,10 +126216,10 @@ paths:
|
|
|
124703
126216
|
text/json:
|
|
124704
126217
|
schema:
|
|
124705
126218
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
124706
|
-
/api/template-
|
|
126219
|
+
/api/template-offers/v2-temporary-route:
|
|
124707
126220
|
post:
|
|
124708
126221
|
tags:
|
|
124709
|
-
-
|
|
126222
|
+
- TemplateOffers
|
|
124710
126223
|
summary: Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
124711
126224
|
operationId: Post
|
|
124712
126225
|
requestBody:
|
|
@@ -124714,26 +126227,26 @@ paths:
|
|
|
124714
126227
|
content:
|
|
124715
126228
|
application/json:
|
|
124716
126229
|
schema:
|
|
124717
|
-
$ref: '#/components/schemas/
|
|
126230
|
+
$ref: '#/components/schemas/TemplateOfferPost'
|
|
124718
126231
|
text/json:
|
|
124719
126232
|
schema:
|
|
124720
|
-
$ref: '#/components/schemas/
|
|
126233
|
+
$ref: '#/components/schemas/TemplateOfferPost'
|
|
124721
126234
|
application/*+json:
|
|
124722
126235
|
schema:
|
|
124723
|
-
$ref: '#/components/schemas/
|
|
126236
|
+
$ref: '#/components/schemas/TemplateOfferPost'
|
|
124724
126237
|
responses:
|
|
124725
126238
|
'200':
|
|
124726
126239
|
description: OK
|
|
124727
126240
|
content:
|
|
124728
126241
|
text/plain:
|
|
124729
126242
|
schema:
|
|
124730
|
-
$ref: '#/components/schemas/
|
|
126243
|
+
$ref: '#/components/schemas/TemplateOffer'
|
|
124731
126244
|
application/json:
|
|
124732
126245
|
schema:
|
|
124733
|
-
$ref: '#/components/schemas/
|
|
126246
|
+
$ref: '#/components/schemas/TemplateOffer'
|
|
124734
126247
|
text/json:
|
|
124735
126248
|
schema:
|
|
124736
|
-
$ref: '#/components/schemas/
|
|
126249
|
+
$ref: '#/components/schemas/TemplateOffer'
|
|
124737
126250
|
'400':
|
|
124738
126251
|
description: Bad Request
|
|
124739
126252
|
content:
|
|
@@ -124772,7 +126285,7 @@ paths:
|
|
|
124772
126285
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
124773
126286
|
patch:
|
|
124774
126287
|
tags:
|
|
124775
|
-
-
|
|
126288
|
+
- TemplateOffers
|
|
124776
126289
|
summary: Patches the resource.
|
|
124777
126290
|
operationId: Patch
|
|
124778
126291
|
requestBody:
|
|
@@ -124780,26 +126293,26 @@ paths:
|
|
|
124780
126293
|
content:
|
|
124781
126294
|
application/json:
|
|
124782
126295
|
schema:
|
|
124783
|
-
$ref: '#/components/schemas/
|
|
126296
|
+
$ref: '#/components/schemas/TemplateOfferPatch'
|
|
124784
126297
|
text/json:
|
|
124785
126298
|
schema:
|
|
124786
|
-
$ref: '#/components/schemas/
|
|
126299
|
+
$ref: '#/components/schemas/TemplateOfferPatch'
|
|
124787
126300
|
application/*+json:
|
|
124788
126301
|
schema:
|
|
124789
|
-
$ref: '#/components/schemas/
|
|
126302
|
+
$ref: '#/components/schemas/TemplateOfferPatch'
|
|
124790
126303
|
responses:
|
|
124791
126304
|
'200':
|
|
124792
126305
|
description: OK
|
|
124793
126306
|
content:
|
|
124794
126307
|
text/plain:
|
|
124795
126308
|
schema:
|
|
124796
|
-
$ref: '#/components/schemas/
|
|
126309
|
+
$ref: '#/components/schemas/TemplateOffer'
|
|
124797
126310
|
application/json:
|
|
124798
126311
|
schema:
|
|
124799
|
-
$ref: '#/components/schemas/
|
|
126312
|
+
$ref: '#/components/schemas/TemplateOffer'
|
|
124800
126313
|
text/json:
|
|
124801
126314
|
schema:
|
|
124802
|
-
$ref: '#/components/schemas/
|
|
126315
|
+
$ref: '#/components/schemas/TemplateOffer'
|
|
124803
126316
|
'400':
|
|
124804
126317
|
description: Bad Request
|
|
124805
126318
|
content:
|
|
@@ -124836,10 +126349,10 @@ paths:
|
|
|
124836
126349
|
text/json:
|
|
124837
126350
|
schema:
|
|
124838
126351
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
124839
|
-
/api/template-
|
|
126352
|
+
/api/template-offers/v2-temporary-route/list:
|
|
124840
126353
|
post:
|
|
124841
126354
|
tags:
|
|
124842
|
-
-
|
|
126355
|
+
- TemplateOffers
|
|
124843
126356
|
summary: Inserts a list of resources.
|
|
124844
126357
|
operationId: PostList
|
|
124845
126358
|
requestBody:
|
|
@@ -124849,17 +126362,17 @@ paths:
|
|
|
124849
126362
|
schema:
|
|
124850
126363
|
type: array
|
|
124851
126364
|
items:
|
|
124852
|
-
$ref: '#/components/schemas/
|
|
126365
|
+
$ref: '#/components/schemas/TemplateOfferPost'
|
|
124853
126366
|
text/json:
|
|
124854
126367
|
schema:
|
|
124855
126368
|
type: array
|
|
124856
126369
|
items:
|
|
124857
|
-
$ref: '#/components/schemas/
|
|
126370
|
+
$ref: '#/components/schemas/TemplateOfferPost'
|
|
124858
126371
|
application/*+json:
|
|
124859
126372
|
schema:
|
|
124860
126373
|
type: array
|
|
124861
126374
|
items:
|
|
124862
|
-
$ref: '#/components/schemas/
|
|
126375
|
+
$ref: '#/components/schemas/TemplateOfferPost'
|
|
124863
126376
|
responses:
|
|
124864
126377
|
'200':
|
|
124865
126378
|
description: OK
|
|
@@ -124868,17 +126381,17 @@ paths:
|
|
|
124868
126381
|
schema:
|
|
124869
126382
|
type: array
|
|
124870
126383
|
items:
|
|
124871
|
-
$ref: '#/components/schemas/
|
|
126384
|
+
$ref: '#/components/schemas/TemplateOffer'
|
|
124872
126385
|
application/json:
|
|
124873
126386
|
schema:
|
|
124874
126387
|
type: array
|
|
124875
126388
|
items:
|
|
124876
|
-
$ref: '#/components/schemas/
|
|
126389
|
+
$ref: '#/components/schemas/TemplateOffer'
|
|
124877
126390
|
text/json:
|
|
124878
126391
|
schema:
|
|
124879
126392
|
type: array
|
|
124880
126393
|
items:
|
|
124881
|
-
$ref: '#/components/schemas/
|
|
126394
|
+
$ref: '#/components/schemas/TemplateOffer'
|
|
124882
126395
|
'400':
|
|
124883
126396
|
description: Bad Request
|
|
124884
126397
|
content:
|
|
@@ -124915,10 +126428,10 @@ paths:
|
|
|
124915
126428
|
text/json:
|
|
124916
126429
|
schema:
|
|
124917
126430
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
124918
|
-
/api/template-
|
|
126431
|
+
/api/template-offers/v2-temporary-route/with-references:
|
|
124919
126432
|
patch:
|
|
124920
126433
|
tags:
|
|
124921
|
-
-
|
|
126434
|
+
- TemplateOffers
|
|
124922
126435
|
summary: Patches the resource.
|
|
124923
126436
|
operationId: PatchWithReferences
|
|
124924
126437
|
requestBody:
|
|
@@ -124926,26 +126439,26 @@ paths:
|
|
|
124926
126439
|
content:
|
|
124927
126440
|
application/json:
|
|
124928
126441
|
schema:
|
|
124929
|
-
$ref: '#/components/schemas/
|
|
126442
|
+
$ref: '#/components/schemas/TemplateOfferPatch'
|
|
124930
126443
|
text/json:
|
|
124931
126444
|
schema:
|
|
124932
|
-
$ref: '#/components/schemas/
|
|
126445
|
+
$ref: '#/components/schemas/TemplateOfferPatch'
|
|
124933
126446
|
application/*+json:
|
|
124934
126447
|
schema:
|
|
124935
|
-
$ref: '#/components/schemas/
|
|
126448
|
+
$ref: '#/components/schemas/TemplateOfferPatch'
|
|
124936
126449
|
responses:
|
|
124937
126450
|
'200':
|
|
124938
126451
|
description: OK
|
|
124939
126452
|
content:
|
|
124940
126453
|
text/plain:
|
|
124941
126454
|
schema:
|
|
124942
|
-
$ref: '#/components/schemas/
|
|
126455
|
+
$ref: '#/components/schemas/TemplateOffer'
|
|
124943
126456
|
application/json:
|
|
124944
126457
|
schema:
|
|
124945
|
-
$ref: '#/components/schemas/
|
|
126458
|
+
$ref: '#/components/schemas/TemplateOffer'
|
|
124946
126459
|
text/json:
|
|
124947
126460
|
schema:
|
|
124948
|
-
$ref: '#/components/schemas/
|
|
126461
|
+
$ref: '#/components/schemas/TemplateOffer'
|
|
124949
126462
|
'400':
|
|
124950
126463
|
description: Bad Request
|
|
124951
126464
|
content:
|
|
@@ -124982,10 +126495,10 @@ paths:
|
|
|
124982
126495
|
text/json:
|
|
124983
126496
|
schema:
|
|
124984
126497
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
124985
|
-
/api/template-
|
|
126498
|
+
/api/template-offers:
|
|
124986
126499
|
delete:
|
|
124987
126500
|
tags:
|
|
124988
|
-
-
|
|
126501
|
+
- TemplateOffers
|
|
124989
126502
|
summary: Deletes the resource.
|
|
124990
126503
|
operationId: DeleteByObject
|
|
124991
126504
|
requestBody:
|
|
@@ -124993,13 +126506,13 @@ paths:
|
|
|
124993
126506
|
content:
|
|
124994
126507
|
application/json:
|
|
124995
126508
|
schema:
|
|
124996
|
-
$ref: '#/components/schemas/
|
|
126509
|
+
$ref: '#/components/schemas/TemplateOffer'
|
|
124997
126510
|
text/json:
|
|
124998
126511
|
schema:
|
|
124999
|
-
$ref: '#/components/schemas/
|
|
126512
|
+
$ref: '#/components/schemas/TemplateOffer'
|
|
125000
126513
|
application/*+json:
|
|
125001
126514
|
schema:
|
|
125002
|
-
$ref: '#/components/schemas/
|
|
126515
|
+
$ref: '#/components/schemas/TemplateOffer'
|
|
125003
126516
|
responses:
|
|
125004
126517
|
'200':
|
|
125005
126518
|
description: OK
|
|
@@ -125041,7 +126554,7 @@ paths:
|
|
|
125041
126554
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
125042
126555
|
get:
|
|
125043
126556
|
tags:
|
|
125044
|
-
-
|
|
126557
|
+
- TemplateOffers
|
|
125045
126558
|
summary: Gets a list of resources.
|
|
125046
126559
|
operationId: GetPage
|
|
125047
126560
|
parameters:
|
|
@@ -125122,13 +126635,13 @@ paths:
|
|
|
125122
126635
|
content:
|
|
125123
126636
|
text/plain:
|
|
125124
126637
|
schema:
|
|
125125
|
-
$ref: '#/components/schemas/
|
|
126638
|
+
$ref: '#/components/schemas/TemplateOfferPage'
|
|
125126
126639
|
application/json:
|
|
125127
126640
|
schema:
|
|
125128
|
-
$ref: '#/components/schemas/
|
|
126641
|
+
$ref: '#/components/schemas/TemplateOfferPage'
|
|
125129
126642
|
text/json:
|
|
125130
126643
|
schema:
|
|
125131
|
-
$ref: '#/components/schemas/
|
|
126644
|
+
$ref: '#/components/schemas/TemplateOfferPage'
|
|
125132
126645
|
'400':
|
|
125133
126646
|
description: Bad Request
|
|
125134
126647
|
content:
|
|
@@ -125165,10 +126678,10 @@ paths:
|
|
|
125165
126678
|
text/json:
|
|
125166
126679
|
schema:
|
|
125167
126680
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
125168
|
-
'/api/template-
|
|
126681
|
+
'/api/template-offers/{id}':
|
|
125169
126682
|
delete:
|
|
125170
126683
|
tags:
|
|
125171
|
-
-
|
|
126684
|
+
- TemplateOffers
|
|
125172
126685
|
summary: Deletes the resource.
|
|
125173
126686
|
operationId: DeleteById
|
|
125174
126687
|
parameters:
|
|
@@ -125220,7 +126733,7 @@ paths:
|
|
|
125220
126733
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
125221
126734
|
get:
|
|
125222
126735
|
tags:
|
|
125223
|
-
-
|
|
126736
|
+
- TemplateOffers
|
|
125224
126737
|
summary: Gets the resource by its Id.
|
|
125225
126738
|
operationId: GetObject
|
|
125226
126739
|
parameters:
|
|
@@ -125237,13 +126750,13 @@ paths:
|
|
|
125237
126750
|
content:
|
|
125238
126751
|
text/plain:
|
|
125239
126752
|
schema:
|
|
125240
|
-
$ref: '#/components/schemas/
|
|
126753
|
+
$ref: '#/components/schemas/TemplateOffer'
|
|
125241
126754
|
application/json:
|
|
125242
126755
|
schema:
|
|
125243
|
-
$ref: '#/components/schemas/
|
|
126756
|
+
$ref: '#/components/schemas/TemplateOffer'
|
|
125244
126757
|
text/json:
|
|
125245
126758
|
schema:
|
|
125246
|
-
$ref: '#/components/schemas/
|
|
126759
|
+
$ref: '#/components/schemas/TemplateOffer'
|
|
125247
126760
|
'400':
|
|
125248
126761
|
description: Bad Request
|
|
125249
126762
|
content:
|
|
@@ -125280,10 +126793,10 @@ paths:
|
|
|
125280
126793
|
text/json:
|
|
125281
126794
|
schema:
|
|
125282
126795
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
125283
|
-
'/api/template-
|
|
126796
|
+
'/api/template-offers/{id}/deletable':
|
|
125284
126797
|
get:
|
|
125285
126798
|
tags:
|
|
125286
|
-
-
|
|
126799
|
+
- TemplateOffers
|
|
125287
126800
|
summary: Returns a value indicating whether the resource is deletable.
|
|
125288
126801
|
operationId: CanDelete
|
|
125289
126802
|
parameters:
|
|
@@ -125343,10 +126856,10 @@ paths:
|
|
|
125343
126856
|
text/json:
|
|
125344
126857
|
schema:
|
|
125345
126858
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
125346
|
-
/api/template-
|
|
126859
|
+
/api/template-offers/exists:
|
|
125347
126860
|
get:
|
|
125348
126861
|
tags:
|
|
125349
|
-
-
|
|
126862
|
+
- TemplateOffers
|
|
125350
126863
|
summary: Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
125351
126864
|
operationId: Exists
|
|
125352
126865
|
parameters:
|
|
@@ -125470,10 +126983,10 @@ paths:
|
|
|
125470
126983
|
text/json:
|
|
125471
126984
|
schema:
|
|
125472
126985
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
125473
|
-
/api/template-
|
|
126986
|
+
/api/template-offers/count:
|
|
125474
126987
|
get:
|
|
125475
126988
|
tags:
|
|
125476
|
-
-
|
|
126989
|
+
- TemplateOffers
|
|
125477
126990
|
summary: Returns the number of results in the database given the provided search params.
|
|
125478
126991
|
operationId: Count
|
|
125479
126992
|
parameters:
|
|
@@ -125600,10 +127113,10 @@ paths:
|
|
|
125600
127113
|
text/json:
|
|
125601
127114
|
schema:
|
|
125602
127115
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
125603
|
-
/api/template-
|
|
127116
|
+
/api/template-offers/without-references:
|
|
125604
127117
|
get:
|
|
125605
127118
|
tags:
|
|
125606
|
-
-
|
|
127119
|
+
- TemplateOffers
|
|
125607
127120
|
summary: Gets a list of resources unpaged and without references.
|
|
125608
127121
|
operationId: GetListWithoutReferences
|
|
125609
127122
|
parameters:
|
|
@@ -125686,17 +127199,17 @@ paths:
|
|
|
125686
127199
|
schema:
|
|
125687
127200
|
type: array
|
|
125688
127201
|
items:
|
|
125689
|
-
$ref: '#/components/schemas/
|
|
127202
|
+
$ref: '#/components/schemas/TemplateOffer'
|
|
125690
127203
|
application/json:
|
|
125691
127204
|
schema:
|
|
125692
127205
|
type: array
|
|
125693
127206
|
items:
|
|
125694
|
-
$ref: '#/components/schemas/
|
|
127207
|
+
$ref: '#/components/schemas/TemplateOffer'
|
|
125695
127208
|
text/json:
|
|
125696
127209
|
schema:
|
|
125697
127210
|
type: array
|
|
125698
127211
|
items:
|
|
125699
|
-
$ref: '#/components/schemas/
|
|
127212
|
+
$ref: '#/components/schemas/TemplateOffer'
|
|
125700
127213
|
'400':
|
|
125701
127214
|
description: Bad Request
|
|
125702
127215
|
content:
|
|
@@ -125733,10 +127246,10 @@ paths:
|
|
|
125733
127246
|
text/json:
|
|
125734
127247
|
schema:
|
|
125735
127248
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
125736
|
-
/api/template-
|
|
127249
|
+
/api/template-offers/id-name:
|
|
125737
127250
|
get:
|
|
125738
127251
|
tags:
|
|
125739
|
-
-
|
|
127252
|
+
- TemplateOffers
|
|
125740
127253
|
summary: Gets a list of resources.
|
|
125741
127254
|
operationId: GetListIdName
|
|
125742
127255
|
parameters:
|
|
@@ -125819,17 +127332,17 @@ paths:
|
|
|
125819
127332
|
schema:
|
|
125820
127333
|
type: array
|
|
125821
127334
|
items:
|
|
125822
|
-
$ref: '#/components/schemas/
|
|
127335
|
+
$ref: '#/components/schemas/TemplateOffer'
|
|
125823
127336
|
application/json:
|
|
125824
127337
|
schema:
|
|
125825
127338
|
type: array
|
|
125826
127339
|
items:
|
|
125827
|
-
$ref: '#/components/schemas/
|
|
127340
|
+
$ref: '#/components/schemas/TemplateOffer'
|
|
125828
127341
|
text/json:
|
|
125829
127342
|
schema:
|
|
125830
127343
|
type: array
|
|
125831
127344
|
items:
|
|
125832
|
-
$ref: '#/components/schemas/
|
|
127345
|
+
$ref: '#/components/schemas/TemplateOffer'
|
|
125833
127346
|
'400':
|
|
125834
127347
|
description: Bad Request
|
|
125835
127348
|
content:
|
|
@@ -125866,10 +127379,215 @@ paths:
|
|
|
125866
127379
|
text/json:
|
|
125867
127380
|
schema:
|
|
125868
127381
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
125869
|
-
/api/
|
|
127382
|
+
'/api/templates/{id}/duplicate':
|
|
125870
127383
|
post:
|
|
125871
127384
|
tags:
|
|
125872
|
-
-
|
|
127385
|
+
- Templates
|
|
127386
|
+
summary: Duplicates a template.
|
|
127387
|
+
operationId: Duplicate
|
|
127388
|
+
parameters:
|
|
127389
|
+
- name: id
|
|
127390
|
+
in: path
|
|
127391
|
+
description: The template id.
|
|
127392
|
+
required: true
|
|
127393
|
+
schema:
|
|
127394
|
+
type: string
|
|
127395
|
+
format: uuid
|
|
127396
|
+
requestBody:
|
|
127397
|
+
description: The post body.
|
|
127398
|
+
content:
|
|
127399
|
+
application/json:
|
|
127400
|
+
schema:
|
|
127401
|
+
$ref: '#/components/schemas/TemplateDuplicatePost'
|
|
127402
|
+
text/json:
|
|
127403
|
+
schema:
|
|
127404
|
+
$ref: '#/components/schemas/TemplateDuplicatePost'
|
|
127405
|
+
application/*+json:
|
|
127406
|
+
schema:
|
|
127407
|
+
$ref: '#/components/schemas/TemplateDuplicatePost'
|
|
127408
|
+
responses:
|
|
127409
|
+
'200':
|
|
127410
|
+
description: OK
|
|
127411
|
+
content:
|
|
127412
|
+
text/plain:
|
|
127413
|
+
schema:
|
|
127414
|
+
$ref: '#/components/schemas/Template'
|
|
127415
|
+
application/json:
|
|
127416
|
+
schema:
|
|
127417
|
+
$ref: '#/components/schemas/Template'
|
|
127418
|
+
text/json:
|
|
127419
|
+
schema:
|
|
127420
|
+
$ref: '#/components/schemas/Template'
|
|
127421
|
+
'400':
|
|
127422
|
+
description: Bad Request
|
|
127423
|
+
content:
|
|
127424
|
+
text/plain:
|
|
127425
|
+
schema:
|
|
127426
|
+
$ref: '#/components/schemas/ReachError'
|
|
127427
|
+
application/json:
|
|
127428
|
+
schema:
|
|
127429
|
+
$ref: '#/components/schemas/ReachError'
|
|
127430
|
+
text/json:
|
|
127431
|
+
schema:
|
|
127432
|
+
$ref: '#/components/schemas/ReachError'
|
|
127433
|
+
'500':
|
|
127434
|
+
description: Internal Server Error
|
|
127435
|
+
content:
|
|
127436
|
+
text/plain:
|
|
127437
|
+
schema:
|
|
127438
|
+
$ref: '#/components/schemas/ReachError'
|
|
127439
|
+
application/json:
|
|
127440
|
+
schema:
|
|
127441
|
+
$ref: '#/components/schemas/ReachError'
|
|
127442
|
+
text/json:
|
|
127443
|
+
schema:
|
|
127444
|
+
$ref: '#/components/schemas/ReachError'
|
|
127445
|
+
'422':
|
|
127446
|
+
description: Unprocessable Content
|
|
127447
|
+
content:
|
|
127448
|
+
text/plain:
|
|
127449
|
+
schema:
|
|
127450
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
127451
|
+
application/json:
|
|
127452
|
+
schema:
|
|
127453
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
127454
|
+
text/json:
|
|
127455
|
+
schema:
|
|
127456
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
127457
|
+
'/api/templates/{id}/use':
|
|
127458
|
+
post:
|
|
127459
|
+
tags:
|
|
127460
|
+
- Templates
|
|
127461
|
+
summary: Creates an activity from a template.
|
|
127462
|
+
operationId: Use
|
|
127463
|
+
parameters:
|
|
127464
|
+
- name: id
|
|
127465
|
+
in: path
|
|
127466
|
+
description: The template id.
|
|
127467
|
+
required: true
|
|
127468
|
+
schema:
|
|
127469
|
+
type: string
|
|
127470
|
+
format: uuid
|
|
127471
|
+
responses:
|
|
127472
|
+
'200':
|
|
127473
|
+
description: OK
|
|
127474
|
+
content:
|
|
127475
|
+
text/plain:
|
|
127476
|
+
schema:
|
|
127477
|
+
$ref: '#/components/schemas/TemplateUseResponse'
|
|
127478
|
+
application/json:
|
|
127479
|
+
schema:
|
|
127480
|
+
$ref: '#/components/schemas/TemplateUseResponse'
|
|
127481
|
+
text/json:
|
|
127482
|
+
schema:
|
|
127483
|
+
$ref: '#/components/schemas/TemplateUseResponse'
|
|
127484
|
+
'400':
|
|
127485
|
+
description: Bad Request
|
|
127486
|
+
content:
|
|
127487
|
+
text/plain:
|
|
127488
|
+
schema:
|
|
127489
|
+
$ref: '#/components/schemas/ReachError'
|
|
127490
|
+
application/json:
|
|
127491
|
+
schema:
|
|
127492
|
+
$ref: '#/components/schemas/ReachError'
|
|
127493
|
+
text/json:
|
|
127494
|
+
schema:
|
|
127495
|
+
$ref: '#/components/schemas/ReachError'
|
|
127496
|
+
'500':
|
|
127497
|
+
description: Internal Server Error
|
|
127498
|
+
content:
|
|
127499
|
+
text/plain:
|
|
127500
|
+
schema:
|
|
127501
|
+
$ref: '#/components/schemas/ReachError'
|
|
127502
|
+
application/json:
|
|
127503
|
+
schema:
|
|
127504
|
+
$ref: '#/components/schemas/ReachError'
|
|
127505
|
+
text/json:
|
|
127506
|
+
schema:
|
|
127507
|
+
$ref: '#/components/schemas/ReachError'
|
|
127508
|
+
'422':
|
|
127509
|
+
description: Unprocessable Content
|
|
127510
|
+
content:
|
|
127511
|
+
text/plain:
|
|
127512
|
+
schema:
|
|
127513
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
127514
|
+
application/json:
|
|
127515
|
+
schema:
|
|
127516
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
127517
|
+
text/json:
|
|
127518
|
+
schema:
|
|
127519
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
127520
|
+
/api/templates/create:
|
|
127521
|
+
post:
|
|
127522
|
+
tags:
|
|
127523
|
+
- Templates
|
|
127524
|
+
summary: Creates a template.
|
|
127525
|
+
operationId: Create
|
|
127526
|
+
requestBody:
|
|
127527
|
+
description: The template to be created.
|
|
127528
|
+
content:
|
|
127529
|
+
application/json:
|
|
127530
|
+
schema:
|
|
127531
|
+
$ref: '#/components/schemas/TemplateCreate'
|
|
127532
|
+
text/json:
|
|
127533
|
+
schema:
|
|
127534
|
+
$ref: '#/components/schemas/TemplateCreate'
|
|
127535
|
+
application/*+json:
|
|
127536
|
+
schema:
|
|
127537
|
+
$ref: '#/components/schemas/TemplateCreate'
|
|
127538
|
+
responses:
|
|
127539
|
+
'200':
|
|
127540
|
+
description: OK
|
|
127541
|
+
content:
|
|
127542
|
+
text/plain:
|
|
127543
|
+
schema:
|
|
127544
|
+
$ref: '#/components/schemas/Template'
|
|
127545
|
+
application/json:
|
|
127546
|
+
schema:
|
|
127547
|
+
$ref: '#/components/schemas/Template'
|
|
127548
|
+
text/json:
|
|
127549
|
+
schema:
|
|
127550
|
+
$ref: '#/components/schemas/Template'
|
|
127551
|
+
'400':
|
|
127552
|
+
description: Bad Request
|
|
127553
|
+
content:
|
|
127554
|
+
text/plain:
|
|
127555
|
+
schema:
|
|
127556
|
+
$ref: '#/components/schemas/ReachError'
|
|
127557
|
+
application/json:
|
|
127558
|
+
schema:
|
|
127559
|
+
$ref: '#/components/schemas/ReachError'
|
|
127560
|
+
text/json:
|
|
127561
|
+
schema:
|
|
127562
|
+
$ref: '#/components/schemas/ReachError'
|
|
127563
|
+
'500':
|
|
127564
|
+
description: Internal Server Error
|
|
127565
|
+
content:
|
|
127566
|
+
text/plain:
|
|
127567
|
+
schema:
|
|
127568
|
+
$ref: '#/components/schemas/ReachError'
|
|
127569
|
+
application/json:
|
|
127570
|
+
schema:
|
|
127571
|
+
$ref: '#/components/schemas/ReachError'
|
|
127572
|
+
text/json:
|
|
127573
|
+
schema:
|
|
127574
|
+
$ref: '#/components/schemas/ReachError'
|
|
127575
|
+
'422':
|
|
127576
|
+
description: Unprocessable Content
|
|
127577
|
+
content:
|
|
127578
|
+
text/plain:
|
|
127579
|
+
schema:
|
|
127580
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
127581
|
+
application/json:
|
|
127582
|
+
schema:
|
|
127583
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
127584
|
+
text/json:
|
|
127585
|
+
schema:
|
|
127586
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
127587
|
+
/api/templates/v2-temporary-route:
|
|
127588
|
+
post:
|
|
127589
|
+
tags:
|
|
127590
|
+
- Templates
|
|
125873
127591
|
summary: Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
125874
127592
|
operationId: Post
|
|
125875
127593
|
requestBody:
|
|
@@ -125877,26 +127595,26 @@ paths:
|
|
|
125877
127595
|
content:
|
|
125878
127596
|
application/json:
|
|
125879
127597
|
schema:
|
|
125880
|
-
$ref: '#/components/schemas/
|
|
127598
|
+
$ref: '#/components/schemas/TemplatePost'
|
|
125881
127599
|
text/json:
|
|
125882
127600
|
schema:
|
|
125883
|
-
$ref: '#/components/schemas/
|
|
127601
|
+
$ref: '#/components/schemas/TemplatePost'
|
|
125884
127602
|
application/*+json:
|
|
125885
127603
|
schema:
|
|
125886
|
-
$ref: '#/components/schemas/
|
|
127604
|
+
$ref: '#/components/schemas/TemplatePost'
|
|
125887
127605
|
responses:
|
|
125888
127606
|
'200':
|
|
125889
127607
|
description: OK
|
|
125890
127608
|
content:
|
|
125891
127609
|
text/plain:
|
|
125892
127610
|
schema:
|
|
125893
|
-
$ref: '#/components/schemas/
|
|
127611
|
+
$ref: '#/components/schemas/Template'
|
|
125894
127612
|
application/json:
|
|
125895
127613
|
schema:
|
|
125896
|
-
$ref: '#/components/schemas/
|
|
127614
|
+
$ref: '#/components/schemas/Template'
|
|
125897
127615
|
text/json:
|
|
125898
127616
|
schema:
|
|
125899
|
-
$ref: '#/components/schemas/
|
|
127617
|
+
$ref: '#/components/schemas/Template'
|
|
125900
127618
|
'400':
|
|
125901
127619
|
description: Bad Request
|
|
125902
127620
|
content:
|
|
@@ -125935,7 +127653,7 @@ paths:
|
|
|
125935
127653
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
125936
127654
|
patch:
|
|
125937
127655
|
tags:
|
|
125938
|
-
-
|
|
127656
|
+
- Templates
|
|
125939
127657
|
summary: Patches the resource.
|
|
125940
127658
|
operationId: Patch
|
|
125941
127659
|
requestBody:
|
|
@@ -125943,26 +127661,26 @@ paths:
|
|
|
125943
127661
|
content:
|
|
125944
127662
|
application/json:
|
|
125945
127663
|
schema:
|
|
125946
|
-
$ref: '#/components/schemas/
|
|
127664
|
+
$ref: '#/components/schemas/TemplatePatch'
|
|
125947
127665
|
text/json:
|
|
125948
127666
|
schema:
|
|
125949
|
-
$ref: '#/components/schemas/
|
|
127667
|
+
$ref: '#/components/schemas/TemplatePatch'
|
|
125950
127668
|
application/*+json:
|
|
125951
127669
|
schema:
|
|
125952
|
-
$ref: '#/components/schemas/
|
|
127670
|
+
$ref: '#/components/schemas/TemplatePatch'
|
|
125953
127671
|
responses:
|
|
125954
127672
|
'200':
|
|
125955
127673
|
description: OK
|
|
125956
127674
|
content:
|
|
125957
127675
|
text/plain:
|
|
125958
127676
|
schema:
|
|
125959
|
-
$ref: '#/components/schemas/
|
|
127677
|
+
$ref: '#/components/schemas/Template'
|
|
125960
127678
|
application/json:
|
|
125961
127679
|
schema:
|
|
125962
|
-
$ref: '#/components/schemas/
|
|
127680
|
+
$ref: '#/components/schemas/Template'
|
|
125963
127681
|
text/json:
|
|
125964
127682
|
schema:
|
|
125965
|
-
$ref: '#/components/schemas/
|
|
127683
|
+
$ref: '#/components/schemas/Template'
|
|
125966
127684
|
'400':
|
|
125967
127685
|
description: Bad Request
|
|
125968
127686
|
content:
|
|
@@ -125999,10 +127717,10 @@ paths:
|
|
|
125999
127717
|
text/json:
|
|
126000
127718
|
schema:
|
|
126001
127719
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
126002
|
-
/api/
|
|
127720
|
+
/api/templates/v2-temporary-route/list:
|
|
126003
127721
|
post:
|
|
126004
127722
|
tags:
|
|
126005
|
-
-
|
|
127723
|
+
- Templates
|
|
126006
127724
|
summary: Inserts a list of resources.
|
|
126007
127725
|
operationId: PostList
|
|
126008
127726
|
requestBody:
|
|
@@ -126012,17 +127730,17 @@ paths:
|
|
|
126012
127730
|
schema:
|
|
126013
127731
|
type: array
|
|
126014
127732
|
items:
|
|
126015
|
-
$ref: '#/components/schemas/
|
|
127733
|
+
$ref: '#/components/schemas/TemplatePost'
|
|
126016
127734
|
text/json:
|
|
126017
127735
|
schema:
|
|
126018
127736
|
type: array
|
|
126019
127737
|
items:
|
|
126020
|
-
$ref: '#/components/schemas/
|
|
127738
|
+
$ref: '#/components/schemas/TemplatePost'
|
|
126021
127739
|
application/*+json:
|
|
126022
127740
|
schema:
|
|
126023
127741
|
type: array
|
|
126024
127742
|
items:
|
|
126025
|
-
$ref: '#/components/schemas/
|
|
127743
|
+
$ref: '#/components/schemas/TemplatePost'
|
|
126026
127744
|
responses:
|
|
126027
127745
|
'200':
|
|
126028
127746
|
description: OK
|
|
@@ -126031,17 +127749,17 @@ paths:
|
|
|
126031
127749
|
schema:
|
|
126032
127750
|
type: array
|
|
126033
127751
|
items:
|
|
126034
|
-
$ref: '#/components/schemas/
|
|
127752
|
+
$ref: '#/components/schemas/Template'
|
|
126035
127753
|
application/json:
|
|
126036
127754
|
schema:
|
|
126037
127755
|
type: array
|
|
126038
127756
|
items:
|
|
126039
|
-
$ref: '#/components/schemas/
|
|
127757
|
+
$ref: '#/components/schemas/Template'
|
|
126040
127758
|
text/json:
|
|
126041
127759
|
schema:
|
|
126042
127760
|
type: array
|
|
126043
127761
|
items:
|
|
126044
|
-
$ref: '#/components/schemas/
|
|
127762
|
+
$ref: '#/components/schemas/Template'
|
|
126045
127763
|
'400':
|
|
126046
127764
|
description: Bad Request
|
|
126047
127765
|
content:
|
|
@@ -126078,10 +127796,10 @@ paths:
|
|
|
126078
127796
|
text/json:
|
|
126079
127797
|
schema:
|
|
126080
127798
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
126081
|
-
/api/
|
|
127799
|
+
/api/templates/v2-temporary-route/with-references:
|
|
126082
127800
|
patch:
|
|
126083
127801
|
tags:
|
|
126084
|
-
-
|
|
127802
|
+
- Templates
|
|
126085
127803
|
summary: Patches the resource.
|
|
126086
127804
|
operationId: PatchWithReferences
|
|
126087
127805
|
requestBody:
|
|
@@ -126089,26 +127807,26 @@ paths:
|
|
|
126089
127807
|
content:
|
|
126090
127808
|
application/json:
|
|
126091
127809
|
schema:
|
|
126092
|
-
$ref: '#/components/schemas/
|
|
127810
|
+
$ref: '#/components/schemas/TemplatePatch'
|
|
126093
127811
|
text/json:
|
|
126094
127812
|
schema:
|
|
126095
|
-
$ref: '#/components/schemas/
|
|
127813
|
+
$ref: '#/components/schemas/TemplatePatch'
|
|
126096
127814
|
application/*+json:
|
|
126097
127815
|
schema:
|
|
126098
|
-
$ref: '#/components/schemas/
|
|
127816
|
+
$ref: '#/components/schemas/TemplatePatch'
|
|
126099
127817
|
responses:
|
|
126100
127818
|
'200':
|
|
126101
127819
|
description: OK
|
|
126102
127820
|
content:
|
|
126103
127821
|
text/plain:
|
|
126104
127822
|
schema:
|
|
126105
|
-
$ref: '#/components/schemas/
|
|
127823
|
+
$ref: '#/components/schemas/Template'
|
|
126106
127824
|
application/json:
|
|
126107
127825
|
schema:
|
|
126108
|
-
$ref: '#/components/schemas/
|
|
127826
|
+
$ref: '#/components/schemas/Template'
|
|
126109
127827
|
text/json:
|
|
126110
127828
|
schema:
|
|
126111
|
-
$ref: '#/components/schemas/
|
|
127829
|
+
$ref: '#/components/schemas/Template'
|
|
126112
127830
|
'400':
|
|
126113
127831
|
description: Bad Request
|
|
126114
127832
|
content:
|
|
@@ -126145,10 +127863,10 @@ paths:
|
|
|
126145
127863
|
text/json:
|
|
126146
127864
|
schema:
|
|
126147
127865
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
126148
|
-
/api/
|
|
127866
|
+
/api/templates:
|
|
126149
127867
|
delete:
|
|
126150
127868
|
tags:
|
|
126151
|
-
-
|
|
127869
|
+
- Templates
|
|
126152
127870
|
summary: Deletes the resource.
|
|
126153
127871
|
operationId: DeleteByObject
|
|
126154
127872
|
requestBody:
|
|
@@ -126156,13 +127874,13 @@ paths:
|
|
|
126156
127874
|
content:
|
|
126157
127875
|
application/json:
|
|
126158
127876
|
schema:
|
|
126159
|
-
$ref: '#/components/schemas/
|
|
127877
|
+
$ref: '#/components/schemas/Template'
|
|
126160
127878
|
text/json:
|
|
126161
127879
|
schema:
|
|
126162
|
-
$ref: '#/components/schemas/
|
|
127880
|
+
$ref: '#/components/schemas/Template'
|
|
126163
127881
|
application/*+json:
|
|
126164
127882
|
schema:
|
|
126165
|
-
$ref: '#/components/schemas/
|
|
127883
|
+
$ref: '#/components/schemas/Template'
|
|
126166
127884
|
responses:
|
|
126167
127885
|
'200':
|
|
126168
127886
|
description: OK
|
|
@@ -126204,16 +127922,18 @@ paths:
|
|
|
126204
127922
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
126205
127923
|
get:
|
|
126206
127924
|
tags:
|
|
126207
|
-
-
|
|
127925
|
+
- Templates
|
|
126208
127926
|
summary: Gets a list of resources.
|
|
126209
127927
|
operationId: GetPage
|
|
126210
127928
|
parameters:
|
|
126211
|
-
- name:
|
|
127929
|
+
- name: Ids
|
|
126212
127930
|
in: query
|
|
126213
|
-
description: Gets or sets the queryable template
|
|
127931
|
+
description: Gets or sets the queryable template ids.
|
|
126214
127932
|
schema:
|
|
126215
|
-
type:
|
|
126216
|
-
|
|
127933
|
+
type: array
|
|
127934
|
+
items:
|
|
127935
|
+
type: string
|
|
127936
|
+
format: uuid
|
|
126217
127937
|
- name: PageNumber
|
|
126218
127938
|
in: query
|
|
126219
127939
|
description: Gets or sets the page number for paged queries.
|
|
@@ -126285,13 +128005,13 @@ paths:
|
|
|
126285
128005
|
content:
|
|
126286
128006
|
text/plain:
|
|
126287
128007
|
schema:
|
|
126288
|
-
$ref: '#/components/schemas/
|
|
128008
|
+
$ref: '#/components/schemas/TemplatePage'
|
|
126289
128009
|
application/json:
|
|
126290
128010
|
schema:
|
|
126291
|
-
$ref: '#/components/schemas/
|
|
128011
|
+
$ref: '#/components/schemas/TemplatePage'
|
|
126292
128012
|
text/json:
|
|
126293
128013
|
schema:
|
|
126294
|
-
$ref: '#/components/schemas/
|
|
128014
|
+
$ref: '#/components/schemas/TemplatePage'
|
|
126295
128015
|
'400':
|
|
126296
128016
|
description: Bad Request
|
|
126297
128017
|
content:
|
|
@@ -126328,10 +128048,10 @@ paths:
|
|
|
126328
128048
|
text/json:
|
|
126329
128049
|
schema:
|
|
126330
128050
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
126331
|
-
'/api/
|
|
128051
|
+
'/api/templates/{id}':
|
|
126332
128052
|
delete:
|
|
126333
128053
|
tags:
|
|
126334
|
-
-
|
|
128054
|
+
- Templates
|
|
126335
128055
|
summary: Deletes the resource.
|
|
126336
128056
|
operationId: DeleteById
|
|
126337
128057
|
parameters:
|
|
@@ -126383,7 +128103,7 @@ paths:
|
|
|
126383
128103
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
126384
128104
|
get:
|
|
126385
128105
|
tags:
|
|
126386
|
-
-
|
|
128106
|
+
- Templates
|
|
126387
128107
|
summary: Gets the resource by its Id.
|
|
126388
128108
|
operationId: GetObject
|
|
126389
128109
|
parameters:
|
|
@@ -126400,13 +128120,13 @@ paths:
|
|
|
126400
128120
|
content:
|
|
126401
128121
|
text/plain:
|
|
126402
128122
|
schema:
|
|
126403
|
-
$ref: '#/components/schemas/
|
|
128123
|
+
$ref: '#/components/schemas/Template'
|
|
126404
128124
|
application/json:
|
|
126405
128125
|
schema:
|
|
126406
|
-
$ref: '#/components/schemas/
|
|
128126
|
+
$ref: '#/components/schemas/Template'
|
|
126407
128127
|
text/json:
|
|
126408
128128
|
schema:
|
|
126409
|
-
$ref: '#/components/schemas/
|
|
128129
|
+
$ref: '#/components/schemas/Template'
|
|
126410
128130
|
'400':
|
|
126411
128131
|
description: Bad Request
|
|
126412
128132
|
content:
|
|
@@ -126443,10 +128163,10 @@ paths:
|
|
|
126443
128163
|
text/json:
|
|
126444
128164
|
schema:
|
|
126445
128165
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
126446
|
-
'/api/
|
|
128166
|
+
'/api/templates/{id}/deletable':
|
|
126447
128167
|
get:
|
|
126448
128168
|
tags:
|
|
126449
|
-
-
|
|
128169
|
+
- Templates
|
|
126450
128170
|
summary: Returns a value indicating whether the resource is deletable.
|
|
126451
128171
|
operationId: CanDelete
|
|
126452
128172
|
parameters:
|
|
@@ -126506,19 +128226,21 @@ paths:
|
|
|
126506
128226
|
text/json:
|
|
126507
128227
|
schema:
|
|
126508
128228
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
126509
|
-
/api/
|
|
128229
|
+
/api/templates/exists:
|
|
126510
128230
|
get:
|
|
126511
128231
|
tags:
|
|
126512
|
-
-
|
|
128232
|
+
- Templates
|
|
126513
128233
|
summary: Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
126514
128234
|
operationId: Exists
|
|
126515
128235
|
parameters:
|
|
126516
|
-
- name:
|
|
128236
|
+
- name: Ids
|
|
126517
128237
|
in: query
|
|
126518
|
-
description: Gets or sets the queryable template
|
|
128238
|
+
description: Gets or sets the queryable template ids.
|
|
126519
128239
|
schema:
|
|
126520
|
-
type:
|
|
126521
|
-
|
|
128240
|
+
type: array
|
|
128241
|
+
items:
|
|
128242
|
+
type: string
|
|
128243
|
+
format: uuid
|
|
126522
128244
|
- name: PageNumber
|
|
126523
128245
|
in: query
|
|
126524
128246
|
description: Gets or sets the page number for paged queries.
|
|
@@ -126633,19 +128355,21 @@ paths:
|
|
|
126633
128355
|
text/json:
|
|
126634
128356
|
schema:
|
|
126635
128357
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
126636
|
-
/api/
|
|
128358
|
+
/api/templates/count:
|
|
126637
128359
|
get:
|
|
126638
128360
|
tags:
|
|
126639
|
-
-
|
|
128361
|
+
- Templates
|
|
126640
128362
|
summary: Returns the number of results in the database given the provided search params.
|
|
126641
128363
|
operationId: Count
|
|
126642
128364
|
parameters:
|
|
126643
|
-
- name:
|
|
128365
|
+
- name: Ids
|
|
126644
128366
|
in: query
|
|
126645
|
-
description: Gets or sets the queryable template
|
|
128367
|
+
description: Gets or sets the queryable template ids.
|
|
126646
128368
|
schema:
|
|
126647
|
-
type:
|
|
126648
|
-
|
|
128369
|
+
type: array
|
|
128370
|
+
items:
|
|
128371
|
+
type: string
|
|
128372
|
+
format: uuid
|
|
126649
128373
|
- name: PageNumber
|
|
126650
128374
|
in: query
|
|
126651
128375
|
description: Gets or sets the page number for paged queries.
|
|
@@ -126763,19 +128487,21 @@ paths:
|
|
|
126763
128487
|
text/json:
|
|
126764
128488
|
schema:
|
|
126765
128489
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
126766
|
-
/api/
|
|
128490
|
+
/api/templates/without-references:
|
|
126767
128491
|
get:
|
|
126768
128492
|
tags:
|
|
126769
|
-
-
|
|
128493
|
+
- Templates
|
|
126770
128494
|
summary: Gets a list of resources unpaged and without references.
|
|
126771
128495
|
operationId: GetListWithoutReferences
|
|
126772
128496
|
parameters:
|
|
126773
|
-
- name:
|
|
128497
|
+
- name: Ids
|
|
126774
128498
|
in: query
|
|
126775
|
-
description: Gets or sets the queryable template
|
|
128499
|
+
description: Gets or sets the queryable template ids.
|
|
126776
128500
|
schema:
|
|
126777
|
-
type:
|
|
126778
|
-
|
|
128501
|
+
type: array
|
|
128502
|
+
items:
|
|
128503
|
+
type: string
|
|
128504
|
+
format: uuid
|
|
126779
128505
|
- name: PageNumber
|
|
126780
128506
|
in: query
|
|
126781
128507
|
description: Gets or sets the page number for paged queries.
|
|
@@ -126849,17 +128575,17 @@ paths:
|
|
|
126849
128575
|
schema:
|
|
126850
128576
|
type: array
|
|
126851
128577
|
items:
|
|
126852
|
-
$ref: '#/components/schemas/
|
|
128578
|
+
$ref: '#/components/schemas/Template'
|
|
126853
128579
|
application/json:
|
|
126854
128580
|
schema:
|
|
126855
128581
|
type: array
|
|
126856
128582
|
items:
|
|
126857
|
-
$ref: '#/components/schemas/
|
|
128583
|
+
$ref: '#/components/schemas/Template'
|
|
126858
128584
|
text/json:
|
|
126859
128585
|
schema:
|
|
126860
128586
|
type: array
|
|
126861
128587
|
items:
|
|
126862
|
-
$ref: '#/components/schemas/
|
|
128588
|
+
$ref: '#/components/schemas/Template'
|
|
126863
128589
|
'400':
|
|
126864
128590
|
description: Bad Request
|
|
126865
128591
|
content:
|
|
@@ -126896,19 +128622,21 @@ paths:
|
|
|
126896
128622
|
text/json:
|
|
126897
128623
|
schema:
|
|
126898
128624
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
126899
|
-
/api/
|
|
128625
|
+
/api/templates/id-name:
|
|
126900
128626
|
get:
|
|
126901
128627
|
tags:
|
|
126902
|
-
-
|
|
128628
|
+
- Templates
|
|
126903
128629
|
summary: Gets a list of resources.
|
|
126904
128630
|
operationId: GetListIdName
|
|
126905
128631
|
parameters:
|
|
126906
|
-
- name:
|
|
128632
|
+
- name: Ids
|
|
126907
128633
|
in: query
|
|
126908
|
-
description: Gets or sets the queryable template
|
|
128634
|
+
description: Gets or sets the queryable template ids.
|
|
126909
128635
|
schema:
|
|
126910
|
-
type:
|
|
126911
|
-
|
|
128636
|
+
type: array
|
|
128637
|
+
items:
|
|
128638
|
+
type: string
|
|
128639
|
+
format: uuid
|
|
126912
128640
|
- name: PageNumber
|
|
126913
128641
|
in: query
|
|
126914
128642
|
description: Gets or sets the page number for paged queries.
|
|
@@ -126982,155 +128710,17 @@ paths:
|
|
|
126982
128710
|
schema:
|
|
126983
128711
|
type: array
|
|
126984
128712
|
items:
|
|
126985
|
-
$ref: '#/components/schemas/
|
|
128713
|
+
$ref: '#/components/schemas/Template'
|
|
126986
128714
|
application/json:
|
|
126987
128715
|
schema:
|
|
126988
128716
|
type: array
|
|
126989
128717
|
items:
|
|
126990
|
-
$ref: '#/components/schemas/
|
|
128718
|
+
$ref: '#/components/schemas/Template'
|
|
126991
128719
|
text/json:
|
|
126992
128720
|
schema:
|
|
126993
128721
|
type: array
|
|
126994
128722
|
items:
|
|
126995
|
-
$ref: '#/components/schemas/
|
|
126996
|
-
'400':
|
|
126997
|
-
description: Bad Request
|
|
126998
|
-
content:
|
|
126999
|
-
text/plain:
|
|
127000
|
-
schema:
|
|
127001
|
-
$ref: '#/components/schemas/ReachError'
|
|
127002
|
-
application/json:
|
|
127003
|
-
schema:
|
|
127004
|
-
$ref: '#/components/schemas/ReachError'
|
|
127005
|
-
text/json:
|
|
127006
|
-
schema:
|
|
127007
|
-
$ref: '#/components/schemas/ReachError'
|
|
127008
|
-
'500':
|
|
127009
|
-
description: Internal Server Error
|
|
127010
|
-
content:
|
|
127011
|
-
text/plain:
|
|
127012
|
-
schema:
|
|
127013
|
-
$ref: '#/components/schemas/ReachError'
|
|
127014
|
-
application/json:
|
|
127015
|
-
schema:
|
|
127016
|
-
$ref: '#/components/schemas/ReachError'
|
|
127017
|
-
text/json:
|
|
127018
|
-
schema:
|
|
127019
|
-
$ref: '#/components/schemas/ReachError'
|
|
127020
|
-
'422':
|
|
127021
|
-
description: Unprocessable Content
|
|
127022
|
-
content:
|
|
127023
|
-
text/plain:
|
|
127024
|
-
schema:
|
|
127025
|
-
$ref: '#/components/schemas/ValidationResultModel'
|
|
127026
|
-
application/json:
|
|
127027
|
-
schema:
|
|
127028
|
-
$ref: '#/components/schemas/ValidationResultModel'
|
|
127029
|
-
text/json:
|
|
127030
|
-
schema:
|
|
127031
|
-
$ref: '#/components/schemas/ValidationResultModel'
|
|
127032
|
-
'/api/templates/{id}/duplicate':
|
|
127033
|
-
post:
|
|
127034
|
-
tags:
|
|
127035
|
-
- Templates
|
|
127036
|
-
summary: Duplicates a template.
|
|
127037
|
-
operationId: Duplicate
|
|
127038
|
-
parameters:
|
|
127039
|
-
- name: id
|
|
127040
|
-
in: path
|
|
127041
|
-
description: The template id.
|
|
127042
|
-
required: true
|
|
127043
|
-
schema:
|
|
127044
|
-
type: string
|
|
127045
|
-
format: uuid
|
|
127046
|
-
requestBody:
|
|
127047
|
-
description: The post body.
|
|
127048
|
-
content:
|
|
127049
|
-
application/json:
|
|
127050
|
-
schema:
|
|
127051
|
-
$ref: '#/components/schemas/TemplateDuplicatePost'
|
|
127052
|
-
text/json:
|
|
127053
|
-
schema:
|
|
127054
|
-
$ref: '#/components/schemas/TemplateDuplicatePost'
|
|
127055
|
-
application/*+json:
|
|
127056
|
-
schema:
|
|
127057
|
-
$ref: '#/components/schemas/TemplateDuplicatePost'
|
|
127058
|
-
responses:
|
|
127059
|
-
'200':
|
|
127060
|
-
description: OK
|
|
127061
|
-
content:
|
|
127062
|
-
text/plain:
|
|
127063
|
-
schema:
|
|
127064
|
-
$ref: '#/components/schemas/Template'
|
|
127065
|
-
application/json:
|
|
127066
|
-
schema:
|
|
127067
|
-
$ref: '#/components/schemas/Template'
|
|
127068
|
-
text/json:
|
|
127069
|
-
schema:
|
|
127070
|
-
$ref: '#/components/schemas/Template'
|
|
127071
|
-
'400':
|
|
127072
|
-
description: Bad Request
|
|
127073
|
-
content:
|
|
127074
|
-
text/plain:
|
|
127075
|
-
schema:
|
|
127076
|
-
$ref: '#/components/schemas/ReachError'
|
|
127077
|
-
application/json:
|
|
127078
|
-
schema:
|
|
127079
|
-
$ref: '#/components/schemas/ReachError'
|
|
127080
|
-
text/json:
|
|
127081
|
-
schema:
|
|
127082
|
-
$ref: '#/components/schemas/ReachError'
|
|
127083
|
-
'500':
|
|
127084
|
-
description: Internal Server Error
|
|
127085
|
-
content:
|
|
127086
|
-
text/plain:
|
|
127087
|
-
schema:
|
|
127088
|
-
$ref: '#/components/schemas/ReachError'
|
|
127089
|
-
application/json:
|
|
127090
|
-
schema:
|
|
127091
|
-
$ref: '#/components/schemas/ReachError'
|
|
127092
|
-
text/json:
|
|
127093
|
-
schema:
|
|
127094
|
-
$ref: '#/components/schemas/ReachError'
|
|
127095
|
-
'422':
|
|
127096
|
-
description: Unprocessable Content
|
|
127097
|
-
content:
|
|
127098
|
-
text/plain:
|
|
127099
|
-
schema:
|
|
127100
|
-
$ref: '#/components/schemas/ValidationResultModel'
|
|
127101
|
-
application/json:
|
|
127102
|
-
schema:
|
|
127103
|
-
$ref: '#/components/schemas/ValidationResultModel'
|
|
127104
|
-
text/json:
|
|
127105
|
-
schema:
|
|
127106
|
-
$ref: '#/components/schemas/ValidationResultModel'
|
|
127107
|
-
'/api/templates/{id}/use':
|
|
127108
|
-
post:
|
|
127109
|
-
tags:
|
|
127110
|
-
- Templates
|
|
127111
|
-
summary: Creates an activity from a template.
|
|
127112
|
-
operationId: Use
|
|
127113
|
-
parameters:
|
|
127114
|
-
- name: id
|
|
127115
|
-
in: path
|
|
127116
|
-
description: The template id.
|
|
127117
|
-
required: true
|
|
127118
|
-
schema:
|
|
127119
|
-
type: string
|
|
127120
|
-
format: uuid
|
|
127121
|
-
responses:
|
|
127122
|
-
'200':
|
|
127123
|
-
description: OK
|
|
127124
|
-
content:
|
|
127125
|
-
text/plain:
|
|
127126
|
-
schema:
|
|
127127
|
-
$ref: '#/components/schemas/TemplateUseResponse'
|
|
127128
|
-
application/json:
|
|
127129
|
-
schema:
|
|
127130
|
-
$ref: '#/components/schemas/TemplateUseResponse'
|
|
127131
|
-
text/json:
|
|
127132
|
-
schema:
|
|
127133
|
-
$ref: '#/components/schemas/TemplateUseResponse'
|
|
128723
|
+
$ref: '#/components/schemas/Template'
|
|
127134
128724
|
'400':
|
|
127135
128725
|
description: Bad Request
|
|
127136
128726
|
content:
|
|
@@ -127167,77 +128757,10 @@ paths:
|
|
|
127167
128757
|
text/json:
|
|
127168
128758
|
schema:
|
|
127169
128759
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
127170
|
-
/api/
|
|
128760
|
+
/api/tenant-faqs/v2-temporary-route:
|
|
127171
128761
|
post:
|
|
127172
128762
|
tags:
|
|
127173
|
-
-
|
|
127174
|
-
summary: Creates a template.
|
|
127175
|
-
operationId: Create
|
|
127176
|
-
requestBody:
|
|
127177
|
-
description: The template to be created.
|
|
127178
|
-
content:
|
|
127179
|
-
application/json:
|
|
127180
|
-
schema:
|
|
127181
|
-
$ref: '#/components/schemas/TemplateCreate'
|
|
127182
|
-
text/json:
|
|
127183
|
-
schema:
|
|
127184
|
-
$ref: '#/components/schemas/TemplateCreate'
|
|
127185
|
-
application/*+json:
|
|
127186
|
-
schema:
|
|
127187
|
-
$ref: '#/components/schemas/TemplateCreate'
|
|
127188
|
-
responses:
|
|
127189
|
-
'200':
|
|
127190
|
-
description: OK
|
|
127191
|
-
content:
|
|
127192
|
-
text/plain:
|
|
127193
|
-
schema:
|
|
127194
|
-
$ref: '#/components/schemas/Template'
|
|
127195
|
-
application/json:
|
|
127196
|
-
schema:
|
|
127197
|
-
$ref: '#/components/schemas/Template'
|
|
127198
|
-
text/json:
|
|
127199
|
-
schema:
|
|
127200
|
-
$ref: '#/components/schemas/Template'
|
|
127201
|
-
'400':
|
|
127202
|
-
description: Bad Request
|
|
127203
|
-
content:
|
|
127204
|
-
text/plain:
|
|
127205
|
-
schema:
|
|
127206
|
-
$ref: '#/components/schemas/ReachError'
|
|
127207
|
-
application/json:
|
|
127208
|
-
schema:
|
|
127209
|
-
$ref: '#/components/schemas/ReachError'
|
|
127210
|
-
text/json:
|
|
127211
|
-
schema:
|
|
127212
|
-
$ref: '#/components/schemas/ReachError'
|
|
127213
|
-
'500':
|
|
127214
|
-
description: Internal Server Error
|
|
127215
|
-
content:
|
|
127216
|
-
text/plain:
|
|
127217
|
-
schema:
|
|
127218
|
-
$ref: '#/components/schemas/ReachError'
|
|
127219
|
-
application/json:
|
|
127220
|
-
schema:
|
|
127221
|
-
$ref: '#/components/schemas/ReachError'
|
|
127222
|
-
text/json:
|
|
127223
|
-
schema:
|
|
127224
|
-
$ref: '#/components/schemas/ReachError'
|
|
127225
|
-
'422':
|
|
127226
|
-
description: Unprocessable Content
|
|
127227
|
-
content:
|
|
127228
|
-
text/plain:
|
|
127229
|
-
schema:
|
|
127230
|
-
$ref: '#/components/schemas/ValidationResultModel'
|
|
127231
|
-
application/json:
|
|
127232
|
-
schema:
|
|
127233
|
-
$ref: '#/components/schemas/ValidationResultModel'
|
|
127234
|
-
text/json:
|
|
127235
|
-
schema:
|
|
127236
|
-
$ref: '#/components/schemas/ValidationResultModel'
|
|
127237
|
-
/api/templates/v2-temporary-route:
|
|
127238
|
-
post:
|
|
127239
|
-
tags:
|
|
127240
|
-
- Templates
|
|
128763
|
+
- TenantFaqs
|
|
127241
128764
|
summary: Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
127242
128765
|
operationId: Post
|
|
127243
128766
|
requestBody:
|
|
@@ -127245,26 +128768,26 @@ paths:
|
|
|
127245
128768
|
content:
|
|
127246
128769
|
application/json:
|
|
127247
128770
|
schema:
|
|
127248
|
-
$ref: '#/components/schemas/
|
|
128771
|
+
$ref: '#/components/schemas/TenantFaqPost'
|
|
127249
128772
|
text/json:
|
|
127250
128773
|
schema:
|
|
127251
|
-
$ref: '#/components/schemas/
|
|
128774
|
+
$ref: '#/components/schemas/TenantFaqPost'
|
|
127252
128775
|
application/*+json:
|
|
127253
128776
|
schema:
|
|
127254
|
-
$ref: '#/components/schemas/
|
|
128777
|
+
$ref: '#/components/schemas/TenantFaqPost'
|
|
127255
128778
|
responses:
|
|
127256
128779
|
'200':
|
|
127257
128780
|
description: OK
|
|
127258
128781
|
content:
|
|
127259
128782
|
text/plain:
|
|
127260
128783
|
schema:
|
|
127261
|
-
$ref: '#/components/schemas/
|
|
128784
|
+
$ref: '#/components/schemas/TenantFaq'
|
|
127262
128785
|
application/json:
|
|
127263
128786
|
schema:
|
|
127264
|
-
$ref: '#/components/schemas/
|
|
128787
|
+
$ref: '#/components/schemas/TenantFaq'
|
|
127265
128788
|
text/json:
|
|
127266
128789
|
schema:
|
|
127267
|
-
$ref: '#/components/schemas/
|
|
128790
|
+
$ref: '#/components/schemas/TenantFaq'
|
|
127268
128791
|
'400':
|
|
127269
128792
|
description: Bad Request
|
|
127270
128793
|
content:
|
|
@@ -127303,7 +128826,7 @@ paths:
|
|
|
127303
128826
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
127304
128827
|
patch:
|
|
127305
128828
|
tags:
|
|
127306
|
-
-
|
|
128829
|
+
- TenantFaqs
|
|
127307
128830
|
summary: Patches the resource.
|
|
127308
128831
|
operationId: Patch
|
|
127309
128832
|
requestBody:
|
|
@@ -127311,26 +128834,26 @@ paths:
|
|
|
127311
128834
|
content:
|
|
127312
128835
|
application/json:
|
|
127313
128836
|
schema:
|
|
127314
|
-
$ref: '#/components/schemas/
|
|
128837
|
+
$ref: '#/components/schemas/TenantFaqPatch'
|
|
127315
128838
|
text/json:
|
|
127316
128839
|
schema:
|
|
127317
|
-
$ref: '#/components/schemas/
|
|
128840
|
+
$ref: '#/components/schemas/TenantFaqPatch'
|
|
127318
128841
|
application/*+json:
|
|
127319
128842
|
schema:
|
|
127320
|
-
$ref: '#/components/schemas/
|
|
128843
|
+
$ref: '#/components/schemas/TenantFaqPatch'
|
|
127321
128844
|
responses:
|
|
127322
128845
|
'200':
|
|
127323
128846
|
description: OK
|
|
127324
128847
|
content:
|
|
127325
128848
|
text/plain:
|
|
127326
128849
|
schema:
|
|
127327
|
-
$ref: '#/components/schemas/
|
|
128850
|
+
$ref: '#/components/schemas/TenantFaq'
|
|
127328
128851
|
application/json:
|
|
127329
128852
|
schema:
|
|
127330
|
-
$ref: '#/components/schemas/
|
|
128853
|
+
$ref: '#/components/schemas/TenantFaq'
|
|
127331
128854
|
text/json:
|
|
127332
128855
|
schema:
|
|
127333
|
-
$ref: '#/components/schemas/
|
|
128856
|
+
$ref: '#/components/schemas/TenantFaq'
|
|
127334
128857
|
'400':
|
|
127335
128858
|
description: Bad Request
|
|
127336
128859
|
content:
|
|
@@ -127367,10 +128890,10 @@ paths:
|
|
|
127367
128890
|
text/json:
|
|
127368
128891
|
schema:
|
|
127369
128892
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
127370
|
-
/api/
|
|
128893
|
+
/api/tenant-faqs/v2-temporary-route/list:
|
|
127371
128894
|
post:
|
|
127372
128895
|
tags:
|
|
127373
|
-
-
|
|
128896
|
+
- TenantFaqs
|
|
127374
128897
|
summary: Inserts a list of resources.
|
|
127375
128898
|
operationId: PostList
|
|
127376
128899
|
requestBody:
|
|
@@ -127380,17 +128903,17 @@ paths:
|
|
|
127380
128903
|
schema:
|
|
127381
128904
|
type: array
|
|
127382
128905
|
items:
|
|
127383
|
-
$ref: '#/components/schemas/
|
|
128906
|
+
$ref: '#/components/schemas/TenantFaqPost'
|
|
127384
128907
|
text/json:
|
|
127385
128908
|
schema:
|
|
127386
128909
|
type: array
|
|
127387
128910
|
items:
|
|
127388
|
-
$ref: '#/components/schemas/
|
|
128911
|
+
$ref: '#/components/schemas/TenantFaqPost'
|
|
127389
128912
|
application/*+json:
|
|
127390
128913
|
schema:
|
|
127391
128914
|
type: array
|
|
127392
128915
|
items:
|
|
127393
|
-
$ref: '#/components/schemas/
|
|
128916
|
+
$ref: '#/components/schemas/TenantFaqPost'
|
|
127394
128917
|
responses:
|
|
127395
128918
|
'200':
|
|
127396
128919
|
description: OK
|
|
@@ -127399,17 +128922,17 @@ paths:
|
|
|
127399
128922
|
schema:
|
|
127400
128923
|
type: array
|
|
127401
128924
|
items:
|
|
127402
|
-
$ref: '#/components/schemas/
|
|
128925
|
+
$ref: '#/components/schemas/TenantFaq'
|
|
127403
128926
|
application/json:
|
|
127404
128927
|
schema:
|
|
127405
128928
|
type: array
|
|
127406
128929
|
items:
|
|
127407
|
-
$ref: '#/components/schemas/
|
|
128930
|
+
$ref: '#/components/schemas/TenantFaq'
|
|
127408
128931
|
text/json:
|
|
127409
128932
|
schema:
|
|
127410
128933
|
type: array
|
|
127411
128934
|
items:
|
|
127412
|
-
$ref: '#/components/schemas/
|
|
128935
|
+
$ref: '#/components/schemas/TenantFaq'
|
|
127413
128936
|
'400':
|
|
127414
128937
|
description: Bad Request
|
|
127415
128938
|
content:
|
|
@@ -127446,10 +128969,10 @@ paths:
|
|
|
127446
128969
|
text/json:
|
|
127447
128970
|
schema:
|
|
127448
128971
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
127449
|
-
/api/
|
|
128972
|
+
/api/tenant-faqs/v2-temporary-route/with-references:
|
|
127450
128973
|
patch:
|
|
127451
128974
|
tags:
|
|
127452
|
-
-
|
|
128975
|
+
- TenantFaqs
|
|
127453
128976
|
summary: Patches the resource.
|
|
127454
128977
|
operationId: PatchWithReferences
|
|
127455
128978
|
requestBody:
|
|
@@ -127457,26 +128980,26 @@ paths:
|
|
|
127457
128980
|
content:
|
|
127458
128981
|
application/json:
|
|
127459
128982
|
schema:
|
|
127460
|
-
$ref: '#/components/schemas/
|
|
128983
|
+
$ref: '#/components/schemas/TenantFaqPatch'
|
|
127461
128984
|
text/json:
|
|
127462
128985
|
schema:
|
|
127463
|
-
$ref: '#/components/schemas/
|
|
128986
|
+
$ref: '#/components/schemas/TenantFaqPatch'
|
|
127464
128987
|
application/*+json:
|
|
127465
128988
|
schema:
|
|
127466
|
-
$ref: '#/components/schemas/
|
|
128989
|
+
$ref: '#/components/schemas/TenantFaqPatch'
|
|
127467
128990
|
responses:
|
|
127468
128991
|
'200':
|
|
127469
128992
|
description: OK
|
|
127470
128993
|
content:
|
|
127471
128994
|
text/plain:
|
|
127472
128995
|
schema:
|
|
127473
|
-
$ref: '#/components/schemas/
|
|
128996
|
+
$ref: '#/components/schemas/TenantFaq'
|
|
127474
128997
|
application/json:
|
|
127475
128998
|
schema:
|
|
127476
|
-
$ref: '#/components/schemas/
|
|
128999
|
+
$ref: '#/components/schemas/TenantFaq'
|
|
127477
129000
|
text/json:
|
|
127478
129001
|
schema:
|
|
127479
|
-
$ref: '#/components/schemas/
|
|
129002
|
+
$ref: '#/components/schemas/TenantFaq'
|
|
127480
129003
|
'400':
|
|
127481
129004
|
description: Bad Request
|
|
127482
129005
|
content:
|
|
@@ -127513,10 +129036,10 @@ paths:
|
|
|
127513
129036
|
text/json:
|
|
127514
129037
|
schema:
|
|
127515
129038
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
127516
|
-
/api/
|
|
129039
|
+
/api/tenant-faqs:
|
|
127517
129040
|
delete:
|
|
127518
129041
|
tags:
|
|
127519
|
-
-
|
|
129042
|
+
- TenantFaqs
|
|
127520
129043
|
summary: Deletes the resource.
|
|
127521
129044
|
operationId: DeleteByObject
|
|
127522
129045
|
requestBody:
|
|
@@ -127524,13 +129047,13 @@ paths:
|
|
|
127524
129047
|
content:
|
|
127525
129048
|
application/json:
|
|
127526
129049
|
schema:
|
|
127527
|
-
$ref: '#/components/schemas/
|
|
129050
|
+
$ref: '#/components/schemas/TenantFaq'
|
|
127528
129051
|
text/json:
|
|
127529
129052
|
schema:
|
|
127530
|
-
$ref: '#/components/schemas/
|
|
129053
|
+
$ref: '#/components/schemas/TenantFaq'
|
|
127531
129054
|
application/*+json:
|
|
127532
129055
|
schema:
|
|
127533
|
-
$ref: '#/components/schemas/
|
|
129056
|
+
$ref: '#/components/schemas/TenantFaq'
|
|
127534
129057
|
responses:
|
|
127535
129058
|
'200':
|
|
127536
129059
|
description: OK
|
|
@@ -127572,18 +129095,28 @@ paths:
|
|
|
127572
129095
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
127573
129096
|
get:
|
|
127574
129097
|
tags:
|
|
127575
|
-
-
|
|
129098
|
+
- TenantFaqs
|
|
127576
129099
|
summary: Gets a list of resources.
|
|
127577
129100
|
operationId: GetPage
|
|
127578
129101
|
parameters:
|
|
127579
129102
|
- name: Ids
|
|
127580
129103
|
in: query
|
|
127581
|
-
description: Gets or sets the queryable
|
|
129104
|
+
description: Gets or sets the queryable tenant FAQ ids.
|
|
127582
129105
|
schema:
|
|
127583
129106
|
type: array
|
|
127584
129107
|
items:
|
|
127585
129108
|
type: string
|
|
127586
129109
|
format: uuid
|
|
129110
|
+
- name: ShowOnStorefront
|
|
129111
|
+
in: query
|
|
129112
|
+
description: Gets or sets the queryable ShowOnStorefront value.
|
|
129113
|
+
schema:
|
|
129114
|
+
type: boolean
|
|
129115
|
+
- name: ShowOnCustomerPortal
|
|
129116
|
+
in: query
|
|
129117
|
+
description: Gets or sets the queryable ShowOnCustomerPortal value.
|
|
129118
|
+
schema:
|
|
129119
|
+
type: boolean
|
|
127587
129120
|
- name: PageNumber
|
|
127588
129121
|
in: query
|
|
127589
129122
|
description: Gets or sets the page number for paged queries.
|
|
@@ -127655,13 +129188,13 @@ paths:
|
|
|
127655
129188
|
content:
|
|
127656
129189
|
text/plain:
|
|
127657
129190
|
schema:
|
|
127658
|
-
$ref: '#/components/schemas/
|
|
129191
|
+
$ref: '#/components/schemas/TenantFaqPage'
|
|
127659
129192
|
application/json:
|
|
127660
129193
|
schema:
|
|
127661
|
-
$ref: '#/components/schemas/
|
|
129194
|
+
$ref: '#/components/schemas/TenantFaqPage'
|
|
127662
129195
|
text/json:
|
|
127663
129196
|
schema:
|
|
127664
|
-
$ref: '#/components/schemas/
|
|
129197
|
+
$ref: '#/components/schemas/TenantFaqPage'
|
|
127665
129198
|
'400':
|
|
127666
129199
|
description: Bad Request
|
|
127667
129200
|
content:
|
|
@@ -127698,10 +129231,10 @@ paths:
|
|
|
127698
129231
|
text/json:
|
|
127699
129232
|
schema:
|
|
127700
129233
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
127701
|
-
'/api/
|
|
129234
|
+
'/api/tenant-faqs/{id}':
|
|
127702
129235
|
delete:
|
|
127703
129236
|
tags:
|
|
127704
|
-
-
|
|
129237
|
+
- TenantFaqs
|
|
127705
129238
|
summary: Deletes the resource.
|
|
127706
129239
|
operationId: DeleteById
|
|
127707
129240
|
parameters:
|
|
@@ -127753,7 +129286,7 @@ paths:
|
|
|
127753
129286
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
127754
129287
|
get:
|
|
127755
129288
|
tags:
|
|
127756
|
-
-
|
|
129289
|
+
- TenantFaqs
|
|
127757
129290
|
summary: Gets the resource by its Id.
|
|
127758
129291
|
operationId: GetObject
|
|
127759
129292
|
parameters:
|
|
@@ -127770,13 +129303,13 @@ paths:
|
|
|
127770
129303
|
content:
|
|
127771
129304
|
text/plain:
|
|
127772
129305
|
schema:
|
|
127773
|
-
$ref: '#/components/schemas/
|
|
129306
|
+
$ref: '#/components/schemas/TenantFaq'
|
|
127774
129307
|
application/json:
|
|
127775
129308
|
schema:
|
|
127776
|
-
$ref: '#/components/schemas/
|
|
129309
|
+
$ref: '#/components/schemas/TenantFaq'
|
|
127777
129310
|
text/json:
|
|
127778
129311
|
schema:
|
|
127779
|
-
$ref: '#/components/schemas/
|
|
129312
|
+
$ref: '#/components/schemas/TenantFaq'
|
|
127780
129313
|
'400':
|
|
127781
129314
|
description: Bad Request
|
|
127782
129315
|
content:
|
|
@@ -127813,10 +129346,10 @@ paths:
|
|
|
127813
129346
|
text/json:
|
|
127814
129347
|
schema:
|
|
127815
129348
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
127816
|
-
'/api/
|
|
129349
|
+
'/api/tenant-faqs/{id}/deletable':
|
|
127817
129350
|
get:
|
|
127818
129351
|
tags:
|
|
127819
|
-
-
|
|
129352
|
+
- TenantFaqs
|
|
127820
129353
|
summary: Returns a value indicating whether the resource is deletable.
|
|
127821
129354
|
operationId: CanDelete
|
|
127822
129355
|
parameters:
|
|
@@ -127876,21 +129409,31 @@ paths:
|
|
|
127876
129409
|
text/json:
|
|
127877
129410
|
schema:
|
|
127878
129411
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
127879
|
-
/api/
|
|
129412
|
+
/api/tenant-faqs/exists:
|
|
127880
129413
|
get:
|
|
127881
129414
|
tags:
|
|
127882
|
-
-
|
|
129415
|
+
- TenantFaqs
|
|
127883
129416
|
summary: Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
127884
129417
|
operationId: Exists
|
|
127885
129418
|
parameters:
|
|
127886
129419
|
- name: Ids
|
|
127887
129420
|
in: query
|
|
127888
|
-
description: Gets or sets the queryable
|
|
129421
|
+
description: Gets or sets the queryable tenant FAQ ids.
|
|
127889
129422
|
schema:
|
|
127890
129423
|
type: array
|
|
127891
129424
|
items:
|
|
127892
129425
|
type: string
|
|
127893
129426
|
format: uuid
|
|
129427
|
+
- name: ShowOnStorefront
|
|
129428
|
+
in: query
|
|
129429
|
+
description: Gets or sets the queryable ShowOnStorefront value.
|
|
129430
|
+
schema:
|
|
129431
|
+
type: boolean
|
|
129432
|
+
- name: ShowOnCustomerPortal
|
|
129433
|
+
in: query
|
|
129434
|
+
description: Gets or sets the queryable ShowOnCustomerPortal value.
|
|
129435
|
+
schema:
|
|
129436
|
+
type: boolean
|
|
127894
129437
|
- name: PageNumber
|
|
127895
129438
|
in: query
|
|
127896
129439
|
description: Gets or sets the page number for paged queries.
|
|
@@ -128005,21 +129548,31 @@ paths:
|
|
|
128005
129548
|
text/json:
|
|
128006
129549
|
schema:
|
|
128007
129550
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
128008
|
-
/api/
|
|
129551
|
+
/api/tenant-faqs/count:
|
|
128009
129552
|
get:
|
|
128010
129553
|
tags:
|
|
128011
|
-
-
|
|
129554
|
+
- TenantFaqs
|
|
128012
129555
|
summary: Returns the number of results in the database given the provided search params.
|
|
128013
129556
|
operationId: Count
|
|
128014
129557
|
parameters:
|
|
128015
129558
|
- name: Ids
|
|
128016
129559
|
in: query
|
|
128017
|
-
description: Gets or sets the queryable
|
|
129560
|
+
description: Gets or sets the queryable tenant FAQ ids.
|
|
128018
129561
|
schema:
|
|
128019
129562
|
type: array
|
|
128020
129563
|
items:
|
|
128021
129564
|
type: string
|
|
128022
129565
|
format: uuid
|
|
129566
|
+
- name: ShowOnStorefront
|
|
129567
|
+
in: query
|
|
129568
|
+
description: Gets or sets the queryable ShowOnStorefront value.
|
|
129569
|
+
schema:
|
|
129570
|
+
type: boolean
|
|
129571
|
+
- name: ShowOnCustomerPortal
|
|
129572
|
+
in: query
|
|
129573
|
+
description: Gets or sets the queryable ShowOnCustomerPortal value.
|
|
129574
|
+
schema:
|
|
129575
|
+
type: boolean
|
|
128023
129576
|
- name: PageNumber
|
|
128024
129577
|
in: query
|
|
128025
129578
|
description: Gets or sets the page number for paged queries.
|
|
@@ -128137,156 +129690,176 @@ paths:
|
|
|
128137
129690
|
text/json:
|
|
128138
129691
|
schema:
|
|
128139
129692
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
128140
|
-
/api/
|
|
129693
|
+
/api/tenant-faqs/without-references:
|
|
129694
|
+
get:
|
|
129695
|
+
tags:
|
|
129696
|
+
- TenantFaqs
|
|
129697
|
+
summary: Gets a list of resources unpaged and without references.
|
|
129698
|
+
operationId: GetListWithoutReferences
|
|
129699
|
+
parameters:
|
|
129700
|
+
- name: Ids
|
|
129701
|
+
in: query
|
|
129702
|
+
description: Gets or sets the queryable tenant FAQ ids.
|
|
129703
|
+
schema:
|
|
129704
|
+
type: array
|
|
129705
|
+
items:
|
|
129706
|
+
type: string
|
|
129707
|
+
format: uuid
|
|
129708
|
+
- name: ShowOnStorefront
|
|
129709
|
+
in: query
|
|
129710
|
+
description: Gets or sets the queryable ShowOnStorefront value.
|
|
129711
|
+
schema:
|
|
129712
|
+
type: boolean
|
|
129713
|
+
- name: ShowOnCustomerPortal
|
|
129714
|
+
in: query
|
|
129715
|
+
description: Gets or sets the queryable ShowOnCustomerPortal value.
|
|
129716
|
+
schema:
|
|
129717
|
+
type: boolean
|
|
129718
|
+
- name: PageNumber
|
|
129719
|
+
in: query
|
|
129720
|
+
description: Gets or sets the page number for paged queries.
|
|
129721
|
+
schema:
|
|
129722
|
+
type: integer
|
|
129723
|
+
format: int32
|
|
129724
|
+
- name: Take
|
|
129725
|
+
in: query
|
|
129726
|
+
description: 'Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.'
|
|
129727
|
+
schema:
|
|
129728
|
+
type: integer
|
|
129729
|
+
format: int32
|
|
129730
|
+
- name: Skip
|
|
129731
|
+
in: query
|
|
129732
|
+
description: 'Gets or sets how much items to skip from begining of db table, when this is set page is always 1.'
|
|
129733
|
+
schema:
|
|
129734
|
+
type: integer
|
|
129735
|
+
format: int32
|
|
129736
|
+
- name: LimitListRequests
|
|
129737
|
+
in: query
|
|
129738
|
+
description: Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
129739
|
+
schema:
|
|
129740
|
+
type: boolean
|
|
129741
|
+
- name: TenantId
|
|
129742
|
+
in: query
|
|
129743
|
+
description: Gets or sets the Tenant Id.
|
|
129744
|
+
schema:
|
|
129745
|
+
type: string
|
|
129746
|
+
format: uuid
|
|
129747
|
+
- name: ModifiedById
|
|
129748
|
+
in: query
|
|
129749
|
+
description: Gets or sets the Modifed By Id.
|
|
129750
|
+
schema:
|
|
129751
|
+
type: string
|
|
129752
|
+
format: uuid
|
|
129753
|
+
- name: ModifiedByIds
|
|
129754
|
+
in: query
|
|
129755
|
+
description: Gets or sets the Modifed By Ids.
|
|
129756
|
+
schema:
|
|
129757
|
+
type: array
|
|
129758
|
+
items:
|
|
129759
|
+
type: string
|
|
129760
|
+
format: uuid
|
|
129761
|
+
- name: DateCreatedGTE
|
|
129762
|
+
in: query
|
|
129763
|
+
description: Gets or sets the Date Created greater than equal to.
|
|
129764
|
+
schema:
|
|
129765
|
+
type: string
|
|
129766
|
+
format: date-time
|
|
129767
|
+
- name: DateCreatedLTE
|
|
129768
|
+
in: query
|
|
129769
|
+
description: Gets or sets the Date Created less than equal to.
|
|
129770
|
+
schema:
|
|
129771
|
+
type: string
|
|
129772
|
+
format: date-time
|
|
129773
|
+
- name: IsLive
|
|
129774
|
+
in: query
|
|
129775
|
+
description: Gets or sets the queryable only is live status.
|
|
129776
|
+
schema:
|
|
129777
|
+
type: boolean
|
|
129778
|
+
- name: SortOrderDirection
|
|
129779
|
+
in: query
|
|
129780
|
+
description: Gets or sets the sort order direction.
|
|
129781
|
+
schema:
|
|
129782
|
+
$ref: '#/components/schemas/SearchSortOrderDirection'
|
|
129783
|
+
responses:
|
|
129784
|
+
'200':
|
|
129785
|
+
description: OK
|
|
129786
|
+
content:
|
|
129787
|
+
text/plain:
|
|
129788
|
+
schema:
|
|
129789
|
+
type: array
|
|
129790
|
+
items:
|
|
129791
|
+
$ref: '#/components/schemas/TenantFaq'
|
|
129792
|
+
application/json:
|
|
129793
|
+
schema:
|
|
129794
|
+
type: array
|
|
129795
|
+
items:
|
|
129796
|
+
$ref: '#/components/schemas/TenantFaq'
|
|
129797
|
+
text/json:
|
|
129798
|
+
schema:
|
|
129799
|
+
type: array
|
|
129800
|
+
items:
|
|
129801
|
+
$ref: '#/components/schemas/TenantFaq'
|
|
129802
|
+
'400':
|
|
129803
|
+
description: Bad Request
|
|
129804
|
+
content:
|
|
129805
|
+
text/plain:
|
|
129806
|
+
schema:
|
|
129807
|
+
$ref: '#/components/schemas/ReachError'
|
|
129808
|
+
application/json:
|
|
129809
|
+
schema:
|
|
129810
|
+
$ref: '#/components/schemas/ReachError'
|
|
129811
|
+
text/json:
|
|
129812
|
+
schema:
|
|
129813
|
+
$ref: '#/components/schemas/ReachError'
|
|
129814
|
+
'500':
|
|
129815
|
+
description: Internal Server Error
|
|
129816
|
+
content:
|
|
129817
|
+
text/plain:
|
|
129818
|
+
schema:
|
|
129819
|
+
$ref: '#/components/schemas/ReachError'
|
|
129820
|
+
application/json:
|
|
129821
|
+
schema:
|
|
129822
|
+
$ref: '#/components/schemas/ReachError'
|
|
129823
|
+
text/json:
|
|
129824
|
+
schema:
|
|
129825
|
+
$ref: '#/components/schemas/ReachError'
|
|
129826
|
+
'422':
|
|
129827
|
+
description: Unprocessable Content
|
|
129828
|
+
content:
|
|
129829
|
+
text/plain:
|
|
129830
|
+
schema:
|
|
129831
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
129832
|
+
application/json:
|
|
129833
|
+
schema:
|
|
129834
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
129835
|
+
text/json:
|
|
129836
|
+
schema:
|
|
129837
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
129838
|
+
/api/tenant-faqs/id-name:
|
|
128141
129839
|
get:
|
|
128142
129840
|
tags:
|
|
128143
|
-
-
|
|
128144
|
-
summary: Gets a list of resources
|
|
128145
|
-
operationId:
|
|
129841
|
+
- TenantFaqs
|
|
129842
|
+
summary: Gets a list of resources.
|
|
129843
|
+
operationId: GetListIdName
|
|
128146
129844
|
parameters:
|
|
128147
129845
|
- name: Ids
|
|
128148
129846
|
in: query
|
|
128149
|
-
description: Gets or sets the queryable
|
|
129847
|
+
description: Gets or sets the queryable tenant FAQ ids.
|
|
128150
129848
|
schema:
|
|
128151
129849
|
type: array
|
|
128152
129850
|
items:
|
|
128153
129851
|
type: string
|
|
128154
129852
|
format: uuid
|
|
128155
|
-
- name:
|
|
129853
|
+
- name: ShowOnStorefront
|
|
128156
129854
|
in: query
|
|
128157
|
-
description: Gets or sets the
|
|
128158
|
-
schema:
|
|
128159
|
-
type: integer
|
|
128160
|
-
format: int32
|
|
128161
|
-
- name: Take
|
|
128162
|
-
in: query
|
|
128163
|
-
description: 'Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.'
|
|
128164
|
-
schema:
|
|
128165
|
-
type: integer
|
|
128166
|
-
format: int32
|
|
128167
|
-
- name: Skip
|
|
128168
|
-
in: query
|
|
128169
|
-
description: 'Gets or sets how much items to skip from begining of db table, when this is set page is always 1.'
|
|
128170
|
-
schema:
|
|
128171
|
-
type: integer
|
|
128172
|
-
format: int32
|
|
128173
|
-
- name: LimitListRequests
|
|
128174
|
-
in: query
|
|
128175
|
-
description: Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
129855
|
+
description: Gets or sets the queryable ShowOnStorefront value.
|
|
128176
129856
|
schema:
|
|
128177
129857
|
type: boolean
|
|
128178
|
-
- name:
|
|
128179
|
-
in: query
|
|
128180
|
-
description: Gets or sets the Tenant Id.
|
|
128181
|
-
schema:
|
|
128182
|
-
type: string
|
|
128183
|
-
format: uuid
|
|
128184
|
-
- name: ModifiedById
|
|
129858
|
+
- name: ShowOnCustomerPortal
|
|
128185
129859
|
in: query
|
|
128186
|
-
description: Gets or sets the
|
|
128187
|
-
schema:
|
|
128188
|
-
type: string
|
|
128189
|
-
format: uuid
|
|
128190
|
-
- name: ModifiedByIds
|
|
128191
|
-
in: query
|
|
128192
|
-
description: Gets or sets the Modifed By Ids.
|
|
128193
|
-
schema:
|
|
128194
|
-
type: array
|
|
128195
|
-
items:
|
|
128196
|
-
type: string
|
|
128197
|
-
format: uuid
|
|
128198
|
-
- name: DateCreatedGTE
|
|
128199
|
-
in: query
|
|
128200
|
-
description: Gets or sets the Date Created greater than equal to.
|
|
128201
|
-
schema:
|
|
128202
|
-
type: string
|
|
128203
|
-
format: date-time
|
|
128204
|
-
- name: DateCreatedLTE
|
|
128205
|
-
in: query
|
|
128206
|
-
description: Gets or sets the Date Created less than equal to.
|
|
128207
|
-
schema:
|
|
128208
|
-
type: string
|
|
128209
|
-
format: date-time
|
|
128210
|
-
- name: IsLive
|
|
128211
|
-
in: query
|
|
128212
|
-
description: Gets or sets the queryable only is live status.
|
|
129860
|
+
description: Gets or sets the queryable ShowOnCustomerPortal value.
|
|
128213
129861
|
schema:
|
|
128214
129862
|
type: boolean
|
|
128215
|
-
- name: SortOrderDirection
|
|
128216
|
-
in: query
|
|
128217
|
-
description: Gets or sets the sort order direction.
|
|
128218
|
-
schema:
|
|
128219
|
-
$ref: '#/components/schemas/SearchSortOrderDirection'
|
|
128220
|
-
responses:
|
|
128221
|
-
'200':
|
|
128222
|
-
description: OK
|
|
128223
|
-
content:
|
|
128224
|
-
text/plain:
|
|
128225
|
-
schema:
|
|
128226
|
-
type: array
|
|
128227
|
-
items:
|
|
128228
|
-
$ref: '#/components/schemas/Template'
|
|
128229
|
-
application/json:
|
|
128230
|
-
schema:
|
|
128231
|
-
type: array
|
|
128232
|
-
items:
|
|
128233
|
-
$ref: '#/components/schemas/Template'
|
|
128234
|
-
text/json:
|
|
128235
|
-
schema:
|
|
128236
|
-
type: array
|
|
128237
|
-
items:
|
|
128238
|
-
$ref: '#/components/schemas/Template'
|
|
128239
|
-
'400':
|
|
128240
|
-
description: Bad Request
|
|
128241
|
-
content:
|
|
128242
|
-
text/plain:
|
|
128243
|
-
schema:
|
|
128244
|
-
$ref: '#/components/schemas/ReachError'
|
|
128245
|
-
application/json:
|
|
128246
|
-
schema:
|
|
128247
|
-
$ref: '#/components/schemas/ReachError'
|
|
128248
|
-
text/json:
|
|
128249
|
-
schema:
|
|
128250
|
-
$ref: '#/components/schemas/ReachError'
|
|
128251
|
-
'500':
|
|
128252
|
-
description: Internal Server Error
|
|
128253
|
-
content:
|
|
128254
|
-
text/plain:
|
|
128255
|
-
schema:
|
|
128256
|
-
$ref: '#/components/schemas/ReachError'
|
|
128257
|
-
application/json:
|
|
128258
|
-
schema:
|
|
128259
|
-
$ref: '#/components/schemas/ReachError'
|
|
128260
|
-
text/json:
|
|
128261
|
-
schema:
|
|
128262
|
-
$ref: '#/components/schemas/ReachError'
|
|
128263
|
-
'422':
|
|
128264
|
-
description: Unprocessable Content
|
|
128265
|
-
content:
|
|
128266
|
-
text/plain:
|
|
128267
|
-
schema:
|
|
128268
|
-
$ref: '#/components/schemas/ValidationResultModel'
|
|
128269
|
-
application/json:
|
|
128270
|
-
schema:
|
|
128271
|
-
$ref: '#/components/schemas/ValidationResultModel'
|
|
128272
|
-
text/json:
|
|
128273
|
-
schema:
|
|
128274
|
-
$ref: '#/components/schemas/ValidationResultModel'
|
|
128275
|
-
/api/templates/id-name:
|
|
128276
|
-
get:
|
|
128277
|
-
tags:
|
|
128278
|
-
- Templates
|
|
128279
|
-
summary: Gets a list of resources.
|
|
128280
|
-
operationId: GetListIdName
|
|
128281
|
-
parameters:
|
|
128282
|
-
- name: Ids
|
|
128283
|
-
in: query
|
|
128284
|
-
description: Gets or sets the queryable template ids.
|
|
128285
|
-
schema:
|
|
128286
|
-
type: array
|
|
128287
|
-
items:
|
|
128288
|
-
type: string
|
|
128289
|
-
format: uuid
|
|
128290
129863
|
- name: PageNumber
|
|
128291
129864
|
in: query
|
|
128292
129865
|
description: Gets or sets the page number for paged queries.
|
|
@@ -128360,17 +129933,17 @@ paths:
|
|
|
128360
129933
|
schema:
|
|
128361
129934
|
type: array
|
|
128362
129935
|
items:
|
|
128363
|
-
$ref: '#/components/schemas/
|
|
129936
|
+
$ref: '#/components/schemas/TenantFaq'
|
|
128364
129937
|
application/json:
|
|
128365
129938
|
schema:
|
|
128366
129939
|
type: array
|
|
128367
129940
|
items:
|
|
128368
|
-
$ref: '#/components/schemas/
|
|
129941
|
+
$ref: '#/components/schemas/TenantFaq'
|
|
128369
129942
|
text/json:
|
|
128370
129943
|
schema:
|
|
128371
129944
|
type: array
|
|
128372
129945
|
items:
|
|
128373
|
-
$ref: '#/components/schemas/
|
|
129946
|
+
$ref: '#/components/schemas/TenantFaq'
|
|
128374
129947
|
'400':
|
|
128375
129948
|
description: Bad Request
|
|
128376
129949
|
content:
|
|
@@ -171794,6 +173367,153 @@ components:
|
|
|
171794
173367
|
nullable: true
|
|
171795
173368
|
additionalProperties: false
|
|
171796
173369
|
description: Represents an organisation within the Reach application.
|
|
173370
|
+
TenantFaq:
|
|
173371
|
+
required:
|
|
173372
|
+
- dateCreated
|
|
173373
|
+
- dateModified
|
|
173374
|
+
- isLive
|
|
173375
|
+
- tenantId
|
|
173376
|
+
type: object
|
|
173377
|
+
properties:
|
|
173378
|
+
id:
|
|
173379
|
+
type: string
|
|
173380
|
+
description: Gets or sets the entities Id.
|
|
173381
|
+
format: uuid
|
|
173382
|
+
tenantId:
|
|
173383
|
+
type: string
|
|
173384
|
+
description: Gets or sets the tenant Id.
|
|
173385
|
+
format: uuid
|
|
173386
|
+
dateCreated:
|
|
173387
|
+
type: string
|
|
173388
|
+
description: Gets or sets the created date of this entity.
|
|
173389
|
+
format: date-time
|
|
173390
|
+
dateModified:
|
|
173391
|
+
type: string
|
|
173392
|
+
description: Gets or sets the last modified date of this entity.
|
|
173393
|
+
format: date-time
|
|
173394
|
+
modifiedById:
|
|
173395
|
+
type: string
|
|
173396
|
+
description: Gets or sets the modified by Id.
|
|
173397
|
+
format: uuid
|
|
173398
|
+
nullable: true
|
|
173399
|
+
isLive:
|
|
173400
|
+
type: boolean
|
|
173401
|
+
description: Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
173402
|
+
default: false
|
|
173403
|
+
question:
|
|
173404
|
+
type: string
|
|
173405
|
+
description: Gets or sets the question text.
|
|
173406
|
+
nullable: true
|
|
173407
|
+
answer:
|
|
173408
|
+
type: string
|
|
173409
|
+
description: 'Gets or sets the answer text. Stored as sanitized HTML (basic formatting only - paragraphs, bullets, links).'
|
|
173410
|
+
nullable: true
|
|
173411
|
+
sortOrder:
|
|
173412
|
+
type: integer
|
|
173413
|
+
description: Gets or sets the display order for the FAQ within the tenant list. Lower values appear first.
|
|
173414
|
+
format: int32
|
|
173415
|
+
default: 0
|
|
173416
|
+
showOnStorefront:
|
|
173417
|
+
type: boolean
|
|
173418
|
+
description: Gets or sets a value indicating whether this FAQ is shown on the public storefront.
|
|
173419
|
+
default: false
|
|
173420
|
+
showOnCustomerPortal:
|
|
173421
|
+
type: boolean
|
|
173422
|
+
description: Gets or sets a value indicating whether this FAQ is shown on the customer portal.
|
|
173423
|
+
default: false
|
|
173424
|
+
additionalProperties: false
|
|
173425
|
+
description: Represents a single Frequently Asked Question entry owned by a tenant.
|
|
173426
|
+
TenantFaqPage:
|
|
173427
|
+
required:
|
|
173428
|
+
- items
|
|
173429
|
+
- pagination
|
|
173430
|
+
type: object
|
|
173431
|
+
properties:
|
|
173432
|
+
pagination:
|
|
173433
|
+
$ref: '#/components/schemas/Pagination'
|
|
173434
|
+
items:
|
|
173435
|
+
type: array
|
|
173436
|
+
items:
|
|
173437
|
+
$ref: '#/components/schemas/TenantFaq'
|
|
173438
|
+
readOnly: true
|
|
173439
|
+
additionalProperties: false
|
|
173440
|
+
TenantFaqPatch:
|
|
173441
|
+
required:
|
|
173442
|
+
- id
|
|
173443
|
+
- tenantId
|
|
173444
|
+
type: object
|
|
173445
|
+
properties:
|
|
173446
|
+
tenantId:
|
|
173447
|
+
type: string
|
|
173448
|
+
description: Gets or sets the tenant Id.
|
|
173449
|
+
format: uuid
|
|
173450
|
+
id:
|
|
173451
|
+
type: string
|
|
173452
|
+
description: Gets or sets the Id.
|
|
173453
|
+
format: uuid
|
|
173454
|
+
question:
|
|
173455
|
+
type: string
|
|
173456
|
+
description: Gets or sets the question text.
|
|
173457
|
+
nullable: true
|
|
173458
|
+
answer:
|
|
173459
|
+
type: string
|
|
173460
|
+
description: Gets or sets the answer text (sanitized HTML).
|
|
173461
|
+
nullable: true
|
|
173462
|
+
sortOrder:
|
|
173463
|
+
type: integer
|
|
173464
|
+
description: Gets or sets the display order for the FAQ within the tenant list.
|
|
173465
|
+
format: int32
|
|
173466
|
+
default: 0
|
|
173467
|
+
showOnStorefront:
|
|
173468
|
+
type: boolean
|
|
173469
|
+
description: Gets or sets a value indicating whether this FAQ is shown on the public storefront.
|
|
173470
|
+
default: false
|
|
173471
|
+
showOnCustomerPortal:
|
|
173472
|
+
type: boolean
|
|
173473
|
+
description: Gets or sets a value indicating whether this FAQ is shown on the customer portal.
|
|
173474
|
+
default: false
|
|
173475
|
+
isLive:
|
|
173476
|
+
type: boolean
|
|
173477
|
+
description: Gets or sets a value indicating whether this FAQ is live (published).
|
|
173478
|
+
default: false
|
|
173479
|
+
additionalProperties: false
|
|
173480
|
+
description: Patch model for a tenant FAQ entry.
|
|
173481
|
+
TenantFaqPost:
|
|
173482
|
+
required:
|
|
173483
|
+
- tenantId
|
|
173484
|
+
type: object
|
|
173485
|
+
properties:
|
|
173486
|
+
tenantId:
|
|
173487
|
+
type: string
|
|
173488
|
+
description: Gets or sets the tenant Id.
|
|
173489
|
+
format: uuid
|
|
173490
|
+
question:
|
|
173491
|
+
type: string
|
|
173492
|
+
description: Gets or sets the question text.
|
|
173493
|
+
nullable: true
|
|
173494
|
+
answer:
|
|
173495
|
+
type: string
|
|
173496
|
+
description: Gets or sets the answer text (sanitized HTML).
|
|
173497
|
+
nullable: true
|
|
173498
|
+
sortOrder:
|
|
173499
|
+
type: integer
|
|
173500
|
+
description: Gets or sets the display order for the FAQ within the tenant list.
|
|
173501
|
+
format: int32
|
|
173502
|
+
default: 0
|
|
173503
|
+
showOnStorefront:
|
|
173504
|
+
type: boolean
|
|
173505
|
+
description: Gets or sets a value indicating whether this FAQ is shown on the public storefront.
|
|
173506
|
+
default: false
|
|
173507
|
+
showOnCustomerPortal:
|
|
173508
|
+
type: boolean
|
|
173509
|
+
description: Gets or sets a value indicating whether this FAQ is shown on the customer portal.
|
|
173510
|
+
default: false
|
|
173511
|
+
isLive:
|
|
173512
|
+
type: boolean
|
|
173513
|
+
description: Gets or sets a value indicating whether this FAQ is live (published).
|
|
173514
|
+
default: false
|
|
173515
|
+
additionalProperties: false
|
|
173516
|
+
description: Post model for a tenant FAQ entry.
|
|
171797
173517
|
TenantPage:
|
|
171798
173518
|
required:
|
|
171799
173519
|
- items
|
|
@@ -172173,6 +173893,14 @@ components:
|
|
|
172173
173893
|
nullable: true
|
|
172174
173894
|
websiteHomepage:
|
|
172175
173895
|
$ref: '#/components/schemas/WebsiteHomepage'
|
|
173896
|
+
checkoutGatingMessageEnabled:
|
|
173897
|
+
type: boolean
|
|
173898
|
+
description: Gets or sets a value indicating whether a gating message is shown to customers in a modal before they proceed to the checkout flow.
|
|
173899
|
+
nullable: true
|
|
173900
|
+
checkoutGatingMessage:
|
|
173901
|
+
type: string
|
|
173902
|
+
description: Gets or sets the message shown to customers in a modal before they proceed to the checkout flow. Only shown when Reach.Models.TenantWebsiteSetting.CheckoutGatingMessageEnabled is true.
|
|
173903
|
+
nullable: true
|
|
172176
173904
|
additionalProperties: false
|
|
172177
173905
|
description: Represents an organisation within the Reach application.
|
|
172178
173906
|
TenantWebsiteSettingPage:
|
|
@@ -172279,6 +174007,14 @@ components:
|
|
|
172279
174007
|
nullable: true
|
|
172280
174008
|
websiteHomepage:
|
|
172281
174009
|
$ref: '#/components/schemas/WebsiteHomepage'
|
|
174010
|
+
checkoutGatingMessageEnabled:
|
|
174011
|
+
type: boolean
|
|
174012
|
+
description: Gets or sets a value indicating whether a gating message is shown to customers in a modal before they proceed to the checkout flow.
|
|
174013
|
+
nullable: true
|
|
174014
|
+
checkoutGatingMessage:
|
|
174015
|
+
type: string
|
|
174016
|
+
description: Gets or sets the message shown to customers in a modal before they proceed to the checkout flow.
|
|
174017
|
+
nullable: true
|
|
172282
174018
|
additionalProperties: false
|
|
172283
174019
|
description: Post model for tenant website setting updates.
|
|
172284
174020
|
TenantWebsiteSettingPost:
|