GET /api/locations
200
{
"total": 2,
"subtotal": 2,
"page": 1,
"per_page": 20,
"search": null,
"sort": {
"by": null,
"order": null
},
"locations": [
{
"ancestry": null,
"parent_id": null,
"parent_name": null,
"created_at": "2019-02-20 13:21:44 UTC",
"updated_at": "2019-02-20 13:21:44 UTC",
"id": 255093256,
"name": "Location 1",
"title": "Location 1",
"description": null
},
{
"ancestry": null,
"parent_id": null,
"parent_name": null,
"created_at": "2019-02-20 13:21:44 UTC",
"updated_at": "2019-02-20 13:21:44 UTC",
"id": 373111740,
"name": "Location 2",
"title": "Location 2",
"description": null
}
]
}
| Param name | Description |
|---|---|
|
location_id optional |
Scope by locations Validations:
|
|
organization_id optional |
Scope by organizations Validations:
|
|
search optional |
filter results Validations:
|
|
order optional |
Sort field and order, eg. ‘id DESC’ Validations:
|
|
page optional |
paginate results Validations:
|
|
per_page optional |
number of entries per request Validations:
|
GET /api/locations/447626439
200
{
"select_all_types": [],
"description": null,
"created_at": "2019-02-20 13:20:56 UTC",
"updated_at": "2019-02-20 13:20:56 UTC",
"ancestry": null,
"parent_id": null,
"parent_name": null,
"id": 447626439,
"name": "loc34",
"title": "loc34",
"users": [],
"smart_proxies": [],
"subnets": [],
"compute_resources": [],
"media": [],
"config_templates": [],
"ptables": [],
"provisioning_templates": [],
"domains": [],
"realms": [],
"environments": [],
"hostgroups": [],
"organizations": [],
"hosts_count": 0,
"parameters": [
{
"priority": 20,
"created_at": "2019-02-20 13:20:56 UTC",
"updated_at": "2019-02-20 13:20:56 UTC",
"id": 767575241,
"name": "foo",
"value": "*****"
}
]
}
| Param name | Description |
|---|---|
|
location_id optional |
Scope by locations Validations:
|
|
organization_id optional |
Scope by organizations Validations:
|
|
show_hidden_parameters optional |
Display hidden parameter values Validations:
|
|
id required |
Validations:
|
POST /api/locations
{
"location": {
"name": "loc1"
}
}
403
{
"error": {
"message": "Access denied",
"details": "Missing one of the required permissions: create_locations"
}
}
| Param name | Description |
|---|---|
|
location_id optional |
Scope by locations Validations:
|
|
organization_id optional |
Scope by organizations Validations:
|
|
location required |
Validations:
|
|
location[name] required |
Validations:
|
|
location[description] optional , nil allowed |
Validations:
|
|
location[user_ids] optional , nil allowed |
User IDs Validations:
|
|
location[smart_proxy_ids] optional , nil allowed |
Smart proxy IDs Validations:
|
|
location[compute_resource_ids] optional , nil allowed |
Compute resource IDs Validations:
|
|
location[medium_ids] optional , nil allowed |
Medium IDs Validations:
|
|
location[config_template_ids] optional , nil allowed |
Provisioning template IDs Validations:
|
|
location[ptable_ids] optional , nil allowed |
Partition template IDs Validations:
|
|
location[provisioning_template_ids] optional , nil allowed |
Provisioning template IDs Validations:
|
|
location[domain_ids] optional , nil allowed |
Domain IDs Validations:
|
|
location[realm_ids] optional , nil allowed |
Realm IDs Validations:
|
|
location[hostgroup_ids] optional , nil allowed |
Host group IDs Validations:
|
|
location[environment_ids] optional , nil allowed |
Environment IDs Validations:
|
|
location[subnet_ids] optional , nil allowed |
Subnet IDs Validations:
|
|
location[parent_id] optional , nil allowed |
Parent ID Validations:
|
|
location[ignore_types] optional , nil allowed |
List of resources types that will be automatically associated Validations:
|
POST /api/locations/447626479
{
"location": {
"name": ""
}
}
422
{
"error": {
"id": 447626479,
"errors": {
"name": [
"can't be blank"
]
},
"full_messages": [
"Name can't be blank"
]
}
}
| Param name | Description |
|---|---|
|
location_id optional |
Scope by locations Validations:
|
|
organization_id optional |
Scope by organizations Validations:
|
|
location required |
Validations:
|
|
location[name] optional |
Validations:
|
|
location[description] optional , nil allowed |
Validations:
|
|
location[user_ids] optional , nil allowed |
User IDs Validations:
|
|
location[smart_proxy_ids] optional , nil allowed |
Smart proxy IDs Validations:
|
|
location[compute_resource_ids] optional , nil allowed |
Compute resource IDs Validations:
|
|
location[medium_ids] optional , nil allowed |
Medium IDs Validations:
|
|
location[config_template_ids] optional , nil allowed |
Provisioning template IDs Validations:
|
|
location[ptable_ids] optional , nil allowed |
Partition template IDs Validations:
|
|
location[provisioning_template_ids] optional , nil allowed |
Provisioning template IDs Validations:
|
|
location[domain_ids] optional , nil allowed |
Domain IDs Validations:
|
|
location[realm_ids] optional , nil allowed |
Realm IDs Validations:
|
|
location[hostgroup_ids] optional , nil allowed |
Host group IDs Validations:
|
|
location[environment_ids] optional , nil allowed |
Environment IDs Validations:
|
|
location[subnet_ids] optional , nil allowed |
Subnet IDs Validations:
|
|
location[parent_id] optional , nil allowed |
Parent ID Validations:
|
|
location[ignore_types] optional , nil allowed |
List of resources types that will be automatically associated Validations:
|
|
id required |
Validations:
|
DELETE /api/locations/447626484-loc264
{
"location": {}
}
404
{
"error": {
"message": "Resource location not found by id '447626484-loc264'"
}
}
| Param name | Description |
|---|---|
|
location_id optional |
Scope by locations Validations:
|
|
organization_id optional |
Scope by organizations Validations:
|
|
id required |
Validations:
|