GET /api/locations 200 { "total": 2, "subtotal": 2, "page": 1, "per_page": 20, "search": null, "sort": { "by": null, "order": null }, "data": [ { "ancestry": null, "parent_id": null, "parent_name": null, "created_at": "2021-05-19 07:30:49 UTC", "updated_at": "2021-05-19 07:30:49 UTC", "id": 255093256, "name": "Location 1", "title": "Location 1", "description": null }, { "ancestry": null, "parent_id": null, "parent_name": null, "created_at": "2021-05-19 07:30:49 UTC", "updated_at": "2021-05-19 07:30:49 UTC", "id": 373111740, "name": "Location 2", "title": "Location 2", "description": null } ] }
Param name | Description |
---|---|
location_id optional |
Set the current location context for the request Validations:
|
organization_id optional |
Set the current organization context for the request Validations:
|
search optional |
filter results Validations:
|
order optional |
Sort field and order, eg. ‘id DESC’ Validations:
|
page optional |
Page number, starting at 1 Validations:
|
per_page optional |
Number of results per page to return, ‘all’ to return all results Validations:
|
Field name | Type | Possible values |
---|---|---|
description | text | |
id | integer | |
location_id | integer | |
name | string | |
title | string |
GET /api/locations/447626493 200 { "select_all_types": [], "description": null, "created_at": "2021-05-19 07:19:45 UTC", "updated_at": "2021-05-19 07:19:45 UTC", "ancestry": null, "parent_id": null, "parent_name": null, "id": 447626493, "name": "loc73", "title": "loc73", "users": [], "smart_proxies": [], "subnets": [], "compute_resources": [], "media": [], "ptables": [], "provisioning_templates": [], "domains": [], "realms": [], "environments": [], "hostgroups": [], "organizations": [], "hosts_count": 0, "parameters": [ { "priority": 20, "created_at": "2021-05-19 07:19:45 UTC", "updated_at": "2021-05-19 07:19:45 UTC", "id": 767575239, "name": "foo", "parameter_type": "string", "value": "*****" } ] }
Param name | Description |
---|---|
location_id optional |
Set the current location context for the request Validations:
|
organization_id optional |
Set the current organization context for the request Validations:
|
show_hidden_parameters optional |
Display hidden parameter values Validations:
|
id required |
Validations:
|
POST /api/locations { "location": { "name": "" } } 422 { "error": { "id": null, "errors": { "name": [ "can't be blank" ] }, "full_messages": [ "Name can't be blank" ] } }
Param name | Description |
---|---|
location_id optional |
Set the current location context for the request Validations:
|
organization_id optional |
Set the current organization context for the request 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[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:
|
location[organization_ids] optional , nil allowed |
Associated organization IDs Validations:
|
PUT /api/locations/255093256-Location%201 { "location": { "name": "" } } 422 { "error": { "id": 255093256, "errors": { "name": [ "can't be blank" ] }, "full_messages": [ "Name can't be blank" ] } }
Param name | Description |
---|---|
location_id optional |
Set the current location context for the request Validations:
|
organization_id optional |
Set the current organization context for the request 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[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:
|
location[organization_ids] optional , nil allowed |
Associated organization IDs Validations:
|
id required |
Validations:
|
DELETE /api/locations/373111740-Location%202 { "location": {} } 200 { "id": 373111740, "name": "Location 2", "created_at": "2021-05-19T07:30:49.029Z", "updated_at": "2021-05-19T07:30:49.029Z", "ignore_types": [], "ancestry": null, "title": "Location 2", "description": null }
Param name | Description |
---|---|
location_id optional |
Set the current location context for the request Validations:
|
organization_id optional |
Set the current organization context for the request Validations:
|
id required |
Validations:
|