File tree Expand file tree Collapse file tree 2 files changed +232
-0
lines changed Expand file tree Collapse file tree 2 files changed +232
-0
lines changed Original file line number Diff line number Diff line change 3760
3760
}
3761
3761
}
3762
3762
},
3763
+ "202" : {
3764
+ "description" : " Response, email failed to send" ,
3765
+ "content" : {
3766
+ "application/json" : {
3767
+ "schema" : {
3768
+ "$ref" : " #/components/schemas/Invitation"
3769
+ }
3770
+ }
3771
+ }
3772
+ },
3763
3773
"400" : {
3764
3774
"$ref" : " #/components/responses/BadRequest"
3765
3775
},
5103
5113
}
5104
5114
}
5105
5115
}
5116
+ },
5117
+ "/teams/{team_name}/syncs/{sync_name}/runs/{sync_run_id}/logs" : {
5118
+ "get" : {
5119
+ "description" : " Get logs for a sync run." ,
5120
+ "operationId" : " GetSyncRunLogs" ,
5121
+ "tags" : [
5122
+ " syncs"
5123
+ ],
5124
+ "parameters" : [
5125
+ {
5126
+ "$ref" : " #/components/parameters/team_name"
5127
+ },
5128
+ {
5129
+ "$ref" : " #/components/parameters/sync_name"
5130
+ },
5131
+ {
5132
+ "$ref" : " #/components/parameters/sync_run_id"
5133
+ }
5134
+ ],
5135
+ "responses" : {
5136
+ "200" : {
5137
+ "description" : " Chunked response logs for a sync run that is in progress." ,
5138
+ "content" : {
5139
+ "text/plain" : {
5140
+ "schema" : {
5141
+ "type" : " string" ,
5142
+ "description" : " A stream of logs for a sync run."
5143
+ }
5144
+ }
5145
+ }
5146
+ },
5147
+ "302" : {
5148
+ "description" : " Redirect to the logs download URL for a sync run that has completed." ,
5149
+ "headers" : {
5150
+ "Location" : {
5151
+ "schema" : {
5152
+ "type" : " string" ,
5153
+ "description" : " URL to download logs"
5154
+ }
5155
+ }
5156
+ }
5157
+ },
5158
+ "400" : {
5159
+ "$ref" : " #/components/responses/BadRequest"
5160
+ },
5161
+ "401" : {
5162
+ "$ref" : " #/components/responses/RequiresAuthentication"
5163
+ },
5164
+ "404" : {
5165
+ "$ref" : " #/components/responses/NotFound"
5166
+ },
5167
+ "422" : {
5168
+ "$ref" : " #/components/responses/UnprocessableEntity"
5169
+ },
5170
+ "500" : {
5171
+ "$ref" : " #/components/responses/InternalError"
5172
+ }
5173
+ }
5174
+ }
5106
5175
}
5107
5176
},
5108
5177
"components" : {
You can’t perform that action at this time.
0 commit comments