@@ -360,6 +360,9 @@ paths:
360
360
projectId,
361
361
name,
362
362
typeId,
363
+ numOfRegistrants,
364
+ numOfSubmissions,
365
+ status,
363
366
overview.totalPrizes,
364
367
]
365
368
- name : sortOrder
@@ -908,6 +911,46 @@ paths:
908
911
description : Internal Server error
909
912
schema :
910
913
$ref : " #/definitions/ErrorModel"
914
+ delete :
915
+ tags :
916
+ - ChallengeTypes
917
+ description : Delete the challenge type with specified id.
918
+ security :
919
+ - bearer : []
920
+ produces :
921
+ - application/json
922
+ parameters :
923
+ - name : challengeTypeId
924
+ in : path
925
+ required : true
926
+ type : string
927
+ format : UUID
928
+ description : The id of challengeType to be deleted
929
+ responses :
930
+ " 200 " :
931
+ description : Deleted - The request was successful and the resource is returned.
932
+ schema :
933
+ $ref : " #/definitions/ChallengeType"
934
+ " 400 " :
935
+ description : Bad request. Request parameters were invalid.
936
+ schema :
937
+ $ref : " #/definitions/ErrorModel"
938
+ " 401 " :
939
+ description : Unauthorized. Fail to authenticate the requester.
940
+ schema :
941
+ $ref : " #/definitions/ErrorModel"
942
+ " 403 " :
943
+ description : Forbidden. The requester does not have the correct permission to delete the challenge type.
944
+ schema :
945
+ $ref : " #/definitions/ErrorModel"
946
+ " 404 " :
947
+ description : Not Found. Challenge type not found
948
+ schema :
949
+ $ref : " #/definitions/ErrorModel"
950
+ " 500 " :
951
+ description : Internal Server Error
952
+ schema :
953
+ $ref : " #/definitions/ErrorModel"
911
954
/challenge-tracks :
912
955
get :
913
956
tags :
@@ -1143,6 +1186,46 @@ paths:
1143
1186
description : Internal Server Error
1144
1187
schema :
1145
1188
$ref : " #/definitions/ErrorModel"
1189
+ delete :
1190
+ tags :
1191
+ - ChallengeTracks
1192
+ description : Delete the challenge track with specified id.
1193
+ security :
1194
+ - bearer : []
1195
+ produces :
1196
+ - application/json
1197
+ parameters :
1198
+ - name : challengeTrackId
1199
+ in : path
1200
+ required : true
1201
+ type : string
1202
+ format : UUID
1203
+ description : The id of challengeTrack to be deleted.
1204
+ responses :
1205
+ " 200 " :
1206
+ description : Deleted - The request was successful and the resource is returned.
1207
+ schema :
1208
+ $ref : " #/definitions/ChallengeTrack"
1209
+ " 400 " :
1210
+ description : Bad request. Request parameters were invalid.
1211
+ schema :
1212
+ $ref : " #/definitions/ErrorModel"
1213
+ " 401 " :
1214
+ description : Unauthorized. Fail to authenticate the requester.
1215
+ schema :
1216
+ $ref : " #/definitions/ErrorModel"
1217
+ " 403 " :
1218
+ description : Forbidden. The requester does not have the correct permission to delete the challenge track.
1219
+ schema :
1220
+ $ref : " #/definitions/ErrorModel"
1221
+ " 404 " :
1222
+ description : Not Found. Challenge track not found
1223
+ schema :
1224
+ $ref : " #/definitions/ErrorModel"
1225
+ " 500 " :
1226
+ description : Internal Server Error
1227
+ schema :
1228
+ $ref : " #/definitions/ErrorModel"
1146
1229
/challenge-phases :
1147
1230
get :
1148
1231
tags :
@@ -2927,7 +3010,7 @@ definitions:
2927
3010
type : boolean
2928
3011
selfServiceCopilot :
2929
3012
type : string
2930
- cancelReason :
3013
+ cancelReason :
2931
3014
type : string
2932
3015
billing :
2933
3016
type : object
0 commit comments