POST shows/{showId}/facilities/{showFacilityId}/locations

Request Information

URI Parameters

NameDescriptionTypeAdditional information
showId

integer

Required

showFacilityId

integer

Required

Body Parameters

Collection of ShowLocationCreateDto
NameDescriptionTypeAdditional information
Name

string

Required

FacilityMasterLocationId

integer

None.

ShowFacilityId

integer

None.

ParentShowLocationId

integer

None.

ChildrenShowLocations

Collection of ShowLocationCreateDto

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "Name": "sample string 1",
    "FacilityMasterLocationId": 1,
    "ShowFacilityId": 2,
    "ParentShowLocationId": 1,
    "ChildrenShowLocations": []
  },
  {
    "Name": "sample string 1",
    "FacilityMasterLocationId": 1,
    "ShowFacilityId": 2,
    "ParentShowLocationId": 1,
    "ChildrenShowLocations": []
  }
]

Response Information

Resource Description

Collection of ShowLocationDto
NameDescriptionTypeAdditional information
Id

integer

None.

FacilityMasterLocationId

integer

None.

Name

string

None.

ParentShowLocationId

integer

None.

ShowFacilityId

integer

None.

ParentShowLocation

ShowLocationDto

None.

ChildrenShowLocations

Collection of ShowLocationDto

None.

IsDeleted

boolean

None.

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "FacilityMasterLocationId": 1,
    "Name": "sample string 2",
    "ParentShowLocationId": 1,
    "ShowFacilityId": 3,
    "ChildrenShowLocations": [],
    "IsDeleted": true
  },
  {
    "Id": 1,
    "FacilityMasterLocationId": 1,
    "Name": "sample string 2",
    "ParentShowLocationId": 1,
    "ShowFacilityId": 3,
    "ChildrenShowLocations": [],
    "IsDeleted": true
  }
]