POST SecuritySystemAPI/LocationSettings/GetLocationSettingsByLocationId/{GUID}/{LocID}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
GUID | string |
Required |
|
LocID | 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": "9abf6d53-d331-4f47-9ee3-b26af9d4b795", "CityID": "c93d2300-08e9-4987-a62b-fe91c7315ca0", "LocationID": "5b4f1ed6-58d1-495d-8f3d-fc8b475068b9", "BranchID": "342b1f5f-fbe0-4d5c-99b2-ba1d988b6ffb", "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>342b1f5f-fbe0-4d5c-99b2-ba1d988b6ffb</BranchID> <CityID>c93d2300-08e9-4987-a62b-fe91c7315ca0</CityID> <ID>9abf6d53-d331-4f47-9ee3-b26af9d4b795</ID> <LocationID>5b4f1ed6-58d1-495d-8f3d-fc8b475068b9</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>