Skip to main content

Get ResApp widget context.

Returns the widget context for a given ResApp context ID.

GET
/api/partners/v1/residentapp/:resident_app_context_id/widget-context/

Request

Example requestGET
$ curl -X GET \
    -H "Authorization: Bearer YOUR_API_KEY" \
    "https://api.funnelleasing.com/api/partners/v1/residentapp/:resident_app_context_id/widget-context/"

Response

Example responseJSON200 · application/json
{
"resident_app_context_id": 123,
"theme": {
"primaryColor": "#FF5733",
"secondaryColor": "#335BFF",
"fontFamily": "Arial"
},
"community_information": {
"communityId": 456,
"companyId": 789,
"name": "Sunset Apartments",
"address": "123 Main St",
"city": "New York",
"state": "NY",
"postalCode": "10001"
},
"resident_information": {
"pmsIdentifier": "PMS-12345",
"leaseStartDate": "2024-01-15",
"firstName": "Jane",
"lastName": "Doe",
"dateOfBirth": "1990-05-20",
"email": "jane.doe@example.com",
"phoneNumber": "212-555-1234",
"unitNumber": "4A",
"addressLine1": "123 Main St",
"addressLine2": "4A",
"city": "New York",
"state": "NY",
"postalCode": "10001"
}
}