@connectedxm/admin 6.33.1 → 7.0.0
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/CLAUDE.md +1 -1
- package/dist/index.cjs +32 -575
- package/dist/index.d.cts +42 -385
- package/dist/index.d.ts +42 -385
- package/dist/index.js +28 -525
- package/openapi.json +529 -1717
- package/package.json +1 -1
package/openapi.json
CHANGED
|
@@ -757,16 +757,8 @@
|
|
|
757
757
|
"description": "A collection of messages around a specific topic for seamless, real-time collaboration"
|
|
758
758
|
},
|
|
759
759
|
{
|
|
760
|
-
"name": "Threads::
|
|
761
|
-
"description": "
|
|
762
|
-
},
|
|
763
|
-
{
|
|
764
|
-
"name": "Threads::Circles::Accounts",
|
|
765
|
-
"description": "Manage which accounts belong to thread circles, adding or removing members to control circle membership and access"
|
|
766
|
-
},
|
|
767
|
-
{
|
|
768
|
-
"name": "Threads::Members",
|
|
769
|
-
"description": "Manage thread membership, controlling who can participate in specific thread conversations"
|
|
760
|
+
"name": "Threads::Accounts",
|
|
761
|
+
"description": "Operations for threads::accounts"
|
|
770
762
|
},
|
|
771
763
|
{
|
|
772
764
|
"name": "Threads::Messages",
|
|
@@ -58738,107 +58730,6 @@
|
|
|
58738
58730
|
]
|
|
58739
58731
|
}
|
|
58740
58732
|
},
|
|
58741
|
-
"/events/{eventId}/threads": {
|
|
58742
|
-
"get": {
|
|
58743
|
-
"operationId": "GetEventThreads",
|
|
58744
|
-
"summary": "Get Event Threads",
|
|
58745
|
-
"description": "Get Event Threads endpoint",
|
|
58746
|
-
"parameters": [
|
|
58747
|
-
{
|
|
58748
|
-
"in": "path",
|
|
58749
|
-
"name": "eventId",
|
|
58750
|
-
"schema": {
|
|
58751
|
-
"type": "string"
|
|
58752
|
-
},
|
|
58753
|
-
"description": "The event identifier",
|
|
58754
|
-
"required": true
|
|
58755
|
-
},
|
|
58756
|
-
{
|
|
58757
|
-
"in": "query",
|
|
58758
|
-
"name": "page",
|
|
58759
|
-
"schema": {
|
|
58760
|
-
"type": "integer",
|
|
58761
|
-
"minimum": 1,
|
|
58762
|
-
"default": 1
|
|
58763
|
-
},
|
|
58764
|
-
"description": "Page number",
|
|
58765
|
-
"required": false
|
|
58766
|
-
},
|
|
58767
|
-
{
|
|
58768
|
-
"in": "query",
|
|
58769
|
-
"name": "pageSize",
|
|
58770
|
-
"schema": {
|
|
58771
|
-
"type": "integer",
|
|
58772
|
-
"minimum": 1,
|
|
58773
|
-
"maximum": 100,
|
|
58774
|
-
"default": 25
|
|
58775
|
-
},
|
|
58776
|
-
"description": "Number of items per page",
|
|
58777
|
-
"required": false
|
|
58778
|
-
},
|
|
58779
|
-
{
|
|
58780
|
-
"in": "query",
|
|
58781
|
-
"name": "orderBy",
|
|
58782
|
-
"schema": {
|
|
58783
|
-
"type": "string"
|
|
58784
|
-
},
|
|
58785
|
-
"description": "Field to order by",
|
|
58786
|
-
"required": false
|
|
58787
|
-
},
|
|
58788
|
-
{
|
|
58789
|
-
"in": "query",
|
|
58790
|
-
"name": "search",
|
|
58791
|
-
"schema": {
|
|
58792
|
-
"type": "string"
|
|
58793
|
-
},
|
|
58794
|
-
"description": "Search query",
|
|
58795
|
-
"required": false
|
|
58796
|
-
}
|
|
58797
|
-
],
|
|
58798
|
-
"responses": {
|
|
58799
|
-
"200": {
|
|
58800
|
-
"description": "Successful response",
|
|
58801
|
-
"content": {
|
|
58802
|
-
"application/json": {
|
|
58803
|
-
"schema": {
|
|
58804
|
-
"type": "object",
|
|
58805
|
-
"properties": {
|
|
58806
|
-
"status": {
|
|
58807
|
-
"type": "string",
|
|
58808
|
-
"enum": [
|
|
58809
|
-
"ok"
|
|
58810
|
-
]
|
|
58811
|
-
},
|
|
58812
|
-
"message": {
|
|
58813
|
-
"type": "string",
|
|
58814
|
-
"example": "Success message."
|
|
58815
|
-
},
|
|
58816
|
-
"data": {
|
|
58817
|
-
"type": "array",
|
|
58818
|
-
"items": {
|
|
58819
|
-
"$ref": "#/components/schemas/Thread"
|
|
58820
|
-
}
|
|
58821
|
-
},
|
|
58822
|
-
"count": {
|
|
58823
|
-
"type": "integer",
|
|
58824
|
-
"example": 100
|
|
58825
|
-
}
|
|
58826
|
-
},
|
|
58827
|
-
"required": [
|
|
58828
|
-
"status",
|
|
58829
|
-
"message",
|
|
58830
|
-
"data"
|
|
58831
|
-
]
|
|
58832
|
-
}
|
|
58833
|
-
}
|
|
58834
|
-
}
|
|
58835
|
-
}
|
|
58836
|
-
},
|
|
58837
|
-
"tags": [
|
|
58838
|
-
"Events"
|
|
58839
|
-
]
|
|
58840
|
-
}
|
|
58841
|
-
},
|
|
58842
58733
|
"/events/{eventId}/tiers": {
|
|
58843
58734
|
"get": {
|
|
58844
58735
|
"operationId": "GetEventTiers",
|
|
@@ -63132,107 +63023,6 @@
|
|
|
63132
63023
|
]
|
|
63133
63024
|
}
|
|
63134
63025
|
},
|
|
63135
|
-
"/groups/{groupId}/threads": {
|
|
63136
|
-
"get": {
|
|
63137
|
-
"operationId": "GetGroupThreads",
|
|
63138
|
-
"summary": "Get Group Threads",
|
|
63139
|
-
"description": "Get Group Threads endpoint",
|
|
63140
|
-
"parameters": [
|
|
63141
|
-
{
|
|
63142
|
-
"in": "path",
|
|
63143
|
-
"name": "groupId",
|
|
63144
|
-
"schema": {
|
|
63145
|
-
"type": "string"
|
|
63146
|
-
},
|
|
63147
|
-
"description": "The group identifier",
|
|
63148
|
-
"required": true
|
|
63149
|
-
},
|
|
63150
|
-
{
|
|
63151
|
-
"in": "query",
|
|
63152
|
-
"name": "page",
|
|
63153
|
-
"schema": {
|
|
63154
|
-
"type": "integer",
|
|
63155
|
-
"minimum": 1,
|
|
63156
|
-
"default": 1
|
|
63157
|
-
},
|
|
63158
|
-
"description": "Page number",
|
|
63159
|
-
"required": false
|
|
63160
|
-
},
|
|
63161
|
-
{
|
|
63162
|
-
"in": "query",
|
|
63163
|
-
"name": "pageSize",
|
|
63164
|
-
"schema": {
|
|
63165
|
-
"type": "integer",
|
|
63166
|
-
"minimum": 1,
|
|
63167
|
-
"maximum": 100,
|
|
63168
|
-
"default": 25
|
|
63169
|
-
},
|
|
63170
|
-
"description": "Number of items per page",
|
|
63171
|
-
"required": false
|
|
63172
|
-
},
|
|
63173
|
-
{
|
|
63174
|
-
"in": "query",
|
|
63175
|
-
"name": "orderBy",
|
|
63176
|
-
"schema": {
|
|
63177
|
-
"type": "string"
|
|
63178
|
-
},
|
|
63179
|
-
"description": "Field to order by",
|
|
63180
|
-
"required": false
|
|
63181
|
-
},
|
|
63182
|
-
{
|
|
63183
|
-
"in": "query",
|
|
63184
|
-
"name": "search",
|
|
63185
|
-
"schema": {
|
|
63186
|
-
"type": "string"
|
|
63187
|
-
},
|
|
63188
|
-
"description": "Search query",
|
|
63189
|
-
"required": false
|
|
63190
|
-
}
|
|
63191
|
-
],
|
|
63192
|
-
"responses": {
|
|
63193
|
-
"200": {
|
|
63194
|
-
"description": "Successful response",
|
|
63195
|
-
"content": {
|
|
63196
|
-
"application/json": {
|
|
63197
|
-
"schema": {
|
|
63198
|
-
"type": "object",
|
|
63199
|
-
"properties": {
|
|
63200
|
-
"status": {
|
|
63201
|
-
"type": "string",
|
|
63202
|
-
"enum": [
|
|
63203
|
-
"ok"
|
|
63204
|
-
]
|
|
63205
|
-
},
|
|
63206
|
-
"message": {
|
|
63207
|
-
"type": "string",
|
|
63208
|
-
"example": "Success message."
|
|
63209
|
-
},
|
|
63210
|
-
"data": {
|
|
63211
|
-
"type": "array",
|
|
63212
|
-
"items": {
|
|
63213
|
-
"$ref": "#/components/schemas/Thread"
|
|
63214
|
-
}
|
|
63215
|
-
},
|
|
63216
|
-
"count": {
|
|
63217
|
-
"type": "integer",
|
|
63218
|
-
"example": 100
|
|
63219
|
-
}
|
|
63220
|
-
},
|
|
63221
|
-
"required": [
|
|
63222
|
-
"status",
|
|
63223
|
-
"message",
|
|
63224
|
-
"data"
|
|
63225
|
-
]
|
|
63226
|
-
}
|
|
63227
|
-
}
|
|
63228
|
-
}
|
|
63229
|
-
}
|
|
63230
|
-
},
|
|
63231
|
-
"tags": [
|
|
63232
|
-
"Groups"
|
|
63233
|
-
]
|
|
63234
|
-
}
|
|
63235
|
-
},
|
|
63236
63026
|
"/groups/{groupId}/translations": {
|
|
63237
63027
|
"get": {
|
|
63238
63028
|
"operationId": "GetGroupTranslations",
|
|
@@ -88899,15 +88689,6 @@
|
|
|
88899
88689
|
"summary": "Get Threads",
|
|
88900
88690
|
"description": "Get Threads endpoint",
|
|
88901
88691
|
"parameters": [
|
|
88902
|
-
{
|
|
88903
|
-
"in": "query",
|
|
88904
|
-
"name": "type",
|
|
88905
|
-
"schema": {
|
|
88906
|
-
"$ref": "#/components/schemas/ThreadType"
|
|
88907
|
-
},
|
|
88908
|
-
"description": "Filter by type",
|
|
88909
|
-
"required": false
|
|
88910
|
-
},
|
|
88911
88692
|
{
|
|
88912
88693
|
"in": "query",
|
|
88913
88694
|
"name": "page",
|
|
@@ -89044,61 +88825,20 @@
|
|
|
89044
88825
|
]
|
|
89045
88826
|
}
|
|
89046
88827
|
},
|
|
89047
|
-
"/threads/
|
|
88828
|
+
"/threads/{threadId}": {
|
|
89048
88829
|
"get": {
|
|
89049
|
-
"operationId": "
|
|
89050
|
-
"summary": "Get Thread
|
|
89051
|
-
"description": "Get Thread
|
|
88830
|
+
"operationId": "GetThread",
|
|
88831
|
+
"summary": "Get Thread",
|
|
88832
|
+
"description": "Get Thread endpoint",
|
|
89052
88833
|
"parameters": [
|
|
89053
88834
|
{
|
|
89054
|
-
"in": "
|
|
89055
|
-
"name": "
|
|
89056
|
-
"schema": {
|
|
89057
|
-
"$ref": "#/components/schemas/ThreadCircleType"
|
|
89058
|
-
},
|
|
89059
|
-
"description": "Filter by type",
|
|
89060
|
-
"required": true
|
|
89061
|
-
},
|
|
89062
|
-
{
|
|
89063
|
-
"in": "query",
|
|
89064
|
-
"name": "page",
|
|
89065
|
-
"schema": {
|
|
89066
|
-
"type": "integer",
|
|
89067
|
-
"minimum": 1,
|
|
89068
|
-
"default": 1
|
|
89069
|
-
},
|
|
89070
|
-
"description": "Page number",
|
|
89071
|
-
"required": false
|
|
89072
|
-
},
|
|
89073
|
-
{
|
|
89074
|
-
"in": "query",
|
|
89075
|
-
"name": "pageSize",
|
|
89076
|
-
"schema": {
|
|
89077
|
-
"type": "integer",
|
|
89078
|
-
"minimum": 1,
|
|
89079
|
-
"maximum": 100,
|
|
89080
|
-
"default": 25
|
|
89081
|
-
},
|
|
89082
|
-
"description": "Number of items per page",
|
|
89083
|
-
"required": false
|
|
89084
|
-
},
|
|
89085
|
-
{
|
|
89086
|
-
"in": "query",
|
|
89087
|
-
"name": "orderBy",
|
|
89088
|
-
"schema": {
|
|
89089
|
-
"type": "string"
|
|
89090
|
-
},
|
|
89091
|
-
"description": "Field to order by",
|
|
89092
|
-
"required": false
|
|
89093
|
-
},
|
|
89094
|
-
{
|
|
89095
|
-
"in": "query",
|
|
89096
|
-
"name": "search",
|
|
88835
|
+
"in": "path",
|
|
88836
|
+
"name": "threadId",
|
|
89097
88837
|
"schema": {
|
|
89098
88838
|
"type": "string"
|
|
89099
88839
|
},
|
|
89100
|
-
"description": "
|
|
89101
|
-
"required":
|
|
88840
|
+
"description": "The thread identifier",
|
|
88841
|
+
"required": true
|
|
89102
88842
|
}
|
|
89103
88843
|
],
|
|
89104
88844
|
"responses": {
|
|
@@ -89120,117 +88860,7 @@
|
|
|
89120
88860
|
"example": "Success message."
|
|
89121
88861
|
},
|
|
89122
88862
|
"data": {
|
|
89123
|
-
"
|
|
89124
|
-
"items": {
|
|
89125
|
-
"$ref": "#/components/schemas/ThreadCircle"
|
|
89126
|
-
}
|
|
89127
|
-
},
|
|
89128
|
-
"count": {
|
|
89129
|
-
"type": "integer",
|
|
89130
|
-
"example": 100
|
|
89131
|
-
}
|
|
89132
|
-
},
|
|
89133
|
-
"required": [
|
|
89134
|
-
"status",
|
|
89135
|
-
"message",
|
|
89136
|
-
"data"
|
|
89137
|
-
]
|
|
89138
|
-
}
|
|
89139
|
-
}
|
|
89140
|
-
}
|
|
89141
|
-
}
|
|
89142
|
-
},
|
|
89143
|
-
"tags": [
|
|
89144
|
-
"Threads::Circles"
|
|
89145
|
-
]
|
|
89146
|
-
},
|
|
89147
|
-
"post": {
|
|
89148
|
-
"operationId": "CreateThreadCircle",
|
|
89149
|
-
"summary": "Create Thread Circle",
|
|
89150
|
-
"description": "Create Thread Circle endpoint",
|
|
89151
|
-
"requestBody": {
|
|
89152
|
-
"required": true,
|
|
89153
|
-
"content": {
|
|
89154
|
-
"application/json": {
|
|
89155
|
-
"schema": {
|
|
89156
|
-
"$ref": "#/components/schemas/ThreadCircleCreateInputs"
|
|
89157
|
-
}
|
|
89158
|
-
}
|
|
89159
|
-
}
|
|
89160
|
-
},
|
|
89161
|
-
"responses": {
|
|
89162
|
-
"200": {
|
|
89163
|
-
"description": "Successful response",
|
|
89164
|
-
"content": {
|
|
89165
|
-
"application/json": {
|
|
89166
|
-
"schema": {
|
|
89167
|
-
"type": "object",
|
|
89168
|
-
"properties": {
|
|
89169
|
-
"status": {
|
|
89170
|
-
"type": "string",
|
|
89171
|
-
"enum": [
|
|
89172
|
-
"ok"
|
|
89173
|
-
]
|
|
89174
|
-
},
|
|
89175
|
-
"message": {
|
|
89176
|
-
"type": "string",
|
|
89177
|
-
"example": "Success message."
|
|
89178
|
-
},
|
|
89179
|
-
"data": {
|
|
89180
|
-
"$ref": "#/components/schemas/ThreadCircle"
|
|
89181
|
-
}
|
|
89182
|
-
},
|
|
89183
|
-
"required": [
|
|
89184
|
-
"status",
|
|
89185
|
-
"message",
|
|
89186
|
-
"data"
|
|
89187
|
-
]
|
|
89188
|
-
}
|
|
89189
|
-
}
|
|
89190
|
-
}
|
|
89191
|
-
}
|
|
89192
|
-
},
|
|
89193
|
-
"tags": [
|
|
89194
|
-
"Threads::Circles"
|
|
89195
|
-
]
|
|
89196
|
-
}
|
|
89197
|
-
},
|
|
89198
|
-
"/threads/circles/{circleId}": {
|
|
89199
|
-
"get": {
|
|
89200
|
-
"operationId": "GetThreadCircle",
|
|
89201
|
-
"summary": "Get Thread Circle",
|
|
89202
|
-
"description": "Get Thread Circle endpoint",
|
|
89203
|
-
"parameters": [
|
|
89204
|
-
{
|
|
89205
|
-
"in": "path",
|
|
89206
|
-
"name": "circleId",
|
|
89207
|
-
"schema": {
|
|
89208
|
-
"type": "string"
|
|
89209
|
-
},
|
|
89210
|
-
"description": "The circle identifier",
|
|
89211
|
-
"required": true
|
|
89212
|
-
}
|
|
89213
|
-
],
|
|
89214
|
-
"responses": {
|
|
89215
|
-
"200": {
|
|
89216
|
-
"description": "Successful response",
|
|
89217
|
-
"content": {
|
|
89218
|
-
"application/json": {
|
|
89219
|
-
"schema": {
|
|
89220
|
-
"type": "object",
|
|
89221
|
-
"properties": {
|
|
89222
|
-
"status": {
|
|
89223
|
-
"type": "string",
|
|
89224
|
-
"enum": [
|
|
89225
|
-
"ok"
|
|
89226
|
-
]
|
|
89227
|
-
},
|
|
89228
|
-
"message": {
|
|
89229
|
-
"type": "string",
|
|
89230
|
-
"example": "Success message."
|
|
89231
|
-
},
|
|
89232
|
-
"data": {
|
|
89233
|
-
"$ref": "#/components/schemas/ThreadCircle"
|
|
88863
|
+
"$ref": "#/components/schemas/Thread"
|
|
89234
88864
|
}
|
|
89235
88865
|
},
|
|
89236
88866
|
"required": [
|
|
@@ -89244,21 +88874,21 @@
|
|
|
89244
88874
|
}
|
|
89245
88875
|
},
|
|
89246
88876
|
"tags": [
|
|
89247
|
-
"Threads
|
|
88877
|
+
"Threads"
|
|
89248
88878
|
]
|
|
89249
88879
|
},
|
|
89250
88880
|
"put": {
|
|
89251
|
-
"operationId": "
|
|
89252
|
-
"summary": "Update Thread
|
|
89253
|
-
"description": "Update Thread
|
|
88881
|
+
"operationId": "UpdateThread",
|
|
88882
|
+
"summary": "Update Thread",
|
|
88883
|
+
"description": "Update Thread endpoint",
|
|
89254
88884
|
"parameters": [
|
|
89255
88885
|
{
|
|
89256
88886
|
"in": "path",
|
|
89257
|
-
"name": "
|
|
88887
|
+
"name": "threadId",
|
|
89258
88888
|
"schema": {
|
|
89259
88889
|
"type": "string"
|
|
89260
88890
|
},
|
|
89261
|
-
"description": "The
|
|
88891
|
+
"description": "The thread identifier",
|
|
89262
88892
|
"required": true
|
|
89263
88893
|
}
|
|
89264
88894
|
],
|
|
@@ -89267,7 +88897,7 @@
|
|
|
89267
88897
|
"content": {
|
|
89268
88898
|
"application/json": {
|
|
89269
88899
|
"schema": {
|
|
89270
|
-
"$ref": "#/components/schemas/
|
|
88900
|
+
"$ref": "#/components/schemas/ThreadUpdateInputs"
|
|
89271
88901
|
}
|
|
89272
88902
|
}
|
|
89273
88903
|
}
|
|
@@ -89291,7 +88921,7 @@
|
|
|
89291
88921
|
"example": "Success message."
|
|
89292
88922
|
},
|
|
89293
88923
|
"data": {
|
|
89294
|
-
"$ref": "#/components/schemas/
|
|
88924
|
+
"$ref": "#/components/schemas/Thread"
|
|
89295
88925
|
}
|
|
89296
88926
|
},
|
|
89297
88927
|
"required": [
|
|
@@ -89305,21 +88935,21 @@
|
|
|
89305
88935
|
}
|
|
89306
88936
|
},
|
|
89307
88937
|
"tags": [
|
|
89308
|
-
"Threads
|
|
88938
|
+
"Threads"
|
|
89309
88939
|
]
|
|
89310
88940
|
},
|
|
89311
88941
|
"delete": {
|
|
89312
|
-
"operationId": "
|
|
89313
|
-
"summary": "Delete Thread
|
|
89314
|
-
"description": "Delete Thread
|
|
88942
|
+
"operationId": "DeleteThread",
|
|
88943
|
+
"summary": "Delete Thread",
|
|
88944
|
+
"description": "Delete Thread endpoint",
|
|
89315
88945
|
"parameters": [
|
|
89316
88946
|
{
|
|
89317
88947
|
"in": "path",
|
|
89318
|
-
"name": "
|
|
88948
|
+
"name": "threadId",
|
|
89319
88949
|
"schema": {
|
|
89320
88950
|
"type": "string"
|
|
89321
88951
|
},
|
|
89322
|
-
"description": "The
|
|
88952
|
+
"description": "The thread identifier",
|
|
89323
88953
|
"required": true
|
|
89324
88954
|
}
|
|
89325
88955
|
],
|
|
@@ -89356,34 +88986,25 @@
|
|
|
89356
88986
|
}
|
|
89357
88987
|
},
|
|
89358
88988
|
"tags": [
|
|
89359
|
-
"Threads
|
|
88989
|
+
"Threads"
|
|
89360
88990
|
]
|
|
89361
88991
|
}
|
|
89362
88992
|
},
|
|
89363
|
-
"/threads/
|
|
88993
|
+
"/threads/{threadId}/accounts": {
|
|
89364
88994
|
"get": {
|
|
89365
|
-
"operationId": "
|
|
89366
|
-
"summary": "Get Thread
|
|
89367
|
-
"description": "Get Thread
|
|
88995
|
+
"operationId": "GetThreadAccounts",
|
|
88996
|
+
"summary": "Get Thread Accounts",
|
|
88997
|
+
"description": "Get Thread Accounts endpoint",
|
|
89368
88998
|
"parameters": [
|
|
89369
88999
|
{
|
|
89370
89000
|
"in": "path",
|
|
89371
|
-
"name": "
|
|
89001
|
+
"name": "threadId",
|
|
89372
89002
|
"schema": {
|
|
89373
89003
|
"type": "string"
|
|
89374
89004
|
},
|
|
89375
|
-
"description": "The
|
|
89005
|
+
"description": "The thread identifier",
|
|
89376
89006
|
"required": true
|
|
89377
89007
|
},
|
|
89378
|
-
{
|
|
89379
|
-
"in": "query",
|
|
89380
|
-
"name": "role",
|
|
89381
|
-
"schema": {
|
|
89382
|
-
"$ref": "#/components/schemas/ThreadCircleAccountRole"
|
|
89383
|
-
},
|
|
89384
|
-
"description": "Filter by role",
|
|
89385
|
-
"required": false
|
|
89386
|
-
},
|
|
89387
89008
|
{
|
|
89388
89009
|
"in": "query",
|
|
89389
89010
|
"name": "page",
|
|
@@ -89447,7 +89068,7 @@
|
|
|
89447
89068
|
"data": {
|
|
89448
89069
|
"type": "array",
|
|
89449
89070
|
"items": {
|
|
89450
|
-
"$ref": "#/components/schemas/
|
|
89071
|
+
"$ref": "#/components/schemas/Account"
|
|
89451
89072
|
}
|
|
89452
89073
|
},
|
|
89453
89074
|
"count": {
|
|
@@ -89466,21 +89087,32 @@
|
|
|
89466
89087
|
}
|
|
89467
89088
|
},
|
|
89468
89089
|
"tags": [
|
|
89469
|
-
"Threads::
|
|
89090
|
+
"Threads::Accounts"
|
|
89470
89091
|
]
|
|
89471
|
-
}
|
|
89472
|
-
|
|
89473
|
-
|
|
89474
|
-
|
|
89475
|
-
"
|
|
89092
|
+
}
|
|
89093
|
+
},
|
|
89094
|
+
"/threads/{threadId}/accounts/{accountId}": {
|
|
89095
|
+
"put": {
|
|
89096
|
+
"operationId": "UpdateThreadAccount",
|
|
89097
|
+
"summary": "Update Thread Account",
|
|
89098
|
+
"description": "Update Thread Account endpoint",
|
|
89476
89099
|
"parameters": [
|
|
89477
89100
|
{
|
|
89478
89101
|
"in": "path",
|
|
89479
|
-
"name": "
|
|
89102
|
+
"name": "threadId",
|
|
89103
|
+
"schema": {
|
|
89104
|
+
"type": "string"
|
|
89105
|
+
},
|
|
89106
|
+
"description": "The thread identifier",
|
|
89107
|
+
"required": true
|
|
89108
|
+
},
|
|
89109
|
+
{
|
|
89110
|
+
"in": "path",
|
|
89111
|
+
"name": "accountId",
|
|
89480
89112
|
"schema": {
|
|
89481
89113
|
"type": "string"
|
|
89482
89114
|
},
|
|
89483
|
-
"description": "The
|
|
89115
|
+
"description": "The account identifier",
|
|
89484
89116
|
"required": true
|
|
89485
89117
|
}
|
|
89486
89118
|
],
|
|
@@ -89489,7 +89121,7 @@
|
|
|
89489
89121
|
"content": {
|
|
89490
89122
|
"application/json": {
|
|
89491
89123
|
"schema": {
|
|
89492
|
-
"$ref": "#/components/schemas/
|
|
89124
|
+
"$ref": "#/components/schemas/ThreadAccountUpdateInputs"
|
|
89493
89125
|
}
|
|
89494
89126
|
}
|
|
89495
89127
|
}
|
|
@@ -89513,7 +89145,7 @@
|
|
|
89513
89145
|
"example": "Success message."
|
|
89514
89146
|
},
|
|
89515
89147
|
"data": {
|
|
89516
|
-
"$ref": "#/components/schemas/
|
|
89148
|
+
"$ref": "#/components/schemas/ThreadAccount"
|
|
89517
89149
|
}
|
|
89518
89150
|
},
|
|
89519
89151
|
"required": [
|
|
@@ -89527,23 +89159,21 @@
|
|
|
89527
89159
|
}
|
|
89528
89160
|
},
|
|
89529
89161
|
"tags": [
|
|
89530
|
-
"Threads::
|
|
89162
|
+
"Threads::Accounts"
|
|
89531
89163
|
]
|
|
89532
|
-
}
|
|
89533
|
-
|
|
89534
|
-
|
|
89535
|
-
|
|
89536
|
-
"
|
|
89537
|
-
"summary": "Get Thread Circle Account",
|
|
89538
|
-
"description": "Get Thread Circle Account endpoint",
|
|
89164
|
+
},
|
|
89165
|
+
"delete": {
|
|
89166
|
+
"operationId": "DeleteThreadAccount",
|
|
89167
|
+
"summary": "Delete Thread Account",
|
|
89168
|
+
"description": "Delete Thread Account endpoint",
|
|
89539
89169
|
"parameters": [
|
|
89540
89170
|
{
|
|
89541
89171
|
"in": "path",
|
|
89542
|
-
"name": "
|
|
89172
|
+
"name": "threadId",
|
|
89543
89173
|
"schema": {
|
|
89544
89174
|
"type": "string"
|
|
89545
89175
|
},
|
|
89546
|
-
"description": "The
|
|
89176
|
+
"description": "The thread identifier",
|
|
89547
89177
|
"required": true
|
|
89548
89178
|
},
|
|
89549
89179
|
{
|
|
@@ -89575,7 +89205,7 @@
|
|
|
89575
89205
|
"example": "Success message."
|
|
89576
89206
|
},
|
|
89577
89207
|
"data": {
|
|
89578
|
-
"
|
|
89208
|
+
"nullable": true
|
|
89579
89209
|
}
|
|
89580
89210
|
},
|
|
89581
89211
|
"required": [
|
|
@@ -89589,43 +89219,26 @@
|
|
|
89589
89219
|
}
|
|
89590
89220
|
},
|
|
89591
89221
|
"tags": [
|
|
89592
|
-
"Threads::
|
|
89222
|
+
"Threads::Accounts"
|
|
89593
89223
|
]
|
|
89594
|
-
}
|
|
89595
|
-
|
|
89596
|
-
|
|
89597
|
-
|
|
89598
|
-
"
|
|
89224
|
+
}
|
|
89225
|
+
},
|
|
89226
|
+
"/threads/{threadId}/messages": {
|
|
89227
|
+
"get": {
|
|
89228
|
+
"operationId": "GetThreadMessages",
|
|
89229
|
+
"summary": "Get Thread Messages",
|
|
89230
|
+
"description": "Get Thread Messages endpoint",
|
|
89599
89231
|
"parameters": [
|
|
89600
89232
|
{
|
|
89601
89233
|
"in": "path",
|
|
89602
|
-
"name": "
|
|
89603
|
-
"schema": {
|
|
89604
|
-
"type": "string"
|
|
89605
|
-
},
|
|
89606
|
-
"description": "The circle identifier",
|
|
89607
|
-
"required": true
|
|
89608
|
-
},
|
|
89609
|
-
{
|
|
89610
|
-
"in": "path",
|
|
89611
|
-
"name": "accountId",
|
|
89234
|
+
"name": "threadId",
|
|
89612
89235
|
"schema": {
|
|
89613
89236
|
"type": "string"
|
|
89614
89237
|
},
|
|
89615
|
-
"description": "The
|
|
89238
|
+
"description": "The thread identifier",
|
|
89616
89239
|
"required": true
|
|
89617
89240
|
}
|
|
89618
89241
|
],
|
|
89619
|
-
"requestBody": {
|
|
89620
|
-
"required": true,
|
|
89621
|
-
"content": {
|
|
89622
|
-
"application/json": {
|
|
89623
|
-
"schema": {
|
|
89624
|
-
"$ref": "#/components/schemas/ThreadCircleAccountUpdateInputs"
|
|
89625
|
-
}
|
|
89626
|
-
}
|
|
89627
|
-
}
|
|
89628
|
-
},
|
|
89629
89242
|
"responses": {
|
|
89630
89243
|
"200": {
|
|
89631
89244
|
"description": "Successful response",
|
|
@@ -89645,7 +89258,10 @@
|
|
|
89645
89258
|
"example": "Success message."
|
|
89646
89259
|
},
|
|
89647
89260
|
"data": {
|
|
89648
|
-
"
|
|
89261
|
+
"type": "array",
|
|
89262
|
+
"items": {
|
|
89263
|
+
"$ref": "#/components/schemas/ThreadMessage"
|
|
89264
|
+
}
|
|
89649
89265
|
}
|
|
89650
89266
|
},
|
|
89651
89267
|
"required": [
|
|
@@ -89659,33 +89275,34 @@
|
|
|
89659
89275
|
}
|
|
89660
89276
|
},
|
|
89661
89277
|
"tags": [
|
|
89662
|
-
"Threads::
|
|
89278
|
+
"Threads::Messages"
|
|
89663
89279
|
]
|
|
89664
89280
|
},
|
|
89665
|
-
"
|
|
89666
|
-
"operationId": "
|
|
89667
|
-
"summary": "
|
|
89668
|
-
"description": "
|
|
89281
|
+
"post": {
|
|
89282
|
+
"operationId": "CreateThreadMessage",
|
|
89283
|
+
"summary": "Create Thread Message",
|
|
89284
|
+
"description": "Create Thread Message endpoint",
|
|
89669
89285
|
"parameters": [
|
|
89670
89286
|
{
|
|
89671
89287
|
"in": "path",
|
|
89672
|
-
"name": "
|
|
89673
|
-
"schema": {
|
|
89674
|
-
"type": "string"
|
|
89675
|
-
},
|
|
89676
|
-
"description": "The circle identifier",
|
|
89677
|
-
"required": true
|
|
89678
|
-
},
|
|
89679
|
-
{
|
|
89680
|
-
"in": "path",
|
|
89681
|
-
"name": "accountId",
|
|
89288
|
+
"name": "threadId",
|
|
89682
89289
|
"schema": {
|
|
89683
89290
|
"type": "string"
|
|
89684
89291
|
},
|
|
89685
|
-
"description": "The
|
|
89292
|
+
"description": "The thread identifier",
|
|
89686
89293
|
"required": true
|
|
89687
89294
|
}
|
|
89688
89295
|
],
|
|
89296
|
+
"requestBody": {
|
|
89297
|
+
"required": true,
|
|
89298
|
+
"content": {
|
|
89299
|
+
"application/json": {
|
|
89300
|
+
"schema": {
|
|
89301
|
+
"$ref": "#/components/schemas/ThreadMessageCreateInputs"
|
|
89302
|
+
}
|
|
89303
|
+
}
|
|
89304
|
+
}
|
|
89305
|
+
},
|
|
89689
89306
|
"responses": {
|
|
89690
89307
|
"200": {
|
|
89691
89308
|
"description": "Successful response",
|
|
@@ -89705,7 +89322,7 @@
|
|
|
89705
89322
|
"example": "Success message."
|
|
89706
89323
|
},
|
|
89707
89324
|
"data": {
|
|
89708
|
-
"
|
|
89325
|
+
"$ref": "#/components/schemas/ThreadMessage"
|
|
89709
89326
|
}
|
|
89710
89327
|
},
|
|
89711
89328
|
"required": [
|
|
@@ -89719,65 +89336,33 @@
|
|
|
89719
89336
|
}
|
|
89720
89337
|
},
|
|
89721
89338
|
"tags": [
|
|
89722
|
-
"Threads::
|
|
89339
|
+
"Threads::Messages"
|
|
89723
89340
|
]
|
|
89724
89341
|
}
|
|
89725
89342
|
},
|
|
89726
|
-
"/threads/
|
|
89343
|
+
"/threads/{threadId}/messages/poll": {
|
|
89727
89344
|
"get": {
|
|
89728
|
-
"operationId": "
|
|
89729
|
-
"summary": "Get Thread
|
|
89730
|
-
"description": "Get Thread
|
|
89345
|
+
"operationId": "GetThreadMessagesPoll",
|
|
89346
|
+
"summary": "Get Thread Messages Poll",
|
|
89347
|
+
"description": "Get Thread Messages Poll endpoint",
|
|
89731
89348
|
"parameters": [
|
|
89732
89349
|
{
|
|
89733
89350
|
"in": "path",
|
|
89734
|
-
"name": "
|
|
89351
|
+
"name": "threadId",
|
|
89735
89352
|
"schema": {
|
|
89736
89353
|
"type": "string"
|
|
89737
89354
|
},
|
|
89738
|
-
"description": "The
|
|
89355
|
+
"description": "The thread identifier",
|
|
89739
89356
|
"required": true
|
|
89740
89357
|
},
|
|
89741
89358
|
{
|
|
89742
89359
|
"in": "query",
|
|
89743
|
-
"name": "
|
|
89744
|
-
"schema": {
|
|
89745
|
-
"type": "integer",
|
|
89746
|
-
"minimum": 1,
|
|
89747
|
-
"default": 1
|
|
89748
|
-
},
|
|
89749
|
-
"description": "Page number",
|
|
89750
|
-
"required": false
|
|
89751
|
-
},
|
|
89752
|
-
{
|
|
89753
|
-
"in": "query",
|
|
89754
|
-
"name": "pageSize",
|
|
89755
|
-
"schema": {
|
|
89756
|
-
"type": "integer",
|
|
89757
|
-
"minimum": 1,
|
|
89758
|
-
"maximum": 100,
|
|
89759
|
-
"default": 25
|
|
89760
|
-
},
|
|
89761
|
-
"description": "Number of items per page",
|
|
89762
|
-
"required": false
|
|
89763
|
-
},
|
|
89764
|
-
{
|
|
89765
|
-
"in": "query",
|
|
89766
|
-
"name": "orderBy",
|
|
89767
|
-
"schema": {
|
|
89768
|
-
"type": "string"
|
|
89769
|
-
},
|
|
89770
|
-
"description": "Field to order by",
|
|
89771
|
-
"required": false
|
|
89772
|
-
},
|
|
89773
|
-
{
|
|
89774
|
-
"in": "query",
|
|
89775
|
-
"name": "search",
|
|
89360
|
+
"name": "lastMessageId",
|
|
89776
89361
|
"schema": {
|
|
89777
89362
|
"type": "string"
|
|
89778
89363
|
},
|
|
89779
|
-
"description": "
|
|
89780
|
-
"required":
|
|
89364
|
+
"description": "Filter by lastMessageId",
|
|
89365
|
+
"required": true
|
|
89781
89366
|
}
|
|
89782
89367
|
],
|
|
89783
89368
|
"responses": {
|
|
@@ -89801,12 +89386,8 @@
|
|
|
89801
89386
|
"data": {
|
|
89802
89387
|
"type": "array",
|
|
89803
89388
|
"items": {
|
|
89804
|
-
"$ref": "#/components/schemas/
|
|
89389
|
+
"$ref": "#/components/schemas/ThreadMessage"
|
|
89805
89390
|
}
|
|
89806
|
-
},
|
|
89807
|
-
"count": {
|
|
89808
|
-
"type": "integer",
|
|
89809
|
-
"example": 100
|
|
89810
89391
|
}
|
|
89811
89392
|
},
|
|
89812
89393
|
"required": [
|
|
@@ -89820,15 +89401,15 @@
|
|
|
89820
89401
|
}
|
|
89821
89402
|
},
|
|
89822
89403
|
"tags": [
|
|
89823
|
-
"Threads::
|
|
89404
|
+
"Threads::Messages"
|
|
89824
89405
|
]
|
|
89825
89406
|
}
|
|
89826
89407
|
},
|
|
89827
|
-
"/threads/{threadId}": {
|
|
89408
|
+
"/threads/{threadId}/messages/{messageId}": {
|
|
89828
89409
|
"get": {
|
|
89829
|
-
"operationId": "
|
|
89830
|
-
"summary": "Get Thread",
|
|
89831
|
-
"description": "Get Thread endpoint",
|
|
89410
|
+
"operationId": "GetThreadMessage",
|
|
89411
|
+
"summary": "Get Thread Message",
|
|
89412
|
+
"description": "Get Thread Message endpoint",
|
|
89832
89413
|
"parameters": [
|
|
89833
89414
|
{
|
|
89834
89415
|
"in": "path",
|
|
@@ -89838,6 +89419,15 @@
|
|
|
89838
89419
|
},
|
|
89839
89420
|
"description": "The thread identifier",
|
|
89840
89421
|
"required": true
|
|
89422
|
+
},
|
|
89423
|
+
{
|
|
89424
|
+
"in": "path",
|
|
89425
|
+
"name": "messageId",
|
|
89426
|
+
"schema": {
|
|
89427
|
+
"type": "string"
|
|
89428
|
+
},
|
|
89429
|
+
"description": "The message identifier",
|
|
89430
|
+
"required": true
|
|
89841
89431
|
}
|
|
89842
89432
|
],
|
|
89843
89433
|
"responses": {
|
|
@@ -89859,7 +89449,7 @@
|
|
|
89859
89449
|
"example": "Success message."
|
|
89860
89450
|
},
|
|
89861
89451
|
"data": {
|
|
89862
|
-
"$ref": "#/components/schemas/
|
|
89452
|
+
"$ref": "#/components/schemas/ThreadMessage"
|
|
89863
89453
|
}
|
|
89864
89454
|
},
|
|
89865
89455
|
"required": [
|
|
@@ -89873,13 +89463,13 @@
|
|
|
89873
89463
|
}
|
|
89874
89464
|
},
|
|
89875
89465
|
"tags": [
|
|
89876
|
-
"Threads"
|
|
89466
|
+
"Threads::Messages"
|
|
89877
89467
|
]
|
|
89878
89468
|
},
|
|
89879
89469
|
"put": {
|
|
89880
|
-
"operationId": "
|
|
89881
|
-
"summary": "Update Thread",
|
|
89882
|
-
"description": "Update Thread endpoint",
|
|
89470
|
+
"operationId": "UpdateThreadMessage",
|
|
89471
|
+
"summary": "Update Thread Message",
|
|
89472
|
+
"description": "Update Thread Message endpoint",
|
|
89883
89473
|
"parameters": [
|
|
89884
89474
|
{
|
|
89885
89475
|
"in": "path",
|
|
@@ -89889,6 +89479,15 @@
|
|
|
89889
89479
|
},
|
|
89890
89480
|
"description": "The thread identifier",
|
|
89891
89481
|
"required": true
|
|
89482
|
+
},
|
|
89483
|
+
{
|
|
89484
|
+
"in": "path",
|
|
89485
|
+
"name": "messageId",
|
|
89486
|
+
"schema": {
|
|
89487
|
+
"type": "string"
|
|
89488
|
+
},
|
|
89489
|
+
"description": "The message identifier",
|
|
89490
|
+
"required": true
|
|
89892
89491
|
}
|
|
89893
89492
|
],
|
|
89894
89493
|
"requestBody": {
|
|
@@ -89896,7 +89495,7 @@
|
|
|
89896
89495
|
"content": {
|
|
89897
89496
|
"application/json": {
|
|
89898
89497
|
"schema": {
|
|
89899
|
-
"$ref": "#/components/schemas/
|
|
89498
|
+
"$ref": "#/components/schemas/ThreadMessageUpdateInputs"
|
|
89900
89499
|
}
|
|
89901
89500
|
}
|
|
89902
89501
|
}
|
|
@@ -89920,7 +89519,7 @@
|
|
|
89920
89519
|
"example": "Success message."
|
|
89921
89520
|
},
|
|
89922
89521
|
"data": {
|
|
89923
|
-
"$ref": "#/components/schemas/
|
|
89522
|
+
"$ref": "#/components/schemas/ThreadMessage"
|
|
89924
89523
|
}
|
|
89925
89524
|
},
|
|
89926
89525
|
"required": [
|
|
@@ -89934,13 +89533,13 @@
|
|
|
89934
89533
|
}
|
|
89935
89534
|
},
|
|
89936
89535
|
"tags": [
|
|
89937
|
-
"Threads"
|
|
89536
|
+
"Threads::Messages"
|
|
89938
89537
|
]
|
|
89939
89538
|
},
|
|
89940
89539
|
"delete": {
|
|
89941
|
-
"operationId": "
|
|
89942
|
-
"summary": "Delete Thread",
|
|
89943
|
-
"description": "Delete Thread endpoint",
|
|
89540
|
+
"operationId": "DeleteThreadMessage",
|
|
89541
|
+
"summary": "Delete Thread Message",
|
|
89542
|
+
"description": "Delete Thread Message endpoint",
|
|
89944
89543
|
"parameters": [
|
|
89945
89544
|
{
|
|
89946
89545
|
"in": "path",
|
|
@@ -89950,6 +89549,15 @@
|
|
|
89950
89549
|
},
|
|
89951
89550
|
"description": "The thread identifier",
|
|
89952
89551
|
"required": true
|
|
89552
|
+
},
|
|
89553
|
+
{
|
|
89554
|
+
"in": "path",
|
|
89555
|
+
"name": "messageId",
|
|
89556
|
+
"schema": {
|
|
89557
|
+
"type": "string"
|
|
89558
|
+
},
|
|
89559
|
+
"description": "The message identifier",
|
|
89560
|
+
"required": true
|
|
89953
89561
|
}
|
|
89954
89562
|
],
|
|
89955
89563
|
"responses": {
|
|
@@ -89971,7 +89579,7 @@
|
|
|
89971
89579
|
"example": "Success message."
|
|
89972
89580
|
},
|
|
89973
89581
|
"data": {
|
|
89974
|
-
"
|
|
89582
|
+
"$ref": "#/components/schemas/ThreadMessage"
|
|
89975
89583
|
}
|
|
89976
89584
|
},
|
|
89977
89585
|
"required": [
|
|
@@ -89985,15 +89593,15 @@
|
|
|
89985
89593
|
}
|
|
89986
89594
|
},
|
|
89987
89595
|
"tags": [
|
|
89988
|
-
"Threads"
|
|
89596
|
+
"Threads::Messages"
|
|
89989
89597
|
]
|
|
89990
89598
|
}
|
|
89991
89599
|
},
|
|
89992
|
-
"/threads/{threadId}/
|
|
89600
|
+
"/threads/{threadId}/messages/{messageId}/files": {
|
|
89993
89601
|
"get": {
|
|
89994
|
-
"operationId": "
|
|
89995
|
-
"summary": "Get Thread
|
|
89996
|
-
"description": "Get Thread
|
|
89602
|
+
"operationId": "GetThreadMessageFiles",
|
|
89603
|
+
"summary": "Get Thread Message Files",
|
|
89604
|
+
"description": "Get Thread Message Files endpoint",
|
|
89997
89605
|
"parameters": [
|
|
89998
89606
|
{
|
|
89999
89607
|
"in": "path",
|
|
@@ -90005,45 +89613,13 @@
|
|
|
90005
89613
|
"required": true
|
|
90006
89614
|
},
|
|
90007
89615
|
{
|
|
90008
|
-
"in": "
|
|
90009
|
-
"name": "
|
|
90010
|
-
"schema": {
|
|
90011
|
-
"type": "integer",
|
|
90012
|
-
"minimum": 1,
|
|
90013
|
-
"default": 1
|
|
90014
|
-
},
|
|
90015
|
-
"description": "Page number",
|
|
90016
|
-
"required": false
|
|
90017
|
-
},
|
|
90018
|
-
{
|
|
90019
|
-
"in": "query",
|
|
90020
|
-
"name": "pageSize",
|
|
90021
|
-
"schema": {
|
|
90022
|
-
"type": "integer",
|
|
90023
|
-
"minimum": 1,
|
|
90024
|
-
"maximum": 100,
|
|
90025
|
-
"default": 25
|
|
90026
|
-
},
|
|
90027
|
-
"description": "Number of items per page",
|
|
90028
|
-
"required": false
|
|
90029
|
-
},
|
|
90030
|
-
{
|
|
90031
|
-
"in": "query",
|
|
90032
|
-
"name": "orderBy",
|
|
90033
|
-
"schema": {
|
|
90034
|
-
"type": "string"
|
|
90035
|
-
},
|
|
90036
|
-
"description": "Field to order by",
|
|
90037
|
-
"required": false
|
|
90038
|
-
},
|
|
90039
|
-
{
|
|
90040
|
-
"in": "query",
|
|
90041
|
-
"name": "search",
|
|
89616
|
+
"in": "path",
|
|
89617
|
+
"name": "messageId",
|
|
90042
89618
|
"schema": {
|
|
90043
89619
|
"type": "string"
|
|
90044
89620
|
},
|
|
90045
|
-
"description": "
|
|
90046
|
-
"required":
|
|
89621
|
+
"description": "The message identifier",
|
|
89622
|
+
"required": true
|
|
90047
89623
|
}
|
|
90048
89624
|
],
|
|
90049
89625
|
"responses": {
|
|
@@ -90067,12 +89643,8 @@
|
|
|
90067
89643
|
"data": {
|
|
90068
89644
|
"type": "array",
|
|
90069
89645
|
"items": {
|
|
90070
|
-
"$ref": "#/components/schemas/
|
|
89646
|
+
"$ref": "#/components/schemas/File"
|
|
90071
89647
|
}
|
|
90072
|
-
},
|
|
90073
|
-
"count": {
|
|
90074
|
-
"type": "integer",
|
|
90075
|
-
"example": 100
|
|
90076
89648
|
}
|
|
90077
89649
|
},
|
|
90078
89650
|
"required": [
|
|
@@ -90086,15 +89658,15 @@
|
|
|
90086
89658
|
}
|
|
90087
89659
|
},
|
|
90088
89660
|
"tags": [
|
|
90089
|
-
"Threads::
|
|
89661
|
+
"Threads::Messages::Files"
|
|
90090
89662
|
]
|
|
90091
89663
|
}
|
|
90092
89664
|
},
|
|
90093
|
-
"/threads/{threadId}/
|
|
90094
|
-
"
|
|
90095
|
-
"operationId": "
|
|
90096
|
-
"summary": "
|
|
90097
|
-
"description": "
|
|
89665
|
+
"/threads/{threadId}/messages/{messageId}/files/{fileId}": {
|
|
89666
|
+
"post": {
|
|
89667
|
+
"operationId": "CreateThreadMessageFile",
|
|
89668
|
+
"summary": "Create Thread Message File",
|
|
89669
|
+
"description": "Create Thread Message File endpoint",
|
|
90098
89670
|
"parameters": [
|
|
90099
89671
|
{
|
|
90100
89672
|
"in": "path",
|
|
@@ -90106,45 +89678,22 @@
|
|
|
90106
89678
|
"required": true
|
|
90107
89679
|
},
|
|
90108
89680
|
{
|
|
90109
|
-
"in": "
|
|
90110
|
-
"name": "
|
|
90111
|
-
"schema": {
|
|
90112
|
-
"type": "integer",
|
|
90113
|
-
"minimum": 1,
|
|
90114
|
-
"default": 1
|
|
90115
|
-
},
|
|
90116
|
-
"description": "Page number",
|
|
90117
|
-
"required": false
|
|
90118
|
-
},
|
|
90119
|
-
{
|
|
90120
|
-
"in": "query",
|
|
90121
|
-
"name": "pageSize",
|
|
90122
|
-
"schema": {
|
|
90123
|
-
"type": "integer",
|
|
90124
|
-
"minimum": 1,
|
|
90125
|
-
"maximum": 100,
|
|
90126
|
-
"default": 25
|
|
90127
|
-
},
|
|
90128
|
-
"description": "Number of items per page",
|
|
90129
|
-
"required": false
|
|
90130
|
-
},
|
|
90131
|
-
{
|
|
90132
|
-
"in": "query",
|
|
90133
|
-
"name": "orderBy",
|
|
89681
|
+
"in": "path",
|
|
89682
|
+
"name": "messageId",
|
|
90134
89683
|
"schema": {
|
|
90135
89684
|
"type": "string"
|
|
90136
89685
|
},
|
|
90137
|
-
"description": "
|
|
90138
|
-
"required":
|
|
89686
|
+
"description": "The message identifier",
|
|
89687
|
+
"required": true
|
|
90139
89688
|
},
|
|
90140
89689
|
{
|
|
90141
|
-
"in": "
|
|
90142
|
-
"name": "
|
|
89690
|
+
"in": "path",
|
|
89691
|
+
"name": "fileId",
|
|
90143
89692
|
"schema": {
|
|
90144
89693
|
"type": "string"
|
|
90145
89694
|
},
|
|
90146
|
-
"description": "
|
|
90147
|
-
"required":
|
|
89695
|
+
"description": "The file identifier",
|
|
89696
|
+
"required": true
|
|
90148
89697
|
}
|
|
90149
89698
|
],
|
|
90150
89699
|
"responses": {
|
|
@@ -90166,14 +89715,7 @@
|
|
|
90166
89715
|
"example": "Success message."
|
|
90167
89716
|
},
|
|
90168
89717
|
"data": {
|
|
90169
|
-
"
|
|
90170
|
-
"items": {
|
|
90171
|
-
"$ref": "#/components/schemas/ThreadMember"
|
|
90172
|
-
}
|
|
90173
|
-
},
|
|
90174
|
-
"count": {
|
|
90175
|
-
"type": "integer",
|
|
90176
|
-
"example": 100
|
|
89718
|
+
"$ref": "#/components/schemas/ThreadMessage"
|
|
90177
89719
|
}
|
|
90178
89720
|
},
|
|
90179
89721
|
"required": [
|
|
@@ -90187,15 +89729,13 @@
|
|
|
90187
89729
|
}
|
|
90188
89730
|
},
|
|
90189
89731
|
"tags": [
|
|
90190
|
-
"Threads::
|
|
89732
|
+
"Threads::Messages::Files"
|
|
90191
89733
|
]
|
|
90192
|
-
}
|
|
90193
|
-
|
|
90194
|
-
|
|
90195
|
-
|
|
90196
|
-
"
|
|
90197
|
-
"summary": "Update Thread Member",
|
|
90198
|
-
"description": "Update Thread Member endpoint",
|
|
89734
|
+
},
|
|
89735
|
+
"delete": {
|
|
89736
|
+
"operationId": "DeleteThreadMessageFile",
|
|
89737
|
+
"summary": "Delete Thread Message File",
|
|
89738
|
+
"description": "Delete Thread Message File endpoint",
|
|
90199
89739
|
"parameters": [
|
|
90200
89740
|
{
|
|
90201
89741
|
"in": "path",
|
|
@@ -90208,24 +89748,23 @@
|
|
|
90208
89748
|
},
|
|
90209
89749
|
{
|
|
90210
89750
|
"in": "path",
|
|
90211
|
-
"name": "
|
|
89751
|
+
"name": "messageId",
|
|
90212
89752
|
"schema": {
|
|
90213
89753
|
"type": "string"
|
|
90214
89754
|
},
|
|
90215
|
-
"description": "The
|
|
89755
|
+
"description": "The message identifier",
|
|
89756
|
+
"required": true
|
|
89757
|
+
},
|
|
89758
|
+
{
|
|
89759
|
+
"in": "path",
|
|
89760
|
+
"name": "fileId",
|
|
89761
|
+
"schema": {
|
|
89762
|
+
"type": "string"
|
|
89763
|
+
},
|
|
89764
|
+
"description": "The file identifier",
|
|
90216
89765
|
"required": true
|
|
90217
89766
|
}
|
|
90218
89767
|
],
|
|
90219
|
-
"requestBody": {
|
|
90220
|
-
"required": true,
|
|
90221
|
-
"content": {
|
|
90222
|
-
"application/json": {
|
|
90223
|
-
"schema": {
|
|
90224
|
-
"$ref": "#/components/schemas/ThreadMemberUpdateInputs"
|
|
90225
|
-
}
|
|
90226
|
-
}
|
|
90227
|
-
}
|
|
90228
|
-
},
|
|
90229
89768
|
"responses": {
|
|
90230
89769
|
"200": {
|
|
90231
89770
|
"description": "Successful response",
|
|
@@ -90245,7 +89784,7 @@
|
|
|
90245
89784
|
"example": "Success message."
|
|
90246
89785
|
},
|
|
90247
89786
|
"data": {
|
|
90248
|
-
"
|
|
89787
|
+
"nullable": true
|
|
90249
89788
|
}
|
|
90250
89789
|
},
|
|
90251
89790
|
"required": [
|
|
@@ -90259,15 +89798,15 @@
|
|
|
90259
89798
|
}
|
|
90260
89799
|
},
|
|
90261
89800
|
"tags": [
|
|
90262
|
-
"Threads::
|
|
89801
|
+
"Threads::Messages::Files"
|
|
90263
89802
|
]
|
|
90264
89803
|
}
|
|
90265
89804
|
},
|
|
90266
|
-
"/threads/{threadId}/messages": {
|
|
89805
|
+
"/threads/{threadId}/messages/{messageId}/images": {
|
|
90267
89806
|
"get": {
|
|
90268
|
-
"operationId": "
|
|
90269
|
-
"summary": "Get Thread
|
|
90270
|
-
"description": "Get Thread
|
|
89807
|
+
"operationId": "GetThreadMessageImages",
|
|
89808
|
+
"summary": "Get Thread Message Images",
|
|
89809
|
+
"description": "Get Thread Message Images endpoint",
|
|
90271
89810
|
"parameters": [
|
|
90272
89811
|
{
|
|
90273
89812
|
"in": "path",
|
|
@@ -90277,6 +89816,15 @@
|
|
|
90277
89816
|
},
|
|
90278
89817
|
"description": "The thread identifier",
|
|
90279
89818
|
"required": true
|
|
89819
|
+
},
|
|
89820
|
+
{
|
|
89821
|
+
"in": "path",
|
|
89822
|
+
"name": "messageId",
|
|
89823
|
+
"schema": {
|
|
89824
|
+
"type": "string"
|
|
89825
|
+
},
|
|
89826
|
+
"description": "The message identifier",
|
|
89827
|
+
"required": true
|
|
90280
89828
|
}
|
|
90281
89829
|
],
|
|
90282
89830
|
"responses": {
|
|
@@ -90300,7 +89848,7 @@
|
|
|
90300
89848
|
"data": {
|
|
90301
89849
|
"type": "array",
|
|
90302
89850
|
"items": {
|
|
90303
|
-
"$ref": "#/components/schemas/
|
|
89851
|
+
"$ref": "#/components/schemas/Image"
|
|
90304
89852
|
}
|
|
90305
89853
|
}
|
|
90306
89854
|
},
|
|
@@ -90315,13 +89863,15 @@
|
|
|
90315
89863
|
}
|
|
90316
89864
|
},
|
|
90317
89865
|
"tags": [
|
|
90318
|
-
"Threads::Messages"
|
|
89866
|
+
"Threads::Messages::Images"
|
|
90319
89867
|
]
|
|
90320
|
-
}
|
|
89868
|
+
}
|
|
89869
|
+
},
|
|
89870
|
+
"/threads/{threadId}/messages/{messageId}/images/{imageId}": {
|
|
90321
89871
|
"post": {
|
|
90322
|
-
"operationId": "
|
|
90323
|
-
"summary": "Create Thread Message",
|
|
90324
|
-
"description": "Create Thread Message endpoint",
|
|
89872
|
+
"operationId": "CreateThreadMessageImage",
|
|
89873
|
+
"summary": "Create Thread Message Image",
|
|
89874
|
+
"description": "Create Thread Message Image endpoint",
|
|
90325
89875
|
"parameters": [
|
|
90326
89876
|
{
|
|
90327
89877
|
"in": "path",
|
|
@@ -90331,18 +89881,26 @@
|
|
|
90331
89881
|
},
|
|
90332
89882
|
"description": "The thread identifier",
|
|
90333
89883
|
"required": true
|
|
89884
|
+
},
|
|
89885
|
+
{
|
|
89886
|
+
"in": "path",
|
|
89887
|
+
"name": "messageId",
|
|
89888
|
+
"schema": {
|
|
89889
|
+
"type": "string"
|
|
89890
|
+
},
|
|
89891
|
+
"description": "The message identifier",
|
|
89892
|
+
"required": true
|
|
89893
|
+
},
|
|
89894
|
+
{
|
|
89895
|
+
"in": "path",
|
|
89896
|
+
"name": "imageId",
|
|
89897
|
+
"schema": {
|
|
89898
|
+
"type": "string"
|
|
89899
|
+
},
|
|
89900
|
+
"description": "The image identifier",
|
|
89901
|
+
"required": true
|
|
90334
89902
|
}
|
|
90335
89903
|
],
|
|
90336
|
-
"requestBody": {
|
|
90337
|
-
"required": true,
|
|
90338
|
-
"content": {
|
|
90339
|
-
"application/json": {
|
|
90340
|
-
"schema": {
|
|
90341
|
-
"$ref": "#/components/schemas/ThreadMessageCreateInputs"
|
|
90342
|
-
}
|
|
90343
|
-
}
|
|
90344
|
-
}
|
|
90345
|
-
},
|
|
90346
89904
|
"responses": {
|
|
90347
89905
|
"200": {
|
|
90348
89906
|
"description": "Successful response",
|
|
@@ -90376,15 +89934,13 @@
|
|
|
90376
89934
|
}
|
|
90377
89935
|
},
|
|
90378
89936
|
"tags": [
|
|
90379
|
-
"Threads::Messages"
|
|
89937
|
+
"Threads::Messages::Images"
|
|
90380
89938
|
]
|
|
90381
|
-
}
|
|
90382
|
-
|
|
90383
|
-
|
|
90384
|
-
|
|
90385
|
-
"
|
|
90386
|
-
"summary": "Get Thread Messages Poll",
|
|
90387
|
-
"description": "Get Thread Messages Poll endpoint",
|
|
89939
|
+
},
|
|
89940
|
+
"delete": {
|
|
89941
|
+
"operationId": "DeleteThreadMessageImage",
|
|
89942
|
+
"summary": "Delete Thread Message Image",
|
|
89943
|
+
"description": "Delete Thread Message Image endpoint",
|
|
90388
89944
|
"parameters": [
|
|
90389
89945
|
{
|
|
90390
89946
|
"in": "path",
|
|
@@ -90396,12 +89952,21 @@
|
|
|
90396
89952
|
"required": true
|
|
90397
89953
|
},
|
|
90398
89954
|
{
|
|
90399
|
-
"in": "
|
|
90400
|
-
"name": "
|
|
89955
|
+
"in": "path",
|
|
89956
|
+
"name": "messageId",
|
|
90401
89957
|
"schema": {
|
|
90402
89958
|
"type": "string"
|
|
90403
89959
|
},
|
|
90404
|
-
"description": "
|
|
89960
|
+
"description": "The message identifier",
|
|
89961
|
+
"required": true
|
|
89962
|
+
},
|
|
89963
|
+
{
|
|
89964
|
+
"in": "path",
|
|
89965
|
+
"name": "imageId",
|
|
89966
|
+
"schema": {
|
|
89967
|
+
"type": "string"
|
|
89968
|
+
},
|
|
89969
|
+
"description": "The image identifier",
|
|
90405
89970
|
"required": true
|
|
90406
89971
|
}
|
|
90407
89972
|
],
|
|
@@ -90424,10 +89989,7 @@
|
|
|
90424
89989
|
"example": "Success message."
|
|
90425
89990
|
},
|
|
90426
89991
|
"data": {
|
|
90427
|
-
"
|
|
90428
|
-
"items": {
|
|
90429
|
-
"$ref": "#/components/schemas/ThreadMessage"
|
|
90430
|
-
}
|
|
89992
|
+
"nullable": true
|
|
90431
89993
|
}
|
|
90432
89994
|
},
|
|
90433
89995
|
"required": [
|
|
@@ -90441,15 +90003,15 @@
|
|
|
90441
90003
|
}
|
|
90442
90004
|
},
|
|
90443
90005
|
"tags": [
|
|
90444
|
-
"Threads::Messages"
|
|
90006
|
+
"Threads::Messages::Images"
|
|
90445
90007
|
]
|
|
90446
90008
|
}
|
|
90447
90009
|
},
|
|
90448
|
-
"/threads/{threadId}/messages/{messageId}": {
|
|
90010
|
+
"/threads/{threadId}/messages/{messageId}/reactions": {
|
|
90449
90011
|
"get": {
|
|
90450
|
-
"operationId": "
|
|
90451
|
-
"summary": "Get Thread Message",
|
|
90452
|
-
"description": "Get Thread Message endpoint",
|
|
90012
|
+
"operationId": "GetThreadMessageReactions",
|
|
90013
|
+
"summary": "Get Thread Message Reactions",
|
|
90014
|
+
"description": "Get Thread Message Reactions endpoint",
|
|
90453
90015
|
"parameters": [
|
|
90454
90016
|
{
|
|
90455
90017
|
"in": "path",
|
|
@@ -90489,7 +90051,10 @@
|
|
|
90489
90051
|
"example": "Success message."
|
|
90490
90052
|
},
|
|
90491
90053
|
"data": {
|
|
90492
|
-
"
|
|
90054
|
+
"type": "array",
|
|
90055
|
+
"items": {
|
|
90056
|
+
"$ref": "#/components/schemas/ThreadMessageReaction"
|
|
90057
|
+
}
|
|
90493
90058
|
}
|
|
90494
90059
|
},
|
|
90495
90060
|
"required": [
|
|
@@ -90503,13 +90068,13 @@
|
|
|
90503
90068
|
}
|
|
90504
90069
|
},
|
|
90505
90070
|
"tags": [
|
|
90506
|
-
"Threads::Messages"
|
|
90071
|
+
"Threads::Messages::Reactions"
|
|
90507
90072
|
]
|
|
90508
90073
|
},
|
|
90509
|
-
"
|
|
90510
|
-
"operationId": "
|
|
90511
|
-
"summary": "
|
|
90512
|
-
"description": "
|
|
90074
|
+
"post": {
|
|
90075
|
+
"operationId": "CreateThreadMessageReaction",
|
|
90076
|
+
"summary": "Create Thread Message Reaction",
|
|
90077
|
+
"description": "Create Thread Message Reaction endpoint",
|
|
90513
90078
|
"parameters": [
|
|
90514
90079
|
{
|
|
90515
90080
|
"in": "path",
|
|
@@ -90528,18 +90093,26 @@
|
|
|
90528
90093
|
},
|
|
90529
90094
|
"description": "The message identifier",
|
|
90530
90095
|
"required": true
|
|
90096
|
+
},
|
|
90097
|
+
{
|
|
90098
|
+
"in": "query",
|
|
90099
|
+
"name": "accountId",
|
|
90100
|
+
"schema": {
|
|
90101
|
+
"type": "string"
|
|
90102
|
+
},
|
|
90103
|
+
"description": "Filter by accountId",
|
|
90104
|
+
"required": true
|
|
90105
|
+
},
|
|
90106
|
+
{
|
|
90107
|
+
"in": "query",
|
|
90108
|
+
"name": "reaction",
|
|
90109
|
+
"schema": {
|
|
90110
|
+
"$ref": "#/components/schemas/ThreadMessageReactionCreateInputs"
|
|
90111
|
+
},
|
|
90112
|
+
"description": "Filter by reaction",
|
|
90113
|
+
"required": true
|
|
90531
90114
|
}
|
|
90532
90115
|
],
|
|
90533
|
-
"requestBody": {
|
|
90534
|
-
"required": true,
|
|
90535
|
-
"content": {
|
|
90536
|
-
"application/json": {
|
|
90537
|
-
"schema": {
|
|
90538
|
-
"$ref": "#/components/schemas/ThreadMessageUpdateInputs"
|
|
90539
|
-
}
|
|
90540
|
-
}
|
|
90541
|
-
}
|
|
90542
|
-
},
|
|
90543
90116
|
"responses": {
|
|
90544
90117
|
"200": {
|
|
90545
90118
|
"description": "Successful response",
|
|
@@ -90559,7 +90132,7 @@
|
|
|
90559
90132
|
"example": "Success message."
|
|
90560
90133
|
},
|
|
90561
90134
|
"data": {
|
|
90562
|
-
"$ref": "#/components/schemas/
|
|
90135
|
+
"$ref": "#/components/schemas/ThreadMessageReaction"
|
|
90563
90136
|
}
|
|
90564
90137
|
},
|
|
90565
90138
|
"required": [
|
|
@@ -90573,13 +90146,15 @@
|
|
|
90573
90146
|
}
|
|
90574
90147
|
},
|
|
90575
90148
|
"tags": [
|
|
90576
|
-
"Threads::Messages"
|
|
90149
|
+
"Threads::Messages::Reactions"
|
|
90577
90150
|
]
|
|
90578
|
-
}
|
|
90151
|
+
}
|
|
90152
|
+
},
|
|
90153
|
+
"/threads/{threadId}/messages/{messageId}/reactions/{reactionId}": {
|
|
90579
90154
|
"delete": {
|
|
90580
|
-
"operationId": "
|
|
90581
|
-
"summary": "Delete Thread Message",
|
|
90582
|
-
"description": "Delete Thread Message endpoint",
|
|
90155
|
+
"operationId": "DeleteThreadMessageReaction",
|
|
90156
|
+
"summary": "Delete Thread Message Reaction",
|
|
90157
|
+
"description": "Delete Thread Message Reaction endpoint",
|
|
90583
90158
|
"parameters": [
|
|
90584
90159
|
{
|
|
90585
90160
|
"in": "path",
|
|
@@ -90598,6 +90173,15 @@
|
|
|
90598
90173
|
},
|
|
90599
90174
|
"description": "The message identifier",
|
|
90600
90175
|
"required": true
|
|
90176
|
+
},
|
|
90177
|
+
{
|
|
90178
|
+
"in": "path",
|
|
90179
|
+
"name": "reactionId",
|
|
90180
|
+
"schema": {
|
|
90181
|
+
"type": "string"
|
|
90182
|
+
},
|
|
90183
|
+
"description": "The reaction identifier",
|
|
90184
|
+
"required": true
|
|
90601
90185
|
}
|
|
90602
90186
|
],
|
|
90603
90187
|
"responses": {
|
|
@@ -90619,7 +90203,7 @@
|
|
|
90619
90203
|
"example": "Success message."
|
|
90620
90204
|
},
|
|
90621
90205
|
"data": {
|
|
90622
|
-
"
|
|
90206
|
+
"nullable": true
|
|
90623
90207
|
}
|
|
90624
90208
|
},
|
|
90625
90209
|
"required": [
|
|
@@ -90633,15 +90217,15 @@
|
|
|
90633
90217
|
}
|
|
90634
90218
|
},
|
|
90635
90219
|
"tags": [
|
|
90636
|
-
"Threads::Messages"
|
|
90220
|
+
"Threads::Messages::Reactions"
|
|
90637
90221
|
]
|
|
90638
90222
|
}
|
|
90639
90223
|
},
|
|
90640
|
-
"/threads/{threadId}/messages/{messageId}/
|
|
90224
|
+
"/threads/{threadId}/messages/{messageId}/videos": {
|
|
90641
90225
|
"get": {
|
|
90642
|
-
"operationId": "
|
|
90643
|
-
"summary": "Get Thread Message
|
|
90644
|
-
"description": "Get Thread Message
|
|
90226
|
+
"operationId": "GetThreadMessageVideos",
|
|
90227
|
+
"summary": "Get Thread Message Videos",
|
|
90228
|
+
"description": "Get Thread Message Videos endpoint",
|
|
90645
90229
|
"parameters": [
|
|
90646
90230
|
{
|
|
90647
90231
|
"in": "path",
|
|
@@ -90683,7 +90267,7 @@
|
|
|
90683
90267
|
"data": {
|
|
90684
90268
|
"type": "array",
|
|
90685
90269
|
"items": {
|
|
90686
|
-
"$ref": "#/components/schemas/
|
|
90270
|
+
"$ref": "#/components/schemas/Video"
|
|
90687
90271
|
}
|
|
90688
90272
|
}
|
|
90689
90273
|
},
|
|
@@ -90698,15 +90282,15 @@
|
|
|
90698
90282
|
}
|
|
90699
90283
|
},
|
|
90700
90284
|
"tags": [
|
|
90701
|
-
"Threads::Messages::
|
|
90285
|
+
"Threads::Messages::Videos"
|
|
90702
90286
|
]
|
|
90703
90287
|
}
|
|
90704
90288
|
},
|
|
90705
|
-
"/threads/{threadId}/messages/{messageId}/
|
|
90289
|
+
"/threads/{threadId}/messages/{messageId}/videos/{videoId}": {
|
|
90706
90290
|
"post": {
|
|
90707
|
-
"operationId": "
|
|
90708
|
-
"summary": "Create Thread Message
|
|
90709
|
-
"description": "Create Thread Message
|
|
90291
|
+
"operationId": "CreateThreadMessageVideo",
|
|
90292
|
+
"summary": "Create Thread Message Video",
|
|
90293
|
+
"description": "Create Thread Message Video endpoint",
|
|
90710
90294
|
"parameters": [
|
|
90711
90295
|
{
|
|
90712
90296
|
"in": "path",
|
|
@@ -90728,11 +90312,11 @@
|
|
|
90728
90312
|
},
|
|
90729
90313
|
{
|
|
90730
90314
|
"in": "path",
|
|
90731
|
-
"name": "
|
|
90315
|
+
"name": "videoId",
|
|
90732
90316
|
"schema": {
|
|
90733
90317
|
"type": "string"
|
|
90734
90318
|
},
|
|
90735
|
-
"description": "The
|
|
90319
|
+
"description": "The video identifier",
|
|
90736
90320
|
"required": true
|
|
90737
90321
|
}
|
|
90738
90322
|
],
|
|
@@ -90769,13 +90353,13 @@
|
|
|
90769
90353
|
}
|
|
90770
90354
|
},
|
|
90771
90355
|
"tags": [
|
|
90772
|
-
"Threads::Messages::
|
|
90356
|
+
"Threads::Messages::Videos"
|
|
90773
90357
|
]
|
|
90774
90358
|
},
|
|
90775
90359
|
"delete": {
|
|
90776
|
-
"operationId": "
|
|
90777
|
-
"summary": "Delete Thread Message
|
|
90778
|
-
"description": "Delete Thread Message
|
|
90360
|
+
"operationId": "DeleteThreadMessageVideo",
|
|
90361
|
+
"summary": "Delete Thread Message Video",
|
|
90362
|
+
"description": "Delete Thread Message Video endpoint",
|
|
90779
90363
|
"parameters": [
|
|
90780
90364
|
{
|
|
90781
90365
|
"in": "path",
|
|
@@ -90797,11 +90381,11 @@
|
|
|
90797
90381
|
},
|
|
90798
90382
|
{
|
|
90799
90383
|
"in": "path",
|
|
90800
|
-
"name": "
|
|
90384
|
+
"name": "videoId",
|
|
90801
90385
|
"schema": {
|
|
90802
90386
|
"type": "string"
|
|
90803
90387
|
},
|
|
90804
|
-
"description": "The
|
|
90388
|
+
"description": "The video identifier",
|
|
90805
90389
|
"required": true
|
|
90806
90390
|
}
|
|
90807
90391
|
],
|
|
@@ -90838,33 +90422,69 @@
|
|
|
90838
90422
|
}
|
|
90839
90423
|
},
|
|
90840
90424
|
"tags": [
|
|
90841
|
-
"Threads::Messages::
|
|
90425
|
+
"Threads::Messages::Videos"
|
|
90842
90426
|
]
|
|
90843
90427
|
}
|
|
90844
90428
|
},
|
|
90845
|
-
"/
|
|
90429
|
+
"/tiers": {
|
|
90846
90430
|
"get": {
|
|
90847
|
-
"operationId": "
|
|
90848
|
-
"summary": "Get
|
|
90849
|
-
"description": "Get
|
|
90431
|
+
"operationId": "GetTiers",
|
|
90432
|
+
"summary": "Get Tiers",
|
|
90433
|
+
"description": "Get Tiers endpoint",
|
|
90850
90434
|
"parameters": [
|
|
90851
90435
|
{
|
|
90852
|
-
"in": "
|
|
90853
|
-
"name": "
|
|
90436
|
+
"in": "query",
|
|
90437
|
+
"name": "type",
|
|
90438
|
+
"schema": {
|
|
90439
|
+
"type": "string",
|
|
90440
|
+
"enum": [
|
|
90441
|
+
"external",
|
|
90442
|
+
"internal"
|
|
90443
|
+
]
|
|
90444
|
+
},
|
|
90445
|
+
"description": "Filter by type",
|
|
90446
|
+
"required": false
|
|
90447
|
+
},
|
|
90448
|
+
{
|
|
90449
|
+
"in": "query",
|
|
90450
|
+
"name": "page",
|
|
90451
|
+
"schema": {
|
|
90452
|
+
"type": "integer",
|
|
90453
|
+
"minimum": 1,
|
|
90454
|
+
"default": 1
|
|
90455
|
+
},
|
|
90456
|
+
"description": "Page number",
|
|
90457
|
+
"required": false
|
|
90458
|
+
},
|
|
90459
|
+
{
|
|
90460
|
+
"in": "query",
|
|
90461
|
+
"name": "pageSize",
|
|
90462
|
+
"schema": {
|
|
90463
|
+
"type": "integer",
|
|
90464
|
+
"minimum": 1,
|
|
90465
|
+
"maximum": 100,
|
|
90466
|
+
"default": 25
|
|
90467
|
+
},
|
|
90468
|
+
"description": "Number of items per page",
|
|
90469
|
+
"required": false
|
|
90470
|
+
},
|
|
90471
|
+
{
|
|
90472
|
+
"in": "query",
|
|
90473
|
+
"name": "orderBy",
|
|
90854
90474
|
"schema": {
|
|
90855
90475
|
"type": "string"
|
|
90856
90476
|
},
|
|
90857
|
-
"description": "
|
|
90858
|
-
"required":
|
|
90477
|
+
"description": "Field to order by",
|
|
90478
|
+
"required": false
|
|
90859
90479
|
},
|
|
90860
90480
|
{
|
|
90861
|
-
"in": "
|
|
90862
|
-
"name": "
|
|
90481
|
+
"in": "query",
|
|
90482
|
+
"name": "search",
|
|
90863
90483
|
"schema": {
|
|
90864
90484
|
"type": "string"
|
|
90865
90485
|
},
|
|
90866
|
-
"description": "
|
|
90867
|
-
"required":
|
|
90486
|
+
"description": "Search query",
|
|
90487
|
+
"required": false
|
|
90868
90488
|
}
|
|
90869
90489
|
],
|
|
90870
90490
|
"responses": {
|
|
@@ -90888,8 +90508,12 @@
|
|
|
90888
90508
|
"data": {
|
|
90889
90509
|
"type": "array",
|
|
90890
90510
|
"items": {
|
|
90891
|
-
"$ref": "#/components/schemas/
|
|
90511
|
+
"$ref": "#/components/schemas/Tier"
|
|
90892
90512
|
}
|
|
90513
|
+
},
|
|
90514
|
+
"count": {
|
|
90515
|
+
"type": "integer",
|
|
90516
|
+
"example": 100
|
|
90893
90517
|
}
|
|
90894
90518
|
},
|
|
90895
90519
|
"required": [
|
|
@@ -90903,44 +90527,23 @@
|
|
|
90903
90527
|
}
|
|
90904
90528
|
},
|
|
90905
90529
|
"tags": [
|
|
90906
|
-
"
|
|
90530
|
+
"Tiers"
|
|
90907
90531
|
]
|
|
90908
|
-
}
|
|
90909
|
-
},
|
|
90910
|
-
"/threads/{threadId}/messages/{messageId}/images/{imageId}": {
|
|
90532
|
+
},
|
|
90911
90533
|
"post": {
|
|
90912
|
-
"operationId": "
|
|
90913
|
-
"summary": "Create
|
|
90914
|
-
"description": "Create
|
|
90915
|
-
"
|
|
90916
|
-
|
|
90917
|
-
|
|
90918
|
-
"
|
|
90919
|
-
|
|
90920
|
-
|
|
90921
|
-
|
|
90922
|
-
|
|
90923
|
-
"required": true
|
|
90924
|
-
},
|
|
90925
|
-
{
|
|
90926
|
-
"in": "path",
|
|
90927
|
-
"name": "messageId",
|
|
90928
|
-
"schema": {
|
|
90929
|
-
"type": "string"
|
|
90930
|
-
},
|
|
90931
|
-
"description": "The message identifier",
|
|
90932
|
-
"required": true
|
|
90933
|
-
},
|
|
90934
|
-
{
|
|
90935
|
-
"in": "path",
|
|
90936
|
-
"name": "imageId",
|
|
90937
|
-
"schema": {
|
|
90938
|
-
"type": "string"
|
|
90939
|
-
},
|
|
90940
|
-
"description": "The image identifier",
|
|
90941
|
-
"required": true
|
|
90534
|
+
"operationId": "CreateTier",
|
|
90535
|
+
"summary": "Create Tier",
|
|
90536
|
+
"description": "Create Tier endpoint",
|
|
90537
|
+
"requestBody": {
|
|
90538
|
+
"required": true,
|
|
90539
|
+
"content": {
|
|
90540
|
+
"application/json": {
|
|
90541
|
+
"schema": {
|
|
90542
|
+
"$ref": "#/components/schemas/TierCreateInputs"
|
|
90543
|
+
}
|
|
90544
|
+
}
|
|
90942
90545
|
}
|
|
90943
|
-
|
|
90546
|
+
},
|
|
90944
90547
|
"responses": {
|
|
90945
90548
|
"200": {
|
|
90946
90549
|
"description": "Successful response",
|
|
@@ -90960,7 +90563,7 @@
|
|
|
90960
90563
|
"example": "Success message."
|
|
90961
90564
|
},
|
|
90962
90565
|
"data": {
|
|
90963
|
-
"$ref": "#/components/schemas/
|
|
90566
|
+
"$ref": "#/components/schemas/Tier"
|
|
90964
90567
|
}
|
|
90965
90568
|
},
|
|
90966
90569
|
"required": [
|
|
@@ -90974,666 +90577,23 @@
|
|
|
90974
90577
|
}
|
|
90975
90578
|
},
|
|
90976
90579
|
"tags": [
|
|
90977
|
-
"
|
|
90580
|
+
"Tiers"
|
|
90978
90581
|
]
|
|
90979
|
-
}
|
|
90980
|
-
|
|
90981
|
-
|
|
90982
|
-
|
|
90983
|
-
"
|
|
90582
|
+
}
|
|
90583
|
+
},
|
|
90584
|
+
"/tiers/{tierId}": {
|
|
90585
|
+
"get": {
|
|
90586
|
+
"operationId": "GetTier",
|
|
90587
|
+
"summary": "Get Tier",
|
|
90588
|
+
"description": "Get Tier endpoint",
|
|
90984
90589
|
"parameters": [
|
|
90985
90590
|
{
|
|
90986
90591
|
"in": "path",
|
|
90987
|
-
"name": "
|
|
90988
|
-
"schema": {
|
|
90989
|
-
"type": "string"
|
|
90990
|
-
},
|
|
90991
|
-
"description": "The thread identifier",
|
|
90992
|
-
"required": true
|
|
90993
|
-
},
|
|
90994
|
-
{
|
|
90995
|
-
"in": "path",
|
|
90996
|
-
"name": "messageId",
|
|
90997
|
-
"schema": {
|
|
90998
|
-
"type": "string"
|
|
90999
|
-
},
|
|
91000
|
-
"description": "The message identifier",
|
|
91001
|
-
"required": true
|
|
91002
|
-
},
|
|
91003
|
-
{
|
|
91004
|
-
"in": "path",
|
|
91005
|
-
"name": "imageId",
|
|
90592
|
+
"name": "tierId",
|
|
91006
90593
|
"schema": {
|
|
91007
90594
|
"type": "string"
|
|
91008
90595
|
},
|
|
91009
|
-
"description": "The
|
|
91010
|
-
"required": true
|
|
91011
|
-
}
|
|
91012
|
-
],
|
|
91013
|
-
"responses": {
|
|
91014
|
-
"200": {
|
|
91015
|
-
"description": "Successful response",
|
|
91016
|
-
"content": {
|
|
91017
|
-
"application/json": {
|
|
91018
|
-
"schema": {
|
|
91019
|
-
"type": "object",
|
|
91020
|
-
"properties": {
|
|
91021
|
-
"status": {
|
|
91022
|
-
"type": "string",
|
|
91023
|
-
"enum": [
|
|
91024
|
-
"ok"
|
|
91025
|
-
]
|
|
91026
|
-
},
|
|
91027
|
-
"message": {
|
|
91028
|
-
"type": "string",
|
|
91029
|
-
"example": "Success message."
|
|
91030
|
-
},
|
|
91031
|
-
"data": {
|
|
91032
|
-
"nullable": true
|
|
91033
|
-
}
|
|
91034
|
-
},
|
|
91035
|
-
"required": [
|
|
91036
|
-
"status",
|
|
91037
|
-
"message",
|
|
91038
|
-
"data"
|
|
91039
|
-
]
|
|
91040
|
-
}
|
|
91041
|
-
}
|
|
91042
|
-
}
|
|
91043
|
-
}
|
|
91044
|
-
},
|
|
91045
|
-
"tags": [
|
|
91046
|
-
"Threads::Messages::Images"
|
|
91047
|
-
]
|
|
91048
|
-
}
|
|
91049
|
-
},
|
|
91050
|
-
"/threads/{threadId}/messages/{messageId}/reactions": {
|
|
91051
|
-
"get": {
|
|
91052
|
-
"operationId": "GetThreadMessageReactions",
|
|
91053
|
-
"summary": "Get Thread Message Reactions",
|
|
91054
|
-
"description": "Get Thread Message Reactions endpoint",
|
|
91055
|
-
"parameters": [
|
|
91056
|
-
{
|
|
91057
|
-
"in": "path",
|
|
91058
|
-
"name": "threadId",
|
|
91059
|
-
"schema": {
|
|
91060
|
-
"type": "string"
|
|
91061
|
-
},
|
|
91062
|
-
"description": "The thread identifier",
|
|
91063
|
-
"required": true
|
|
91064
|
-
},
|
|
91065
|
-
{
|
|
91066
|
-
"in": "path",
|
|
91067
|
-
"name": "messageId",
|
|
91068
|
-
"schema": {
|
|
91069
|
-
"type": "string"
|
|
91070
|
-
},
|
|
91071
|
-
"description": "The message identifier",
|
|
91072
|
-
"required": true
|
|
91073
|
-
}
|
|
91074
|
-
],
|
|
91075
|
-
"responses": {
|
|
91076
|
-
"200": {
|
|
91077
|
-
"description": "Successful response",
|
|
91078
|
-
"content": {
|
|
91079
|
-
"application/json": {
|
|
91080
|
-
"schema": {
|
|
91081
|
-
"type": "object",
|
|
91082
|
-
"properties": {
|
|
91083
|
-
"status": {
|
|
91084
|
-
"type": "string",
|
|
91085
|
-
"enum": [
|
|
91086
|
-
"ok"
|
|
91087
|
-
]
|
|
91088
|
-
},
|
|
91089
|
-
"message": {
|
|
91090
|
-
"type": "string",
|
|
91091
|
-
"example": "Success message."
|
|
91092
|
-
},
|
|
91093
|
-
"data": {
|
|
91094
|
-
"type": "array",
|
|
91095
|
-
"items": {
|
|
91096
|
-
"$ref": "#/components/schemas/ThreadMessageReaction"
|
|
91097
|
-
}
|
|
91098
|
-
}
|
|
91099
|
-
},
|
|
91100
|
-
"required": [
|
|
91101
|
-
"status",
|
|
91102
|
-
"message",
|
|
91103
|
-
"data"
|
|
91104
|
-
]
|
|
91105
|
-
}
|
|
91106
|
-
}
|
|
91107
|
-
}
|
|
91108
|
-
}
|
|
91109
|
-
},
|
|
91110
|
-
"tags": [
|
|
91111
|
-
"Threads::Messages::Reactions"
|
|
91112
|
-
]
|
|
91113
|
-
},
|
|
91114
|
-
"post": {
|
|
91115
|
-
"operationId": "CreateThreadMessageReaction",
|
|
91116
|
-
"summary": "Create Thread Message Reaction",
|
|
91117
|
-
"description": "Create Thread Message Reaction endpoint",
|
|
91118
|
-
"parameters": [
|
|
91119
|
-
{
|
|
91120
|
-
"in": "path",
|
|
91121
|
-
"name": "threadId",
|
|
91122
|
-
"schema": {
|
|
91123
|
-
"type": "string"
|
|
91124
|
-
},
|
|
91125
|
-
"description": "The thread identifier",
|
|
91126
|
-
"required": true
|
|
91127
|
-
},
|
|
91128
|
-
{
|
|
91129
|
-
"in": "path",
|
|
91130
|
-
"name": "messageId",
|
|
91131
|
-
"schema": {
|
|
91132
|
-
"type": "string"
|
|
91133
|
-
},
|
|
91134
|
-
"description": "The message identifier",
|
|
91135
|
-
"required": true
|
|
91136
|
-
},
|
|
91137
|
-
{
|
|
91138
|
-
"in": "query",
|
|
91139
|
-
"name": "accountId",
|
|
91140
|
-
"schema": {
|
|
91141
|
-
"type": "string"
|
|
91142
|
-
},
|
|
91143
|
-
"description": "Filter by accountId",
|
|
91144
|
-
"required": true
|
|
91145
|
-
},
|
|
91146
|
-
{
|
|
91147
|
-
"in": "query",
|
|
91148
|
-
"name": "reaction",
|
|
91149
|
-
"schema": {
|
|
91150
|
-
"$ref": "#/components/schemas/ThreadMessageReactionCreateInputs"
|
|
91151
|
-
},
|
|
91152
|
-
"description": "Filter by reaction",
|
|
91153
|
-
"required": true
|
|
91154
|
-
}
|
|
91155
|
-
],
|
|
91156
|
-
"responses": {
|
|
91157
|
-
"200": {
|
|
91158
|
-
"description": "Successful response",
|
|
91159
|
-
"content": {
|
|
91160
|
-
"application/json": {
|
|
91161
|
-
"schema": {
|
|
91162
|
-
"type": "object",
|
|
91163
|
-
"properties": {
|
|
91164
|
-
"status": {
|
|
91165
|
-
"type": "string",
|
|
91166
|
-
"enum": [
|
|
91167
|
-
"ok"
|
|
91168
|
-
]
|
|
91169
|
-
},
|
|
91170
|
-
"message": {
|
|
91171
|
-
"type": "string",
|
|
91172
|
-
"example": "Success message."
|
|
91173
|
-
},
|
|
91174
|
-
"data": {
|
|
91175
|
-
"$ref": "#/components/schemas/ThreadMessageReaction"
|
|
91176
|
-
}
|
|
91177
|
-
},
|
|
91178
|
-
"required": [
|
|
91179
|
-
"status",
|
|
91180
|
-
"message",
|
|
91181
|
-
"data"
|
|
91182
|
-
]
|
|
91183
|
-
}
|
|
91184
|
-
}
|
|
91185
|
-
}
|
|
91186
|
-
}
|
|
91187
|
-
},
|
|
91188
|
-
"tags": [
|
|
91189
|
-
"Threads::Messages::Reactions"
|
|
91190
|
-
]
|
|
91191
|
-
}
|
|
91192
|
-
},
|
|
91193
|
-
"/threads/{threadId}/messages/{messageId}/reactions/{reactionId}": {
|
|
91194
|
-
"delete": {
|
|
91195
|
-
"operationId": "DeleteThreadMessageReaction",
|
|
91196
|
-
"summary": "Delete Thread Message Reaction",
|
|
91197
|
-
"description": "Delete Thread Message Reaction endpoint",
|
|
91198
|
-
"parameters": [
|
|
91199
|
-
{
|
|
91200
|
-
"in": "path",
|
|
91201
|
-
"name": "threadId",
|
|
91202
|
-
"schema": {
|
|
91203
|
-
"type": "string"
|
|
91204
|
-
},
|
|
91205
|
-
"description": "The thread identifier",
|
|
91206
|
-
"required": true
|
|
91207
|
-
},
|
|
91208
|
-
{
|
|
91209
|
-
"in": "path",
|
|
91210
|
-
"name": "messageId",
|
|
91211
|
-
"schema": {
|
|
91212
|
-
"type": "string"
|
|
91213
|
-
},
|
|
91214
|
-
"description": "The message identifier",
|
|
91215
|
-
"required": true
|
|
91216
|
-
},
|
|
91217
|
-
{
|
|
91218
|
-
"in": "path",
|
|
91219
|
-
"name": "reactionId",
|
|
91220
|
-
"schema": {
|
|
91221
|
-
"type": "string"
|
|
91222
|
-
},
|
|
91223
|
-
"description": "The reaction identifier",
|
|
91224
|
-
"required": true
|
|
91225
|
-
}
|
|
91226
|
-
],
|
|
91227
|
-
"responses": {
|
|
91228
|
-
"200": {
|
|
91229
|
-
"description": "Successful response",
|
|
91230
|
-
"content": {
|
|
91231
|
-
"application/json": {
|
|
91232
|
-
"schema": {
|
|
91233
|
-
"type": "object",
|
|
91234
|
-
"properties": {
|
|
91235
|
-
"status": {
|
|
91236
|
-
"type": "string",
|
|
91237
|
-
"enum": [
|
|
91238
|
-
"ok"
|
|
91239
|
-
]
|
|
91240
|
-
},
|
|
91241
|
-
"message": {
|
|
91242
|
-
"type": "string",
|
|
91243
|
-
"example": "Success message."
|
|
91244
|
-
},
|
|
91245
|
-
"data": {
|
|
91246
|
-
"nullable": true
|
|
91247
|
-
}
|
|
91248
|
-
},
|
|
91249
|
-
"required": [
|
|
91250
|
-
"status",
|
|
91251
|
-
"message",
|
|
91252
|
-
"data"
|
|
91253
|
-
]
|
|
91254
|
-
}
|
|
91255
|
-
}
|
|
91256
|
-
}
|
|
91257
|
-
}
|
|
91258
|
-
},
|
|
91259
|
-
"tags": [
|
|
91260
|
-
"Threads::Messages::Reactions"
|
|
91261
|
-
]
|
|
91262
|
-
}
|
|
91263
|
-
},
|
|
91264
|
-
"/threads/{threadId}/messages/{messageId}/videos": {
|
|
91265
|
-
"get": {
|
|
91266
|
-
"operationId": "GetThreadMessageVideos",
|
|
91267
|
-
"summary": "Get Thread Message Videos",
|
|
91268
|
-
"description": "Get Thread Message Videos endpoint",
|
|
91269
|
-
"parameters": [
|
|
91270
|
-
{
|
|
91271
|
-
"in": "path",
|
|
91272
|
-
"name": "threadId",
|
|
91273
|
-
"schema": {
|
|
91274
|
-
"type": "string"
|
|
91275
|
-
},
|
|
91276
|
-
"description": "The thread identifier",
|
|
91277
|
-
"required": true
|
|
91278
|
-
},
|
|
91279
|
-
{
|
|
91280
|
-
"in": "path",
|
|
91281
|
-
"name": "messageId",
|
|
91282
|
-
"schema": {
|
|
91283
|
-
"type": "string"
|
|
91284
|
-
},
|
|
91285
|
-
"description": "The message identifier",
|
|
91286
|
-
"required": true
|
|
91287
|
-
}
|
|
91288
|
-
],
|
|
91289
|
-
"responses": {
|
|
91290
|
-
"200": {
|
|
91291
|
-
"description": "Successful response",
|
|
91292
|
-
"content": {
|
|
91293
|
-
"application/json": {
|
|
91294
|
-
"schema": {
|
|
91295
|
-
"type": "object",
|
|
91296
|
-
"properties": {
|
|
91297
|
-
"status": {
|
|
91298
|
-
"type": "string",
|
|
91299
|
-
"enum": [
|
|
91300
|
-
"ok"
|
|
91301
|
-
]
|
|
91302
|
-
},
|
|
91303
|
-
"message": {
|
|
91304
|
-
"type": "string",
|
|
91305
|
-
"example": "Success message."
|
|
91306
|
-
},
|
|
91307
|
-
"data": {
|
|
91308
|
-
"type": "array",
|
|
91309
|
-
"items": {
|
|
91310
|
-
"$ref": "#/components/schemas/Video"
|
|
91311
|
-
}
|
|
91312
|
-
}
|
|
91313
|
-
},
|
|
91314
|
-
"required": [
|
|
91315
|
-
"status",
|
|
91316
|
-
"message",
|
|
91317
|
-
"data"
|
|
91318
|
-
]
|
|
91319
|
-
}
|
|
91320
|
-
}
|
|
91321
|
-
}
|
|
91322
|
-
}
|
|
91323
|
-
},
|
|
91324
|
-
"tags": [
|
|
91325
|
-
"Threads::Messages::Videos"
|
|
91326
|
-
]
|
|
91327
|
-
}
|
|
91328
|
-
},
|
|
91329
|
-
"/threads/{threadId}/messages/{messageId}/videos/{videoId}": {
|
|
91330
|
-
"post": {
|
|
91331
|
-
"operationId": "CreateThreadMessageVideo",
|
|
91332
|
-
"summary": "Create Thread Message Video",
|
|
91333
|
-
"description": "Create Thread Message Video endpoint",
|
|
91334
|
-
"parameters": [
|
|
91335
|
-
{
|
|
91336
|
-
"in": "path",
|
|
91337
|
-
"name": "threadId",
|
|
91338
|
-
"schema": {
|
|
91339
|
-
"type": "string"
|
|
91340
|
-
},
|
|
91341
|
-
"description": "The thread identifier",
|
|
91342
|
-
"required": true
|
|
91343
|
-
},
|
|
91344
|
-
{
|
|
91345
|
-
"in": "path",
|
|
91346
|
-
"name": "messageId",
|
|
91347
|
-
"schema": {
|
|
91348
|
-
"type": "string"
|
|
91349
|
-
},
|
|
91350
|
-
"description": "The message identifier",
|
|
91351
|
-
"required": true
|
|
91352
|
-
},
|
|
91353
|
-
{
|
|
91354
|
-
"in": "path",
|
|
91355
|
-
"name": "videoId",
|
|
91356
|
-
"schema": {
|
|
91357
|
-
"type": "string"
|
|
91358
|
-
},
|
|
91359
|
-
"description": "The video identifier",
|
|
91360
|
-
"required": true
|
|
91361
|
-
}
|
|
91362
|
-
],
|
|
91363
|
-
"responses": {
|
|
91364
|
-
"200": {
|
|
91365
|
-
"description": "Successful response",
|
|
91366
|
-
"content": {
|
|
91367
|
-
"application/json": {
|
|
91368
|
-
"schema": {
|
|
91369
|
-
"type": "object",
|
|
91370
|
-
"properties": {
|
|
91371
|
-
"status": {
|
|
91372
|
-
"type": "string",
|
|
91373
|
-
"enum": [
|
|
91374
|
-
"ok"
|
|
91375
|
-
]
|
|
91376
|
-
},
|
|
91377
|
-
"message": {
|
|
91378
|
-
"type": "string",
|
|
91379
|
-
"example": "Success message."
|
|
91380
|
-
},
|
|
91381
|
-
"data": {
|
|
91382
|
-
"$ref": "#/components/schemas/ThreadMessage"
|
|
91383
|
-
}
|
|
91384
|
-
},
|
|
91385
|
-
"required": [
|
|
91386
|
-
"status",
|
|
91387
|
-
"message",
|
|
91388
|
-
"data"
|
|
91389
|
-
]
|
|
91390
|
-
}
|
|
91391
|
-
}
|
|
91392
|
-
}
|
|
91393
|
-
}
|
|
91394
|
-
},
|
|
91395
|
-
"tags": [
|
|
91396
|
-
"Threads::Messages::Videos"
|
|
91397
|
-
]
|
|
91398
|
-
},
|
|
91399
|
-
"delete": {
|
|
91400
|
-
"operationId": "DeleteThreadMessageVideo",
|
|
91401
|
-
"summary": "Delete Thread Message Video",
|
|
91402
|
-
"description": "Delete Thread Message Video endpoint",
|
|
91403
|
-
"parameters": [
|
|
91404
|
-
{
|
|
91405
|
-
"in": "path",
|
|
91406
|
-
"name": "threadId",
|
|
91407
|
-
"schema": {
|
|
91408
|
-
"type": "string"
|
|
91409
|
-
},
|
|
91410
|
-
"description": "The thread identifier",
|
|
91411
|
-
"required": true
|
|
91412
|
-
},
|
|
91413
|
-
{
|
|
91414
|
-
"in": "path",
|
|
91415
|
-
"name": "messageId",
|
|
91416
|
-
"schema": {
|
|
91417
|
-
"type": "string"
|
|
91418
|
-
},
|
|
91419
|
-
"description": "The message identifier",
|
|
91420
|
-
"required": true
|
|
91421
|
-
},
|
|
91422
|
-
{
|
|
91423
|
-
"in": "path",
|
|
91424
|
-
"name": "videoId",
|
|
91425
|
-
"schema": {
|
|
91426
|
-
"type": "string"
|
|
91427
|
-
},
|
|
91428
|
-
"description": "The video identifier",
|
|
91429
|
-
"required": true
|
|
91430
|
-
}
|
|
91431
|
-
],
|
|
91432
|
-
"responses": {
|
|
91433
|
-
"200": {
|
|
91434
|
-
"description": "Successful response",
|
|
91435
|
-
"content": {
|
|
91436
|
-
"application/json": {
|
|
91437
|
-
"schema": {
|
|
91438
|
-
"type": "object",
|
|
91439
|
-
"properties": {
|
|
91440
|
-
"status": {
|
|
91441
|
-
"type": "string",
|
|
91442
|
-
"enum": [
|
|
91443
|
-
"ok"
|
|
91444
|
-
]
|
|
91445
|
-
},
|
|
91446
|
-
"message": {
|
|
91447
|
-
"type": "string",
|
|
91448
|
-
"example": "Success message."
|
|
91449
|
-
},
|
|
91450
|
-
"data": {
|
|
91451
|
-
"nullable": true
|
|
91452
|
-
}
|
|
91453
|
-
},
|
|
91454
|
-
"required": [
|
|
91455
|
-
"status",
|
|
91456
|
-
"message",
|
|
91457
|
-
"data"
|
|
91458
|
-
]
|
|
91459
|
-
}
|
|
91460
|
-
}
|
|
91461
|
-
}
|
|
91462
|
-
}
|
|
91463
|
-
},
|
|
91464
|
-
"tags": [
|
|
91465
|
-
"Threads::Messages::Videos"
|
|
91466
|
-
]
|
|
91467
|
-
}
|
|
91468
|
-
},
|
|
91469
|
-
"/tiers": {
|
|
91470
|
-
"get": {
|
|
91471
|
-
"operationId": "GetTiers",
|
|
91472
|
-
"summary": "Get Tiers",
|
|
91473
|
-
"description": "Get Tiers endpoint",
|
|
91474
|
-
"parameters": [
|
|
91475
|
-
{
|
|
91476
|
-
"in": "query",
|
|
91477
|
-
"name": "type",
|
|
91478
|
-
"schema": {
|
|
91479
|
-
"type": "string",
|
|
91480
|
-
"enum": [
|
|
91481
|
-
"external",
|
|
91482
|
-
"internal"
|
|
91483
|
-
]
|
|
91484
|
-
},
|
|
91485
|
-
"description": "Filter by type",
|
|
91486
|
-
"required": false
|
|
91487
|
-
},
|
|
91488
|
-
{
|
|
91489
|
-
"in": "query",
|
|
91490
|
-
"name": "page",
|
|
91491
|
-
"schema": {
|
|
91492
|
-
"type": "integer",
|
|
91493
|
-
"minimum": 1,
|
|
91494
|
-
"default": 1
|
|
91495
|
-
},
|
|
91496
|
-
"description": "Page number",
|
|
91497
|
-
"required": false
|
|
91498
|
-
},
|
|
91499
|
-
{
|
|
91500
|
-
"in": "query",
|
|
91501
|
-
"name": "pageSize",
|
|
91502
|
-
"schema": {
|
|
91503
|
-
"type": "integer",
|
|
91504
|
-
"minimum": 1,
|
|
91505
|
-
"maximum": 100,
|
|
91506
|
-
"default": 25
|
|
91507
|
-
},
|
|
91508
|
-
"description": "Number of items per page",
|
|
91509
|
-
"required": false
|
|
91510
|
-
},
|
|
91511
|
-
{
|
|
91512
|
-
"in": "query",
|
|
91513
|
-
"name": "orderBy",
|
|
91514
|
-
"schema": {
|
|
91515
|
-
"type": "string"
|
|
91516
|
-
},
|
|
91517
|
-
"description": "Field to order by",
|
|
91518
|
-
"required": false
|
|
91519
|
-
},
|
|
91520
|
-
{
|
|
91521
|
-
"in": "query",
|
|
91522
|
-
"name": "search",
|
|
91523
|
-
"schema": {
|
|
91524
|
-
"type": "string"
|
|
91525
|
-
},
|
|
91526
|
-
"description": "Search query",
|
|
91527
|
-
"required": false
|
|
91528
|
-
}
|
|
91529
|
-
],
|
|
91530
|
-
"responses": {
|
|
91531
|
-
"200": {
|
|
91532
|
-
"description": "Successful response",
|
|
91533
|
-
"content": {
|
|
91534
|
-
"application/json": {
|
|
91535
|
-
"schema": {
|
|
91536
|
-
"type": "object",
|
|
91537
|
-
"properties": {
|
|
91538
|
-
"status": {
|
|
91539
|
-
"type": "string",
|
|
91540
|
-
"enum": [
|
|
91541
|
-
"ok"
|
|
91542
|
-
]
|
|
91543
|
-
},
|
|
91544
|
-
"message": {
|
|
91545
|
-
"type": "string",
|
|
91546
|
-
"example": "Success message."
|
|
91547
|
-
},
|
|
91548
|
-
"data": {
|
|
91549
|
-
"type": "array",
|
|
91550
|
-
"items": {
|
|
91551
|
-
"$ref": "#/components/schemas/Tier"
|
|
91552
|
-
}
|
|
91553
|
-
},
|
|
91554
|
-
"count": {
|
|
91555
|
-
"type": "integer",
|
|
91556
|
-
"example": 100
|
|
91557
|
-
}
|
|
91558
|
-
},
|
|
91559
|
-
"required": [
|
|
91560
|
-
"status",
|
|
91561
|
-
"message",
|
|
91562
|
-
"data"
|
|
91563
|
-
]
|
|
91564
|
-
}
|
|
91565
|
-
}
|
|
91566
|
-
}
|
|
91567
|
-
}
|
|
91568
|
-
},
|
|
91569
|
-
"tags": [
|
|
91570
|
-
"Tiers"
|
|
91571
|
-
]
|
|
91572
|
-
},
|
|
91573
|
-
"post": {
|
|
91574
|
-
"operationId": "CreateTier",
|
|
91575
|
-
"summary": "Create Tier",
|
|
91576
|
-
"description": "Create Tier endpoint",
|
|
91577
|
-
"requestBody": {
|
|
91578
|
-
"required": true,
|
|
91579
|
-
"content": {
|
|
91580
|
-
"application/json": {
|
|
91581
|
-
"schema": {
|
|
91582
|
-
"$ref": "#/components/schemas/TierCreateInputs"
|
|
91583
|
-
}
|
|
91584
|
-
}
|
|
91585
|
-
}
|
|
91586
|
-
},
|
|
91587
|
-
"responses": {
|
|
91588
|
-
"200": {
|
|
91589
|
-
"description": "Successful response",
|
|
91590
|
-
"content": {
|
|
91591
|
-
"application/json": {
|
|
91592
|
-
"schema": {
|
|
91593
|
-
"type": "object",
|
|
91594
|
-
"properties": {
|
|
91595
|
-
"status": {
|
|
91596
|
-
"type": "string",
|
|
91597
|
-
"enum": [
|
|
91598
|
-
"ok"
|
|
91599
|
-
]
|
|
91600
|
-
},
|
|
91601
|
-
"message": {
|
|
91602
|
-
"type": "string",
|
|
91603
|
-
"example": "Success message."
|
|
91604
|
-
},
|
|
91605
|
-
"data": {
|
|
91606
|
-
"$ref": "#/components/schemas/Tier"
|
|
91607
|
-
}
|
|
91608
|
-
},
|
|
91609
|
-
"required": [
|
|
91610
|
-
"status",
|
|
91611
|
-
"message",
|
|
91612
|
-
"data"
|
|
91613
|
-
]
|
|
91614
|
-
}
|
|
91615
|
-
}
|
|
91616
|
-
}
|
|
91617
|
-
}
|
|
91618
|
-
},
|
|
91619
|
-
"tags": [
|
|
91620
|
-
"Tiers"
|
|
91621
|
-
]
|
|
91622
|
-
}
|
|
91623
|
-
},
|
|
91624
|
-
"/tiers/{tierId}": {
|
|
91625
|
-
"get": {
|
|
91626
|
-
"operationId": "GetTier",
|
|
91627
|
-
"summary": "Get Tier",
|
|
91628
|
-
"description": "Get Tier endpoint",
|
|
91629
|
-
"parameters": [
|
|
91630
|
-
{
|
|
91631
|
-
"in": "path",
|
|
91632
|
-
"name": "tierId",
|
|
91633
|
-
"schema": {
|
|
91634
|
-
"type": "string"
|
|
91635
|
-
},
|
|
91636
|
-
"description": "The tier identifier",
|
|
90596
|
+
"description": "The tier identifier",
|
|
91637
90597
|
"required": true
|
|
91638
90598
|
}
|
|
91639
90599
|
],
|
|
@@ -107029,77 +105989,6 @@
|
|
|
107029
105989
|
}
|
|
107030
105990
|
]
|
|
107031
105991
|
},
|
|
107032
|
-
"ThreadInvitationStatus": {
|
|
107033
|
-
"type": "string",
|
|
107034
|
-
"enum": [
|
|
107035
|
-
"invited",
|
|
107036
|
-
"rejected"
|
|
107037
|
-
]
|
|
107038
|
-
},
|
|
107039
|
-
"ThreadInvitation": {
|
|
107040
|
-
"type": "object",
|
|
107041
|
-
"properties": {
|
|
107042
|
-
"id": {
|
|
107043
|
-
"type": "string"
|
|
107044
|
-
},
|
|
107045
|
-
"organizationId": {
|
|
107046
|
-
"type": "string"
|
|
107047
|
-
},
|
|
107048
|
-
"threadId": {
|
|
107049
|
-
"type": "string"
|
|
107050
|
-
},
|
|
107051
|
-
"thread": {
|
|
107052
|
-
"$ref": "#/components/schemas/BaseThread"
|
|
107053
|
-
},
|
|
107054
|
-
"status": {
|
|
107055
|
-
"$ref": "#/components/schemas/ThreadInvitationStatus"
|
|
107056
|
-
},
|
|
107057
|
-
"role": {
|
|
107058
|
-
"$ref": "#/components/schemas/ThreadMemberRole"
|
|
107059
|
-
},
|
|
107060
|
-
"invitedById": {
|
|
107061
|
-
"type": "string"
|
|
107062
|
-
},
|
|
107063
|
-
"invitedBy": {
|
|
107064
|
-
"$ref": "#/components/schemas/BaseAccount"
|
|
107065
|
-
},
|
|
107066
|
-
"invitedId": {
|
|
107067
|
-
"type": "string"
|
|
107068
|
-
},
|
|
107069
|
-
"invited": {
|
|
107070
|
-
"$ref": "#/components/schemas/BaseAccount"
|
|
107071
|
-
},
|
|
107072
|
-
"createdAt": {
|
|
107073
|
-
"type": "string"
|
|
107074
|
-
},
|
|
107075
|
-
"updatedAt": {
|
|
107076
|
-
"type": "string"
|
|
107077
|
-
}
|
|
107078
|
-
},
|
|
107079
|
-
"required": [
|
|
107080
|
-
"id",
|
|
107081
|
-
"organizationId",
|
|
107082
|
-
"threadId",
|
|
107083
|
-
"thread",
|
|
107084
|
-
"status",
|
|
107085
|
-
"role",
|
|
107086
|
-
"invitedById",
|
|
107087
|
-
"invitedBy",
|
|
107088
|
-
"invitedId",
|
|
107089
|
-
"invited",
|
|
107090
|
-
"createdAt",
|
|
107091
|
-
"updatedAt"
|
|
107092
|
-
]
|
|
107093
|
-
},
|
|
107094
|
-
"ThreadType": {
|
|
107095
|
-
"type": "string",
|
|
107096
|
-
"enum": [
|
|
107097
|
-
"circle",
|
|
107098
|
-
"group",
|
|
107099
|
-
"event",
|
|
107100
|
-
"stream"
|
|
107101
|
-
]
|
|
107102
|
-
},
|
|
107103
105992
|
"BaseThread": {
|
|
107104
105993
|
"type": "object",
|
|
107105
105994
|
"properties": {
|
|
@@ -107121,9 +106010,6 @@
|
|
|
107121
106010
|
],
|
|
107122
106011
|
"nullable": true
|
|
107123
106012
|
},
|
|
107124
|
-
"type": {
|
|
107125
|
-
"$ref": "#/components/schemas/ThreadType"
|
|
107126
|
-
},
|
|
107127
106013
|
"lastMessageAt": {
|
|
107128
106014
|
"type": "string",
|
|
107129
106015
|
"nullable": true
|
|
@@ -107141,26 +106027,89 @@
|
|
|
107141
106027
|
"subject",
|
|
107142
106028
|
"imageId",
|
|
107143
106029
|
"image",
|
|
107144
|
-
"type",
|
|
107145
106030
|
"lastMessageAt",
|
|
107146
106031
|
"lastMessage",
|
|
107147
106032
|
"createdAt"
|
|
107148
106033
|
]
|
|
107149
106034
|
},
|
|
106035
|
+
"ThreadAccount": {
|
|
106036
|
+
"type": "object",
|
|
106037
|
+
"properties": {
|
|
106038
|
+
"id": {
|
|
106039
|
+
"type": "string"
|
|
106040
|
+
},
|
|
106041
|
+
"threadId": {
|
|
106042
|
+
"type": "string"
|
|
106043
|
+
},
|
|
106044
|
+
"accountId": {
|
|
106045
|
+
"type": "string"
|
|
106046
|
+
},
|
|
106047
|
+
"account": {
|
|
106048
|
+
"$ref": "#/components/schemas/BaseAccount"
|
|
106049
|
+
},
|
|
106050
|
+
"lastReadAt": {
|
|
106051
|
+
"type": "string",
|
|
106052
|
+
"nullable": true
|
|
106053
|
+
},
|
|
106054
|
+
"typingAt": {
|
|
106055
|
+
"type": "string",
|
|
106056
|
+
"nullable": true
|
|
106057
|
+
},
|
|
106058
|
+
"notifications": {
|
|
106059
|
+
"type": "boolean"
|
|
106060
|
+
},
|
|
106061
|
+
"blocked": {
|
|
106062
|
+
"type": "boolean"
|
|
106063
|
+
},
|
|
106064
|
+
"createdAt": {
|
|
106065
|
+
"type": "string"
|
|
106066
|
+
},
|
|
106067
|
+
"updatedAt": {
|
|
106068
|
+
"type": "string"
|
|
106069
|
+
}
|
|
106070
|
+
},
|
|
106071
|
+
"required": [
|
|
106072
|
+
"id",
|
|
106073
|
+
"threadId",
|
|
106074
|
+
"accountId",
|
|
106075
|
+
"account",
|
|
106076
|
+
"lastReadAt",
|
|
106077
|
+
"typingAt",
|
|
106078
|
+
"notifications",
|
|
106079
|
+
"blocked",
|
|
106080
|
+
"createdAt",
|
|
106081
|
+
"updatedAt"
|
|
106082
|
+
]
|
|
106083
|
+
},
|
|
107150
106084
|
"Thread": {
|
|
107151
106085
|
"allOf": [
|
|
107152
106086
|
{
|
|
107153
106087
|
"$ref": "#/components/schemas/BaseThread"
|
|
106088
|
+
},
|
|
106089
|
+
{
|
|
106090
|
+
"type": "object",
|
|
106091
|
+
"properties": {
|
|
106092
|
+
"accounts": {
|
|
106093
|
+
"type": "array",
|
|
106094
|
+
"items": {
|
|
106095
|
+
"$ref": "#/components/schemas/ThreadAccount"
|
|
106096
|
+
}
|
|
106097
|
+
},
|
|
106098
|
+
"_count": {
|
|
106099
|
+
"type": "object",
|
|
106100
|
+
"properties": {
|
|
106101
|
+
"messages": {
|
|
106102
|
+
"type": "number"
|
|
106103
|
+
}
|
|
106104
|
+
}
|
|
106105
|
+
}
|
|
106106
|
+
},
|
|
106107
|
+
"required": [
|
|
106108
|
+
"accounts"
|
|
106109
|
+
]
|
|
107154
106110
|
}
|
|
107155
106111
|
]
|
|
107156
106112
|
},
|
|
107157
|
-
"ThreadMemberRole": {
|
|
107158
|
-
"type": "string",
|
|
107159
|
-
"enum": [
|
|
107160
|
-
"member",
|
|
107161
|
-
"moderator"
|
|
107162
|
-
]
|
|
107163
|
-
},
|
|
107164
106113
|
"ThreadMessageType": {
|
|
107165
106114
|
"type": "string",
|
|
107166
106115
|
"enum": [
|
|
@@ -107230,6 +106179,33 @@
|
|
|
107230
106179
|
}
|
|
107231
106180
|
]
|
|
107232
106181
|
},
|
|
106182
|
+
"ThreadMessageRead": {
|
|
106183
|
+
"type": "object",
|
|
106184
|
+
"properties": {
|
|
106185
|
+
"id": {
|
|
106186
|
+
"type": "string"
|
|
106187
|
+
},
|
|
106188
|
+
"threadId": {
|
|
106189
|
+
"type": "string"
|
|
106190
|
+
},
|
|
106191
|
+
"messageId": {
|
|
106192
|
+
"type": "string"
|
|
106193
|
+
},
|
|
106194
|
+
"accountId": {
|
|
106195
|
+
"type": "string"
|
|
106196
|
+
},
|
|
106197
|
+
"readAt": {
|
|
106198
|
+
"type": "string"
|
|
106199
|
+
}
|
|
106200
|
+
},
|
|
106201
|
+
"required": [
|
|
106202
|
+
"id",
|
|
106203
|
+
"threadId",
|
|
106204
|
+
"messageId",
|
|
106205
|
+
"accountId",
|
|
106206
|
+
"readAt"
|
|
106207
|
+
]
|
|
106208
|
+
},
|
|
107233
106209
|
"BaseThreadMessage": {
|
|
107234
106210
|
"type": "object",
|
|
107235
106211
|
"properties": {
|
|
@@ -107243,10 +106219,10 @@
|
|
|
107243
106219
|
"type": "string",
|
|
107244
106220
|
"nullable": true
|
|
107245
106221
|
},
|
|
107246
|
-
"
|
|
106222
|
+
"threadAccount": {
|
|
107247
106223
|
"allOf": [
|
|
107248
106224
|
{
|
|
107249
|
-
"$ref": "#/components/schemas/
|
|
106225
|
+
"$ref": "#/components/schemas/ThreadAccount"
|
|
107250
106226
|
}
|
|
107251
106227
|
],
|
|
107252
106228
|
"nullable": true
|
|
@@ -107260,13 +106236,17 @@
|
|
|
107260
106236
|
},
|
|
107261
106237
|
"sentAt": {
|
|
107262
106238
|
"type": "string"
|
|
106239
|
+
},
|
|
106240
|
+
"deletedAt": {
|
|
106241
|
+
"type": "string",
|
|
106242
|
+
"nullable": true
|
|
107263
106243
|
}
|
|
107264
106244
|
},
|
|
107265
106245
|
"required": [
|
|
107266
106246
|
"id",
|
|
107267
106247
|
"body",
|
|
107268
106248
|
"accountId",
|
|
107269
|
-
"
|
|
106249
|
+
"threadAccount",
|
|
107270
106250
|
"createdAt",
|
|
107271
106251
|
"editedAt",
|
|
107272
106252
|
"sentAt"
|
|
@@ -107324,6 +106304,16 @@
|
|
|
107324
106304
|
"items": {
|
|
107325
106305
|
"$ref": "#/components/schemas/BaseVideo"
|
|
107326
106306
|
}
|
|
106307
|
+
},
|
|
106308
|
+
"reads": {
|
|
106309
|
+
"type": "array",
|
|
106310
|
+
"items": {
|
|
106311
|
+
"$ref": "#/components/schemas/ThreadMessageRead"
|
|
106312
|
+
}
|
|
106313
|
+
},
|
|
106314
|
+
"deletedAt": {
|
|
106315
|
+
"type": "string",
|
|
106316
|
+
"nullable": true
|
|
107327
106317
|
}
|
|
107328
106318
|
},
|
|
107329
106319
|
"required": [
|
|
@@ -107384,135 +106374,6 @@
|
|
|
107384
106374
|
}
|
|
107385
106375
|
]
|
|
107386
106376
|
},
|
|
107387
|
-
"BaseThreadMember": {
|
|
107388
|
-
"type": "object",
|
|
107389
|
-
"properties": {
|
|
107390
|
-
"id": {
|
|
107391
|
-
"type": "string"
|
|
107392
|
-
},
|
|
107393
|
-
"accountId": {
|
|
107394
|
-
"type": "string"
|
|
107395
|
-
},
|
|
107396
|
-
"lastReadAt": {
|
|
107397
|
-
"type": "string",
|
|
107398
|
-
"nullable": true
|
|
107399
|
-
},
|
|
107400
|
-
"notifications": {
|
|
107401
|
-
"type": "boolean"
|
|
107402
|
-
},
|
|
107403
|
-
"account": {
|
|
107404
|
-
"$ref": "#/components/schemas/BaseAccount"
|
|
107405
|
-
},
|
|
107406
|
-
"blocked": {
|
|
107407
|
-
"type": "boolean"
|
|
107408
|
-
}
|
|
107409
|
-
},
|
|
107410
|
-
"required": [
|
|
107411
|
-
"id",
|
|
107412
|
-
"accountId",
|
|
107413
|
-
"lastReadAt",
|
|
107414
|
-
"notifications",
|
|
107415
|
-
"account",
|
|
107416
|
-
"blocked"
|
|
107417
|
-
]
|
|
107418
|
-
},
|
|
107419
|
-
"ThreadMember": {
|
|
107420
|
-
"allOf": [
|
|
107421
|
-
{
|
|
107422
|
-
"$ref": "#/components/schemas/BaseThreadMember"
|
|
107423
|
-
},
|
|
107424
|
-
{
|
|
107425
|
-
"type": "object",
|
|
107426
|
-
"properties": {
|
|
107427
|
-
"createdAt": {
|
|
107428
|
-
"type": "string"
|
|
107429
|
-
},
|
|
107430
|
-
"updatedAt": {
|
|
107431
|
-
"type": "string"
|
|
107432
|
-
}
|
|
107433
|
-
},
|
|
107434
|
-
"required": [
|
|
107435
|
-
"createdAt",
|
|
107436
|
-
"updatedAt"
|
|
107437
|
-
]
|
|
107438
|
-
}
|
|
107439
|
-
]
|
|
107440
|
-
},
|
|
107441
|
-
"ThreadCircleAccountRole": {
|
|
107442
|
-
"type": "string",
|
|
107443
|
-
"enum": [
|
|
107444
|
-
"member",
|
|
107445
|
-
"manager",
|
|
107446
|
-
"invited"
|
|
107447
|
-
]
|
|
107448
|
-
},
|
|
107449
|
-
"ThreadCircleType": {
|
|
107450
|
-
"type": "string",
|
|
107451
|
-
"enum": [
|
|
107452
|
-
"private",
|
|
107453
|
-
"direct"
|
|
107454
|
-
]
|
|
107455
|
-
},
|
|
107456
|
-
"BaseThreadCircle": {
|
|
107457
|
-
"type": "object",
|
|
107458
|
-
"properties": {
|
|
107459
|
-
"id": {
|
|
107460
|
-
"type": "string"
|
|
107461
|
-
},
|
|
107462
|
-
"name": {
|
|
107463
|
-
"type": "string"
|
|
107464
|
-
},
|
|
107465
|
-
"createdAt": {
|
|
107466
|
-
"type": "string"
|
|
107467
|
-
},
|
|
107468
|
-
"updatedAt": {
|
|
107469
|
-
"type": "string"
|
|
107470
|
-
},
|
|
107471
|
-
"type": {
|
|
107472
|
-
"$ref": "#/components/schemas/ThreadCircleType"
|
|
107473
|
-
}
|
|
107474
|
-
},
|
|
107475
|
-
"required": [
|
|
107476
|
-
"id",
|
|
107477
|
-
"name",
|
|
107478
|
-
"createdAt",
|
|
107479
|
-
"updatedAt",
|
|
107480
|
-
"type"
|
|
107481
|
-
]
|
|
107482
|
-
},
|
|
107483
|
-
"ThreadCircle": {
|
|
107484
|
-
"allOf": [
|
|
107485
|
-
{
|
|
107486
|
-
"$ref": "#/components/schemas/BaseThreadCircle"
|
|
107487
|
-
}
|
|
107488
|
-
]
|
|
107489
|
-
},
|
|
107490
|
-
"BaseThreadCircleAccount": {
|
|
107491
|
-
"type": "object",
|
|
107492
|
-
"properties": {
|
|
107493
|
-
"accountId": {
|
|
107494
|
-
"type": "string"
|
|
107495
|
-
},
|
|
107496
|
-
"role": {
|
|
107497
|
-
"$ref": "#/components/schemas/ThreadCircleAccountRole"
|
|
107498
|
-
},
|
|
107499
|
-
"account": {
|
|
107500
|
-
"$ref": "#/components/schemas/BaseAccount"
|
|
107501
|
-
}
|
|
107502
|
-
},
|
|
107503
|
-
"required": [
|
|
107504
|
-
"accountId",
|
|
107505
|
-
"role",
|
|
107506
|
-
"account"
|
|
107507
|
-
]
|
|
107508
|
-
},
|
|
107509
|
-
"ThreadCircleAccount": {
|
|
107510
|
-
"allOf": [
|
|
107511
|
-
{
|
|
107512
|
-
"$ref": "#/components/schemas/BaseThreadCircleAccount"
|
|
107513
|
-
}
|
|
107514
|
-
]
|
|
107515
|
-
},
|
|
107516
106377
|
"PaypalActivationFormParams": {
|
|
107517
106378
|
"type": "object",
|
|
107518
106379
|
"properties": {
|
|
@@ -119261,6 +118122,12 @@
|
|
|
119261
118122
|
"ThreadCreateInputs": {
|
|
119262
118123
|
"type": "object",
|
|
119263
118124
|
"properties": {
|
|
118125
|
+
"accountIds": {
|
|
118126
|
+
"type": "array",
|
|
118127
|
+
"items": {
|
|
118128
|
+
"type": "string"
|
|
118129
|
+
}
|
|
118130
|
+
},
|
|
119264
118131
|
"subject": {
|
|
119265
118132
|
"type": "string",
|
|
119266
118133
|
"nullable": true
|
|
@@ -119268,17 +118135,11 @@
|
|
|
119268
118135
|
"imageId": {
|
|
119269
118136
|
"type": "string",
|
|
119270
118137
|
"nullable": true
|
|
119271
|
-
},
|
|
119272
|
-
"groupId": {
|
|
119273
|
-
"type": "string"
|
|
119274
|
-
},
|
|
119275
|
-
"circleId": {
|
|
119276
|
-
"type": "string"
|
|
119277
|
-
},
|
|
119278
|
-
"eventId": {
|
|
119279
|
-
"type": "string"
|
|
119280
118138
|
}
|
|
119281
|
-
}
|
|
118139
|
+
},
|
|
118140
|
+
"required": [
|
|
118141
|
+
"accountIds"
|
|
118142
|
+
]
|
|
119282
118143
|
},
|
|
119283
118144
|
"ThreadUpdateInputs": {
|
|
119284
118145
|
"type": "object",
|
|
@@ -119333,63 +118194,14 @@
|
|
|
119333
118194
|
"entities"
|
|
119334
118195
|
]
|
|
119335
118196
|
},
|
|
119336
|
-
"
|
|
119337
|
-
"type": "object",
|
|
119338
|
-
"properties": {}
|
|
119339
|
-
},
|
|
119340
|
-
"ThreadMemberUpdateInputs": {
|
|
118197
|
+
"ThreadAccountUpdateInputs": {
|
|
119341
118198
|
"type": "object",
|
|
119342
118199
|
"properties": {
|
|
119343
|
-
"
|
|
118200
|
+
"notifications": {
|
|
119344
118201
|
"type": "boolean"
|
|
119345
|
-
}
|
|
119346
|
-
}
|
|
119347
|
-
},
|
|
119348
|
-
"ThreadCircleCreateInputs": {
|
|
119349
|
-
"type": "object",
|
|
119350
|
-
"properties": {
|
|
119351
|
-
"name": {
|
|
119352
|
-
"type": "string"
|
|
119353
|
-
}
|
|
119354
|
-
},
|
|
119355
|
-
"required": [
|
|
119356
|
-
"name"
|
|
119357
|
-
]
|
|
119358
|
-
},
|
|
119359
|
-
"ThreadCircleUpdateInputs": {
|
|
119360
|
-
"type": "object",
|
|
119361
|
-
"properties": {
|
|
119362
|
-
"name": {
|
|
119363
|
-
"type": "string",
|
|
119364
|
-
"nullable": true
|
|
119365
|
-
}
|
|
119366
|
-
}
|
|
119367
|
-
},
|
|
119368
|
-
"ThreadCircleAccountCreateInputs": {
|
|
119369
|
-
"type": "object",
|
|
119370
|
-
"properties": {
|
|
119371
|
-
"accountId": {
|
|
119372
|
-
"type": "string"
|
|
119373
118202
|
},
|
|
119374
|
-
"
|
|
119375
|
-
"
|
|
119376
|
-
}
|
|
119377
|
-
},
|
|
119378
|
-
"required": [
|
|
119379
|
-
"accountId",
|
|
119380
|
-
"role"
|
|
119381
|
-
]
|
|
119382
|
-
},
|
|
119383
|
-
"ThreadCircleAccountUpdateInputs": {
|
|
119384
|
-
"type": "object",
|
|
119385
|
-
"properties": {
|
|
119386
|
-
"role": {
|
|
119387
|
-
"allOf": [
|
|
119388
|
-
{
|
|
119389
|
-
"$ref": "#/components/schemas/ThreadCircleAccountRole"
|
|
119390
|
-
}
|
|
119391
|
-
],
|
|
119392
|
-
"nullable": true
|
|
118203
|
+
"blocked": {
|
|
118204
|
+
"type": "boolean"
|
|
119393
118205
|
}
|
|
119394
118206
|
}
|
|
119395
118207
|
},
|