Get system URLs configuration
Mobile app
Get System URLs
Returns system URLs like terms and conditions, privacy policy, FAQs, and support email.
GET
Get system URLs configuration
Retrieve system URLs including terms and conditions, privacy policy, FAQs, and support email. This endpoint provides all the legal and support-related URLs that need to be displayed in the mobile app.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.
Use Cases
- Display links in settings or about screens
- Show legal documents when required
- Provide support contact information
- Ensure compliance with app store requirements
Response
Returns asystemUrls object containing:
termsAndConditions: URL to the terms and conditions pageprivacyPolicy: URL to the privacy policy pagefaqs: URL to the frequently asked questions pagesupportEmail: Email address for customer support
Example
Request
cURL
JavaScript
Swift/iOS
Response
See Also
- Update System URLs - Admin endpoint to modify these URLs
- Get All Configuration - Get both system and social media URLs
Response
System URLs 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"
}
}