POST shows/{showId}/facilities/{showFacilityId}/locations
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| showId | integer |
Required |
|
| showFacilityId | integer |
Required |
Body Parameters
Collection of ShowLocationCreateDto| Name | Description | Type | Additional 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| Name | Description | Type | Additional 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
}
]