POST SecuritySystemAPI/LocationSettings/GetLocationSettingsByID/{GUID}/{ID}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
GUID | string |
Required |
|
ID | 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": "77ebd9d1-bb8b-4bb2-af70-1ef354e59cad", "CityID": "853d4e97-abfb-471e-9795-0899196e4fee", "LocationID": "52c827ef-87cc-4947-8fd7-8a412f17aa5c", "BranchID": "17107dcc-a87d-4c16-b3b3-a3bea07f2582", "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>17107dcc-a87d-4c16-b3b3-a3bea07f2582</BranchID> <CityID>853d4e97-abfb-471e-9795-0899196e4fee</CityID> <ID>77ebd9d1-bb8b-4bb2-af70-1ef354e59cad</ID> <LocationID>52c827ef-87cc-4947-8fd7-8a412f17aa5c</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>