Falken
Home
Falken
  • Website
  • News
Home
Falken
  • Website
  • News
  1. UserAddress
  • 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. UserAddress

/api/UserAddress/all

GET
https://www.falken.ltd/api/UserAddress/all

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

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/UserAddress/all'

Responses

🟢200OK
text/plain
OK
Body
array of:
id
string <uuid>
optional
street
string  | null 
optional
city
string  | null 
optional
state
string  | null 
optional
postalCode
string  | null 
optional
country
string  | null 
optional
addressType
string  | null 
optional
protectionStatus
string  | null 
optional
notes
string  | null 
optional
Examples
{
    "id": "d2719b29-1f5d-41a4-bd7e-53c7ff2b16a2",
    "street": "123 Example Street",
    "city": "Example City",
    "state": "New York",
    "postalCode": "10001",
    "country": "United States",
    "addressType": "Home Address",
    "protectionStatus": "Private",
    "notes": "Primary residence"
}
🟠401Unauthorized
Modified at 2024-09-11 15:37:46
Previous
/api/User/organizations
Next
/api/UserAddress/id/{id}
Built with