GET SecuritySystemAPI/LocationSettings/GetLocationSettingsByCityId/{GUID}/{CityID}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
GUID | string |
Required |
|
CityID | string |
Required |
Body Parameters
None.
Response Information
Resource Description
LocationSettingsInfoName | Description | Type | Additional information |
---|---|---|---|
ID | globally unique identifier |
None. |
|
CityID | globally unique identifier |
None. |
|
LocationID | globally unique identifier |
None. |
|
BranchID | globally unique identifier |
None. |
|
ShiftNumber | integer |
None. |
|
WorkInRamadan | boolean |
None. |
|
WorkInEid | boolean |
None. |
|
WorkInWeekEnd | boolean |
None. |
|
WorkInVacations | boolean |
None. |
|
PeriodOneCapacity | integer |
None. |
|
PeriodTwoCapacity | integer |
None. |
|
PeriodThreeCapacity | integer |
None. |
|
PeriodFourCapacity | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "ID": "b4e8032c-ef76-46c1-99b0-9df419acfcfe", "CityID": "1893b035-d6f3-420a-b288-8fc3c897373b", "LocationID": "256dc8ab-324a-4459-aa51-b7ea58679e14", "BranchID": "f5ebded0-d38a-4b2e-abb6-79b4d3766b96", "ShiftNumber": 5, "WorkInRamadan": true, "WorkInEid": true, "WorkInWeekEnd": true, "WorkInVacations": true, "PeriodOneCapacity": 10, "PeriodTwoCapacity": 11, "PeriodThreeCapacity": 12, "PeriodFourCapacity": 13 }
application/xml, text/xml
Sample:
<LocationSettingsInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SecuritySystem.API.Models"> <BranchID>f5ebded0-d38a-4b2e-abb6-79b4d3766b96</BranchID> <CityID>1893b035-d6f3-420a-b288-8fc3c897373b</CityID> <ID>b4e8032c-ef76-46c1-99b0-9df419acfcfe</ID> <LocationID>256dc8ab-324a-4459-aa51-b7ea58679e14</LocationID> <PeriodFourCapacity>13</PeriodFourCapacity> <PeriodOneCapacity>10</PeriodOneCapacity> <PeriodThreeCapacity>12</PeriodThreeCapacity> <PeriodTwoCapacity>11</PeriodTwoCapacity> <ShiftNumber>5</ShiftNumber> <WorkInEid>true</WorkInEid> <WorkInRamadan>true</WorkInRamadan> <WorkInVacations>true</WorkInVacations> <WorkInWeekEnd>true</WorkInWeekEnd> </LocationSettingsInfo>