Me Assessments
curl --request GET \
--url https://solarmoney.up.railway.app/api/me/assessments \
--header 'Authorization: Bearer <token>'import requests
url = "https://solarmoney.up.railway.app/api/me/assessments"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://solarmoney.up.railway.app/api/me/assessments', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}User Account
Me Assessments
GET
/
api
/
me
/
assessments
Me Assessments
curl --request GET \
--url https://solarmoney.up.railway.app/api/me/assessments \
--header 'Authorization: Bearer <token>'import requests
url = "https://solarmoney.up.railway.app/api/me/assessments"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://solarmoney.up.railway.app/api/me/assessments', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}