diff --git a/api/openapi.generated.yml b/api/openapi.generated.yml index 50e6b7f47..ac4b8d3f9 100644 --- a/api/openapi.generated.yml +++ b/api/openapi.generated.yml @@ -522,6 +522,43 @@ paths: ' security: - ApiKeyAuth: [] + /v1/users/{user_id}/saved-opportunities/{opportunity_id}: + delete: + parameters: + - in: path + name: user_id + schema: + type: string + required: true + - in: path + name: opportunity_id + schema: + type: integer + required: true + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/UserDeleteSavedOpportunityResponse' + description: Successful response + '401': + content: + application/json: + schema: + $ref: '#/components/schemas/ErrorResponse' + description: Authentication error + '404': + content: + application/json: + schema: + $ref: '#/components/schemas/ErrorResponse' + description: Not found + tags: + - User v1 + summary: User Delete Saved Opportunity + security: + - ApiJwtAuth: [] openapi: 3.1.0 components: schemas: @@ -1963,6 +2000,19 @@ components: type: integer description: The HTTP status code example: 200 + UserDeleteSavedOpportunityResponse: + type: object + properties: + message: + type: string + description: The message to return + example: Success + data: + example: null + status_code: + type: integer + description: The HTTP status code + example: 200 securitySchemes: ApiKeyAuth: type: apiKey