Get all app configurations
Mobile app
App Configuration
Returns both system URLs and social media URLs configuration.
GET
Get all app configurations
Retrieve all app configuration settings including system URLs and social media URLs. This endpoint returns the complete configuration that mobile apps need to render links, show support information, and display social media connections.Documentation Index
Fetch the complete documentation index at: https://docs.handauncle.com/llms.txt
Use this file to discover all available pages before exploring further.
Response
The response includes two main configuration objects:-
systemUrls: Legal and support-related URLs
termsAndConditions: Terms and conditions page URLprivacyPolicy: Privacy policy page URLfaqs: Frequently asked questions page URLsupportEmail: Customer support email address
-
socialMediaUrls: Social media profile URLs
facebook: Facebook page URLinstagram: Instagram profile URLlinkedin: LinkedIn company page URLtwitter: Twitter/X profile URL
Usage
This endpoint is typically called once when the app starts to cache the configuration locally. The URLs are displayed in:- Settings screens
- About pages
- Footer links
- Share dialogs
- Contact support flows
Example
Request
cURL
JavaScript
Kotlin/Android
Response
Configuration Management
To update these URLs, administrators can use the dedicated update endpoints: Both update endpoints require theBACKEND_SECRET for authentication.Response
Configuration data returned successfully.
Available options:
true Example:
{
"systemUrls": {
"termsAndConditions": "https://www.handauncle.com/terms",
"privacyPolicy": "https://www.handauncle.com/privacy",
"faqs": "https://www.handauncle.com/faqs",
"supportEmail": "hello@handauncle.com"
},
"socialMediaUrls": {
"facebook": "https://www.facebook.com/handauncle",
"instagram": "https://www.instagram.com/handauncle",
"linkedin": "https://www.linkedin.com/company/handauncle",
"twitter": "https://twitter.com/handauncle"
}
}