Falken
Home
Falken
  • Website
  • News
Home
Falken
  • Website
  • News
  1. Organization
  • Athlete
    • /api/Athlete/Create
      POST
  • Auth
    • /api/Auth/login
      POST
    • /api/Auth/refresh-token
      POST
    • /api/Auth/logout
      POST
    • /api/Auth/me
      GET
  • Organization
    • /api/organization/classyears/add
      POST
    • /api/organization/classyears/update/{id}
      PUT
    • /api/organization/classyears/delete/{id}
      DELETE
    • /api/organization/classyears/{id}
      GET
    • /api/organization/{organizationId}/classyears/all
      GET
    • /api/organization/{organizationId}/athletes
      GET
  • User
    • /api/User/organizations
      GET
  • UserAddress
    • /api/UserAddress/all
      GET
    • /api/UserAddress/id/{id}
      GET
    • /api/UserAddress/Add
      POST
    • /api/UserAddress/update/{id}
      PUT
    • /api/UserAddress/delete/{id}
      DELETE
  1. Organization

/api/organization/classyears/{id}

GET
https://www.falken.ltd/api/organization/classyears/{id}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
id
string <uuid>
required

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://www.falken.ltd/api/organization/classyears/'

Responses

🟢200OK
text/plain
OK
Body
id
string <uuid>
optional
organizationId
string <uuid>
optional
graduationDate
string <date-time>
optional
startDate
string <date-time>
optional
endDate
string <date-time>
optional
className
string  | null 
read-onlyoptional
notes
string  | null 
optional
createdDate
string <date-time>
optional
lastUpdatedDate
string <date-time>
optional
Example
{
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "organizationId": "7bc05553-4b68-44e8-b7bc-37be63c6d9e9",
    "graduationDate": "2019-08-24T14:15:22Z",
    "startDate": "2019-08-24T14:15:22Z",
    "endDate": "2019-08-24T14:15:22Z",
    "className": "string",
    "notes": "string",
    "createdDate": "2019-08-24T14:15:22Z",
    "lastUpdatedDate": "2019-08-24T14:15:22Z"
}
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
Modified at 2024-09-11 15:37:46
Previous
/api/organization/classyears/delete/{id}
Next
/api/organization/{organizationId}/classyears/all
Built with