POST 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": "380120a7-f68f-4901-a40a-5ab61b6dadc1", "CityID": "c0d50a32-4141-4f39-bd82-b56a8b10df8d", "LocationID": "df6d13bd-d172-4906-bf81-99db13fe0887", "BranchID": "b7687c33-9280-46a0-b6af-3bd4f258fdf6", "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>b7687c33-9280-46a0-b6af-3bd4f258fdf6</BranchID> <CityID>c0d50a32-4141-4f39-bd82-b56a8b10df8d</CityID> <ID>380120a7-f68f-4901-a40a-5ab61b6dadc1</ID> <LocationID>df6d13bd-d172-4906-bf81-99db13fe0887</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>