POST SecuritySystemAPI/LocationSettings/AddLocationSettings

Request Information

URI Parameters

None.

Body Parameters

LocationSettingsInfo
NameDescriptionTypeAdditional 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.

Request Formats

application/json, text/json

Sample:
{
  "ID": "eb11fd5e-0dbd-4f39-b438-edb78424afe5",
  "CityID": "9828fa3c-cb36-4410-9245-72c90f169c04",
  "LocationID": "4c5ec436-c64c-4896-815d-ce846e16379d",
  "BranchID": "b6a0ba72-dff9-4e43-82ff-5b2190ce16f9",
  "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>b6a0ba72-dff9-4e43-82ff-5b2190ce16f9</BranchID>
  <CityID>9828fa3c-cb36-4410-9245-72c90f169c04</CityID>
  <ID>eb11fd5e-0dbd-4f39-b438-edb78424afe5</ID>
  <LocationID>4c5ec436-c64c-4896-815d-ce846e16379d</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>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'LocationSettingsInfo'.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>