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/update/{id}

PUT
https://www.falken.ltd/api/organization/classyears/update/{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
Body Params application/json
id
string <uuid>
optional
organizationId
string <uuid>
optional
graduationDate
string <date-time>
optional
startDate
string <date-time>
optional
endDate
string <date-time>
optional
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",
    "notes": "string",
    "createdDate": "2019-08-24T14:15:22Z",
    "lastUpdatedDate": "2019-08-24T14:15:22Z"
}

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 PUT 'https://www.falken.ltd/api/organization/classyears/update/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "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",
    "notes": "string",
    "createdDate": "2019-08-24T14:15:22Z",
    "lastUpdatedDate": "2019-08-24T14:15:22Z"
}'

Responses

🟢204No Content
application/json
No Content
Body
object {0}
Example
{}
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
Modified at 2024-09-11 15:37:46
Previous
/api/organization/classyears/add
Next
/api/organization/classyears/delete/{id}
Built with