> For the complete documentation index, see [llms.txt](https://guide.fariaedu.com/integrations-portal/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://guide.fariaedu.com/integrations-portal/schoolsbuddy/public-rest-apis/events.md).

# Events

## GET /api/v1/Events

> Get events with filters.

```json
{"openapi":"3.0.1","info":{"title":"SchoolsBuddy Public API","version":"1.0"},"servers":[{"url":"https://publicapi-eu.schoolsbuddy.net","description":"EMEA Public Api server"},{"url":"https://publicapi-asia.schoolsbuddy.net","description":"Asia Public Api server"},{"url":"https://publicapi-us.schoolsbuddy.net","description":"US Public Api server"},{"url":"https://publicapi.schoolsbuddy.cn","description":"China Public Api server"},{"url":"https://identity-eu.schoolsbuddy.net","description":"EMEA Identity server"},{"url":"https://identity-asia.schoolsbuddy.net","description":"Asia Identity server"},{"url":"https://identity-us.schoolsbuddy.net","description":"US Identity server"},{"url":"https://accounts.schoolsbuddy.cn","description":"China Identity server"}],"security":[{"Bearer":[]}],"components":{"securitySchemes":{"Bearer":{"type":"apiKey","description":"Type \"Bearer\" followed by a space and a token.","name":"Authorization","in":"header"}},"schemas":{"PublicEventResponseDtoListPagedPublicEventsSearchResponseDto":{"type":"object","properties":{"isSuccess":{"type":"boolean"},"errors":{"type":"array","items":{"type":"string"},"nullable":true},"messageTranslationParameters":{"nullable":true},"data":{"type":"array","items":{"$ref":"#/components/schemas/PublicEventResponseDto"},"nullable":true},"pageNumber":{"type":"integer","format":"int32"},"pageSize":{"type":"integer","format":"int32"},"firstPage":{"type":"string","format":"uri","nullable":true},"lastPage":{"type":"string","format":"uri","nullable":true},"totalPages":{"type":"integer","format":"int32"},"totalRecords":{"type":"integer","format":"int32"},"nextPage":{"type":"string","format":"uri","nullable":true},"previousPage":{"type":"string","format":"uri","nullable":true},"baseUri":{"type":"string","format":"uri","nullable":true},"searchParameters":{"type":"array","items":{"$ref":"#/components/schemas/StringStringKeyValuePair"},"nullable":true}},"additionalProperties":false},"PublicEventResponseDto":{"type":"object","properties":{"id":{"type":"integer","format":"int32"},"isSeries":{"type":"boolean"},"parentEventId":{"type":"integer","format":"int32","nullable":true},"allowJoiningPartWayThrough":{"type":"boolean"},"eventName":{"type":"string","nullable":true},"opponent":{"type":"string","nullable":true},"description":{"type":"string","nullable":true},"vitalInformation":{"type":"string","nullable":true},"groupId":{"type":"integer","format":"int32"},"clubId":{"type":"integer","format":"int32","nullable":true},"ccaSignUpId":{"type":"integer","format":"int32","nullable":true},"eventTypeId":{"type":"integer","format":"int32","nullable":true},"eventType":{"type":"string","nullable":true},"eventStartTime":{"type":"string","format":"date-time"},"eventEndTime":{"type":"string","format":"date-time"},"leadStaffMember":{"type":"string","nullable":true},"cost":{"type":"number","format":"double"},"percentageToPayDeposit":{"type":"number","format":"double","nullable":true},"alwaysChargeFullPrice":{"type":"boolean"},"includesTax":{"type":"boolean"},"paymentDueDate":{"type":"string","format":"date","nullable":true},"location":{"type":"string","nullable":true},"meetingLocation":{"type":"string","nullable":true},"meetingTime":{"type":"string","format":"date-time","nullable":true},"pickupLocation":{"type":"string","nullable":true},"pickupTime":{"type":"string","format":"date-time","nullable":true},"numberOfPlaces":{"type":"integer","format":"int32","nullable":true},"consentRequired":{"type":"boolean"},"consentDueDate":{"type":"string","format":"date-time","nullable":true},"consentMessage":{"type":"string","nullable":true},"termsAndConditions":{"type":"string","nullable":true},"orgId":{"type":"integer","format":"int32"},"isBlocked":{"type":"boolean"},"isCancelled":{"type":"boolean"},"isArchived":{"type":"boolean"},"updatedAt":{"type":"string","format":"date-time","nullable":true},"timeZone":{"type":"string","nullable":true},"attendees":{"type":"array","items":{"$ref":"#/components/schemas/EventAttendanceDto"},"nullable":true}},"additionalProperties":false},"EventAttendanceDto":{"type":"object","properties":{"id":{"type":"integer","format":"int32"},"calendarEventId":{"type":"integer","format":"int32"},"registerStatus":{"$ref":"#/components/schemas/AttendeeRegisterStateEnum"},"firstName":{"type":"string","nullable":true},"lastName":{"type":"string","nullable":true},"registerUpdatedAt":{"type":"string","format":"date-time","nullable":true},"registerUpdatedBy":{"type":"integer","format":"int32","nullable":true},"registerUpdatedByName":{"type":"string","nullable":true},"attendanceNote":{"type":"string","nullable":true}},"additionalProperties":false},"AttendeeRegisterStateEnum":{"enum":["Unset","Present","Absent","Late","Excused"],"type":"string"},"StringStringKeyValuePair":{"type":"object","properties":{"key":{"type":"string","nullable":true},"value":{"type":"string","nullable":true}},"additionalProperties":false},"ErrorResponse":{"type":"object","properties":{"code":{"type":"string","description":"Gets or sets the machine-readable error code (e.g.\r\n`VALIDATION_FAILED`, `RESOURCE_NOT_FOUND`,\r\n`INTERNAL_ERROR`) per cross-cutting-design.md §5.1.","nullable":true},"error":{"type":"string","description":"Gets or sets the human-readable error message.","nullable":true}},"additionalProperties":false,"description":"Structured body for 4xx / 5xx responses on the new Public API surface:\r\na machine-readable SchoolsBuddy.PublicAPI.Models.ErrorResponse.Code plus a human-readable\r\nSchoolsBuddy.PublicAPI.Models.ErrorResponse.Error. See cross-cutting-design.md §5.3. This is additive —\r\nexisting endpoints continue returning their legacy plain-string /\r\nModelState shapes until migrated by their per-controller ticket."}}},"paths":{"/api/v1/Events":{"get":{"tags":["Events"],"summary":"Get events with filters.","parameters":[{"name":"StartDateTime","in":"query","schema":{"type":"string","format":"date-time"}},{"name":"EndDateTime","in":"query","schema":{"type":"string","format":"date-time"}},{"name":"Search","in":"query","schema":{"type":"string"}},{"name":"SCStudentId","in":"query","schema":{"type":"integer","format":"int32"}},{"name":"StudentId","in":"query","schema":{"type":"string"}},{"name":"IncludeAttendees","in":"query","schema":{"type":"boolean"}},{"name":"EventType","in":"query","schema":{"type":"string"}},{"name":"IsCancelled","in":"query","schema":{"type":"boolean"}},{"name":"IsArchived","in":"query","schema":{"type":"boolean"}},{"name":"PageNumber","in":"query","schema":{"maximum":2147483647,"minimum":1,"type":"integer","format":"int32"}},{"name":"PageSize","in":"query","schema":{"maximum":2000,"minimum":1,"type":"integer","format":"int32"}},{"name":"OrganisationIds","in":"query","schema":{"type":"array","items":{"type":"integer","format":"int32"}}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PublicEventResponseDtoListPagedPublicEventsSearchResponseDto"}}}},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"404":{"description":"Not Found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Server Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}}}}
```

## GET /api/v1/Events/{id}

> Get event by Id.

```json
{"openapi":"3.0.1","info":{"title":"SchoolsBuddy Public API","version":"1.0"},"servers":[{"url":"https://publicapi-eu.schoolsbuddy.net","description":"EMEA Public Api server"},{"url":"https://publicapi-asia.schoolsbuddy.net","description":"Asia Public Api server"},{"url":"https://publicapi-us.schoolsbuddy.net","description":"US Public Api server"},{"url":"https://publicapi.schoolsbuddy.cn","description":"China Public Api server"},{"url":"https://identity-eu.schoolsbuddy.net","description":"EMEA Identity server"},{"url":"https://identity-asia.schoolsbuddy.net","description":"Asia Identity server"},{"url":"https://identity-us.schoolsbuddy.net","description":"US Identity server"},{"url":"https://accounts.schoolsbuddy.cn","description":"China Identity server"}],"security":[{"Bearer":[]}],"components":{"securitySchemes":{"Bearer":{"type":"apiKey","description":"Type \"Bearer\" followed by a space and a token.","name":"Authorization","in":"header"}},"schemas":{"PublicEventResponseDto":{"type":"object","properties":{"id":{"type":"integer","format":"int32"},"isSeries":{"type":"boolean"},"parentEventId":{"type":"integer","format":"int32","nullable":true},"allowJoiningPartWayThrough":{"type":"boolean"},"eventName":{"type":"string","nullable":true},"opponent":{"type":"string","nullable":true},"description":{"type":"string","nullable":true},"vitalInformation":{"type":"string","nullable":true},"groupId":{"type":"integer","format":"int32"},"clubId":{"type":"integer","format":"int32","nullable":true},"ccaSignUpId":{"type":"integer","format":"int32","nullable":true},"eventTypeId":{"type":"integer","format":"int32","nullable":true},"eventType":{"type":"string","nullable":true},"eventStartTime":{"type":"string","format":"date-time"},"eventEndTime":{"type":"string","format":"date-time"},"leadStaffMember":{"type":"string","nullable":true},"cost":{"type":"number","format":"double"},"percentageToPayDeposit":{"type":"number","format":"double","nullable":true},"alwaysChargeFullPrice":{"type":"boolean"},"includesTax":{"type":"boolean"},"paymentDueDate":{"type":"string","format":"date","nullable":true},"location":{"type":"string","nullable":true},"meetingLocation":{"type":"string","nullable":true},"meetingTime":{"type":"string","format":"date-time","nullable":true},"pickupLocation":{"type":"string","nullable":true},"pickupTime":{"type":"string","format":"date-time","nullable":true},"numberOfPlaces":{"type":"integer","format":"int32","nullable":true},"consentRequired":{"type":"boolean"},"consentDueDate":{"type":"string","format":"date-time","nullable":true},"consentMessage":{"type":"string","nullable":true},"termsAndConditions":{"type":"string","nullable":true},"orgId":{"type":"integer","format":"int32"},"isBlocked":{"type":"boolean"},"isCancelled":{"type":"boolean"},"isArchived":{"type":"boolean"},"updatedAt":{"type":"string","format":"date-time","nullable":true},"timeZone":{"type":"string","nullable":true},"attendees":{"type":"array","items":{"$ref":"#/components/schemas/EventAttendanceDto"},"nullable":true}},"additionalProperties":false},"EventAttendanceDto":{"type":"object","properties":{"id":{"type":"integer","format":"int32"},"calendarEventId":{"type":"integer","format":"int32"},"registerStatus":{"$ref":"#/components/schemas/AttendeeRegisterStateEnum"},"firstName":{"type":"string","nullable":true},"lastName":{"type":"string","nullable":true},"registerUpdatedAt":{"type":"string","format":"date-time","nullable":true},"registerUpdatedBy":{"type":"integer","format":"int32","nullable":true},"registerUpdatedByName":{"type":"string","nullable":true},"attendanceNote":{"type":"string","nullable":true}},"additionalProperties":false},"AttendeeRegisterStateEnum":{"enum":["Unset","Present","Absent","Late","Excused"],"type":"string"},"ErrorResponse":{"type":"object","properties":{"code":{"type":"string","description":"Gets or sets the machine-readable error code (e.g.\r\n`VALIDATION_FAILED`, `RESOURCE_NOT_FOUND`,\r\n`INTERNAL_ERROR`) per cross-cutting-design.md §5.1.","nullable":true},"error":{"type":"string","description":"Gets or sets the human-readable error message.","nullable":true}},"additionalProperties":false,"description":"Structured body for 4xx / 5xx responses on the new Public API surface:\r\na machine-readable SchoolsBuddy.PublicAPI.Models.ErrorResponse.Code plus a human-readable\r\nSchoolsBuddy.PublicAPI.Models.ErrorResponse.Error. See cross-cutting-design.md §5.3. This is additive —\r\nexisting endpoints continue returning their legacy plain-string /\r\nModelState shapes until migrated by their per-controller ticket."}}},"paths":{"/api/v1/Events/{id}":{"get":{"tags":["Events"],"summary":"Get event by Id.","parameters":[{"name":"id","in":"path","description":"Event Id","required":true,"schema":{"type":"integer","format":"int32"}},{"name":"organisationId","in":"query","description":"Organisation Id (optional query parameter)","schema":{"type":"integer","format":"int32"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PublicEventResponseDto"}}}},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"404":{"description":"Not Found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Server Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}}}}
```

## GET /api/v1/Events/{id}/attendance

> Get event attendance information.

```json
{"openapi":"3.0.1","info":{"title":"SchoolsBuddy Public API","version":"1.0"},"servers":[{"url":"https://publicapi-eu.schoolsbuddy.net","description":"EMEA Public Api server"},{"url":"https://publicapi-asia.schoolsbuddy.net","description":"Asia Public Api server"},{"url":"https://publicapi-us.schoolsbuddy.net","description":"US Public Api server"},{"url":"https://publicapi.schoolsbuddy.cn","description":"China Public Api server"},{"url":"https://identity-eu.schoolsbuddy.net","description":"EMEA Identity server"},{"url":"https://identity-asia.schoolsbuddy.net","description":"Asia Identity server"},{"url":"https://identity-us.schoolsbuddy.net","description":"US Identity server"},{"url":"https://accounts.schoolsbuddy.cn","description":"China Identity server"}],"security":[{"Bearer":[]}],"components":{"securitySchemes":{"Bearer":{"type":"apiKey","description":"Type \"Bearer\" followed by a space and a token.","name":"Authorization","in":"header"}},"schemas":{"EventAttendanceDto":{"type":"object","properties":{"id":{"type":"integer","format":"int32"},"calendarEventId":{"type":"integer","format":"int32"},"registerStatus":{"$ref":"#/components/schemas/AttendeeRegisterStateEnum"},"firstName":{"type":"string","nullable":true},"lastName":{"type":"string","nullable":true},"registerUpdatedAt":{"type":"string","format":"date-time","nullable":true},"registerUpdatedBy":{"type":"integer","format":"int32","nullable":true},"registerUpdatedByName":{"type":"string","nullable":true},"attendanceNote":{"type":"string","nullable":true}},"additionalProperties":false},"AttendeeRegisterStateEnum":{"enum":["Unset","Present","Absent","Late","Excused"],"type":"string"},"ErrorResponse":{"type":"object","properties":{"code":{"type":"string","description":"Gets or sets the machine-readable error code (e.g.\r\n`VALIDATION_FAILED`, `RESOURCE_NOT_FOUND`,\r\n`INTERNAL_ERROR`) per cross-cutting-design.md §5.1.","nullable":true},"error":{"type":"string","description":"Gets or sets the human-readable error message.","nullable":true}},"additionalProperties":false,"description":"Structured body for 4xx / 5xx responses on the new Public API surface:\r\na machine-readable SchoolsBuddy.PublicAPI.Models.ErrorResponse.Code plus a human-readable\r\nSchoolsBuddy.PublicAPI.Models.ErrorResponse.Error. See cross-cutting-design.md §5.3. This is additive —\r\nexisting endpoints continue returning their legacy plain-string /\r\nModelState shapes until migrated by their per-controller ticket."}}},"paths":{"/api/v1/Events/{id}/attendance":{"get":{"tags":["Events"],"summary":"Get event attendance information.","parameters":[{"name":"id","in":"path","description":"Event Id","required":true,"schema":{"type":"integer","format":"int32"}},{"name":"organisationId","in":"query","description":"Organisation Id (optional query parameter)","schema":{"type":"integer","format":"int32"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EventAttendanceDto"}}}}},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"404":{"description":"Not Found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Server Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}}}}
```

## PUT /api/v1/Events/{id}/attendance

> Update event attendance information.

```json
{"openapi":"3.0.1","info":{"title":"SchoolsBuddy Public API","version":"1.0"},"servers":[{"url":"https://publicapi-eu.schoolsbuddy.net","description":"EMEA Public Api server"},{"url":"https://publicapi-asia.schoolsbuddy.net","description":"Asia Public Api server"},{"url":"https://publicapi-us.schoolsbuddy.net","description":"US Public Api server"},{"url":"https://publicapi.schoolsbuddy.cn","description":"China Public Api server"},{"url":"https://identity-eu.schoolsbuddy.net","description":"EMEA Identity server"},{"url":"https://identity-asia.schoolsbuddy.net","description":"Asia Identity server"},{"url":"https://identity-us.schoolsbuddy.net","description":"US Identity server"},{"url":"https://accounts.schoolsbuddy.cn","description":"China Identity server"}],"security":[{"Bearer":[]}],"components":{"securitySchemes":{"Bearer":{"type":"apiKey","description":"Type \"Bearer\" followed by a space and a token.","name":"Authorization","in":"header"}},"schemas":{"EventAttendanceUpdateDto":{"required":["id","registerStatus"],"type":"object","properties":{"id":{"type":"integer","format":"int32"},"registerStatus":{"$ref":"#/components/schemas/AttendeeRegisterStateEnum"},"attendanceNote":{"type":"string","nullable":true}},"additionalProperties":false},"AttendeeRegisterStateEnum":{"enum":["Unset","Present","Absent","Late","Excused"],"type":"string"},"EventAttendanceDto":{"type":"object","properties":{"id":{"type":"integer","format":"int32"},"calendarEventId":{"type":"integer","format":"int32"},"registerStatus":{"$ref":"#/components/schemas/AttendeeRegisterStateEnum"},"firstName":{"type":"string","nullable":true},"lastName":{"type":"string","nullable":true},"registerUpdatedAt":{"type":"string","format":"date-time","nullable":true},"registerUpdatedBy":{"type":"integer","format":"int32","nullable":true},"registerUpdatedByName":{"type":"string","nullable":true},"attendanceNote":{"type":"string","nullable":true}},"additionalProperties":false},"ErrorResponse":{"type":"object","properties":{"code":{"type":"string","description":"Gets or sets the machine-readable error code (e.g.\r\n`VALIDATION_FAILED`, `RESOURCE_NOT_FOUND`,\r\n`INTERNAL_ERROR`) per cross-cutting-design.md §5.1.","nullable":true},"error":{"type":"string","description":"Gets or sets the human-readable error message.","nullable":true}},"additionalProperties":false,"description":"Structured body for 4xx / 5xx responses on the new Public API surface:\r\na machine-readable SchoolsBuddy.PublicAPI.Models.ErrorResponse.Code plus a human-readable\r\nSchoolsBuddy.PublicAPI.Models.ErrorResponse.Error. See cross-cutting-design.md §5.3. This is additive —\r\nexisting endpoints continue returning their legacy plain-string /\r\nModelState shapes until migrated by their per-controller ticket."}}},"paths":{"/api/v1/Events/{id}/attendance":{"put":{"tags":["Events"],"summary":"Update event attendance information.","parameters":[{"name":"id","in":"path","description":"Id","required":true,"schema":{"type":"integer","format":"int32"}},{"name":"organisationId","in":"query","description":"Organisation Id (optional query parameter)","schema":{"type":"integer","format":"int32"}}],"requestBody":{"description":"List of attendance updates","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EventAttendanceUpdateDto"}}}}},"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EventAttendanceDto"}}}}},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"404":{"description":"Not Found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Server Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}}}}
```

## PUT /api/v1/Events/studentAttendance

> Update student event attendance information.

```json
{"openapi":"3.0.1","info":{"title":"SchoolsBuddy Public API","version":"1.0"},"servers":[{"url":"https://publicapi-eu.schoolsbuddy.net","description":"EMEA Public Api server"},{"url":"https://publicapi-asia.schoolsbuddy.net","description":"Asia Public Api server"},{"url":"https://publicapi-us.schoolsbuddy.net","description":"US Public Api server"},{"url":"https://publicapi.schoolsbuddy.cn","description":"China Public Api server"},{"url":"https://identity-eu.schoolsbuddy.net","description":"EMEA Identity server"},{"url":"https://identity-asia.schoolsbuddy.net","description":"Asia Identity server"},{"url":"https://identity-us.schoolsbuddy.net","description":"US Identity server"},{"url":"https://accounts.schoolsbuddy.cn","description":"China Identity server"}],"security":[{"Bearer":[]}],"components":{"securitySchemes":{"Bearer":{"type":"apiKey","description":"Type \"Bearer\" followed by a space and a token.","name":"Authorization","in":"header"}},"schemas":{"EventStudentAttendanceUpdateDto":{"required":["attendanceStatus","endDateTime","startDateTime"],"type":"object","properties":{"id":{"type":"integer","format":"int32","nullable":true},"studentId":{"type":"string","nullable":true},"startDateTime":{"type":"string","format":"date-time"},"endDateTime":{"type":"string","format":"date-time"},"attendanceStatus":{"$ref":"#/components/schemas/AttendeeStatusEnum"},"attendanceNote":{"type":"string","nullable":true}},"additionalProperties":false},"AttendeeStatusEnum":{"enum":["ToBeConfirmed","Yes","No","IfRequired","Confirmed"],"type":"string"},"ErrorResponse":{"type":"object","properties":{"code":{"type":"string","description":"Gets or sets the machine-readable error code (e.g.\r\n`VALIDATION_FAILED`, `RESOURCE_NOT_FOUND`,\r\n`INTERNAL_ERROR`) per cross-cutting-design.md §5.1.","nullable":true},"error":{"type":"string","description":"Gets or sets the human-readable error message.","nullable":true}},"additionalProperties":false,"description":"Structured body for 4xx / 5xx responses on the new Public API surface:\r\na machine-readable SchoolsBuddy.PublicAPI.Models.ErrorResponse.Code plus a human-readable\r\nSchoolsBuddy.PublicAPI.Models.ErrorResponse.Error. See cross-cutting-design.md §5.3. This is additive —\r\nexisting endpoints continue returning their legacy plain-string /\r\nModelState shapes until migrated by their per-controller ticket."}}},"paths":{"/api/v1/Events/studentAttendance":{"put":{"tags":["Events"],"summary":"Update student event attendance information.","parameters":[{"name":"organisationId","in":"query","description":"Organisation Id (optional query parameter)","schema":{"type":"integer","format":"int32"}}],"requestBody":{"description":"List of attendance updates","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EventStudentAttendanceUpdateDto"}}}},"responses":{"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"404":{"description":"Not Found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Server Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}}}}
```
