You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Change current hardcoding of sites and floor details.
In order to achieve this UI will call api /organisation/{orgId}/sites to retrieve all details for orgId passed. https://www.bookopendesk.com/organisation/{orgId}
@kanwalnainsingh , current information being shown as mutiles sites with each site having no of Floors, total desks, opendesk and location. But the API response having multiple floors for orgID. we just need to change hard coding to binding from API right? In this i think API response should as below.
Current State
At present, when user continue as organization and land here https://www.bookopendesk.com/organisation/
Data rendered in screen for site and floors are hardcoded.
Requirement
Change current hardcoding of sites and floor details.
In order to achieve this UI will call api /organisation/{orgId}/sites to retrieve all details for orgId passed. https://www.bookopendesk.com/organisation/{orgId}
Response structure would be like below.
{
"orgId": "string",
"id": "string",
"name": "string",
"location": "string",
"floors": [
{
"floorId": "string",
"name": "string",
"openDesk": "string",
"reservedDesk": "string"
}
]
}
The text was updated successfully, but these errors were encountered: