Get Member Access Profile
curl --request GET \
--url https://api.thefaithapp.com/v1/platform/access-profile \
--header 'Authorization: Bearer <token>' \
--header 'X-API-Key: <api-key>'const options = {
method: 'GET',
headers: {'X-API-Key': '<api-key>', Authorization: 'Bearer <token>'}
};
fetch('https://api.thefaithapp.com/v1/platform/access-profile', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.thefaithapp.com/v1/platform/access-profile"
headers = {
"X-API-Key": "<api-key>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text){
"data": {
"profile": {
"preferred_locale": "sw",
"preferred_caption_language": "en",
"text_scale": "large",
"contrast_mode": "high",
"reading_font": "dyslexia_friendly",
"reduce_motion": true,
"audio_first": false,
"data_saver": true,
"load_images": false,
"large_print_bulletins": true,
"sign_language_interpreter": false,
"mobility_assistance": true,
"audio_description": false,
"sensory_notes": null,
"dietary_allergy_notes": null,
"additional_support_notes": null,
"share_with_support_team": true,
"support_request_status": "requested"
},
"church": {
"default_locale": "en",
"supported_locales": [
"en",
"sw"
],
"access_support_email": "care@example.church",
"low_bandwidth_stream_url": "https://stream.example.church/audio"
},
"offline_capabilities": [
{
"key": "sermons",
"label": "Downloaded sermon audio",
"available": true
}
]
}
}{
"status": "Error",
"message": "The request could not be completed.",
"error": null,
"error_message": null,
"errors": {}
}Access & Inclusion
Get Member Access Profile
Returns the authenticated member’s app preferences, member-owned accessibility-support details, church language settings, and available offline capabilities. Support details are never exposed through a staff API unless the member explicitly shares them.
GET
/
v1
/
platform
/
access-profile
Get Member Access Profile
curl --request GET \
--url https://api.thefaithapp.com/v1/platform/access-profile \
--header 'Authorization: Bearer <token>' \
--header 'X-API-Key: <api-key>'const options = {
method: 'GET',
headers: {'X-API-Key': '<api-key>', Authorization: 'Bearer <token>'}
};
fetch('https://api.thefaithapp.com/v1/platform/access-profile', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.thefaithapp.com/v1/platform/access-profile"
headers = {
"X-API-Key": "<api-key>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text){
"data": {
"profile": {
"preferred_locale": "sw",
"preferred_caption_language": "en",
"text_scale": "large",
"contrast_mode": "high",
"reading_font": "dyslexia_friendly",
"reduce_motion": true,
"audio_first": false,
"data_saver": true,
"load_images": false,
"large_print_bulletins": true,
"sign_language_interpreter": false,
"mobility_assistance": true,
"audio_description": false,
"sensory_notes": null,
"dietary_allergy_notes": null,
"additional_support_notes": null,
"share_with_support_team": true,
"support_request_status": "requested"
},
"church": {
"default_locale": "en",
"supported_locales": [
"en",
"sw"
],
"access_support_email": "care@example.church",
"low_bandwidth_stream_url": "https://stream.example.church/audio"
},
"offline_capabilities": [
{
"key": "sermons",
"label": "Downloaded sermon audio",
"available": true
}
]
}
}{
"status": "Error",
"message": "The request could not be completed.",
"error": null,
"error_message": null,
"errors": {}
}Was this page helpful?