You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* description: Update the status of an application to either "CONFIRMED" or "DECLINED" only if the current status is "ACCEPTED". This is the only way a user can change their application status.
365
+
* tags: [Application]
366
+
* parameters:
367
+
* - $ref: "#/components/parameters/access_token"
368
+
* - in: path
369
+
* name: id
370
+
* description: Application id
371
+
* required: true
372
+
* requestBody:
373
+
* required: true
374
+
* content:
375
+
* application/json:
376
+
* schema:
377
+
* type: object
378
+
* properties:
379
+
* status:
380
+
* type: string
381
+
* enum: [CONFIRMED, DECLINED]
382
+
* description: New status for the application
383
+
* responses:
384
+
* 200:
385
+
* description: Application successfully updated
386
+
* content:
387
+
* application/json:
388
+
* schema:
389
+
* $ref: "#/components/schemas/Application"
390
+
* 400:
391
+
* description: Invalid input or application status not "ACCEPTED"
0 commit comments