GET /api/templates/:template_id/foreign_input_sets
List foreign input sets

Examples

GET /api/templates/1007982164/foreign_input_sets
200
{
  "total": 1,
  "subtotal": 1,
  "page": 1,
  "per_page": 20,
  "search": null,
  "sort": {
    "by": null,
    "order": null
  },
  "results": [
    {
      "template_id": 1007982164,
      "target_template_name": "Job template 233",
      "include_all": true,
      "include": null,
      "exclude": null,
      "id": 18,
      "target_template_id": 1007982165
    }
  ]
}

Params

Param name Description
location_id
optional

Set the current location context for the request

Validations:

  • Integer

organization_id
optional

Set the current organization context for the request

Validations:

  • Integer

template_id
required

Validations:

  • string from 2 to 128 characters containing only alphanumeric characters, space, '_', '-' with no leading or trailing space..

search
optional

filter results

Validations:

  • String

order
optional

Sort and order by a searchable field, e.g. '<field> DESC'

Validations:

  • String

page
optional

Page number, starting at 1

Validations:

  • Must be a number.

per_page
optional

Number of results per page to return, 'all' to return all results

Validations:

  • Must match regular expression /\A([1-9]\d*|all)\Z$/.


GET /api/templates/:template_id/foreign_input_sets/:id
Show foreign input set details

Examples

GET /api/templates/1007982170-Job%20template%20238/foreign_input_sets/20
200
{
  "template_id": 1007982170,
  "target_template_name": "Job template 239",
  "include_all": true,
  "include": null,
  "exclude": null,
  "id": 20,
  "target_template_id": 1007982171
}

Params

Param name Description
location_id
optional

Set the current location context for the request

Validations:

  • Integer

organization_id
optional

Set the current organization context for the request

Validations:

  • Integer

template_id
required

Validations:

  • string from 2 to 128 characters containing only alphanumeric characters, space, '_', '-' with no leading or trailing space..

id
required

Validations:

  • string from 2 to 128 characters containing only alphanumeric characters, space, '_', '-' with no leading or trailing space..


POST /api/templates/:template_id/foreign_input_sets
Create a foreign input set

Examples

POST /api/templates/1007982161-Job%20template%20229/foreign_input_sets
{
  "foreign_input_set": {
    "target_template_id": 1007982163
  }
}
201
{
  "template_id": 1007982161,
  "target_template_name": "Job template 231",
  "include_all": true,
  "include": null,
  "exclude": null,
  "id": 17,
  "target_template_id": 1007982163
}

Params

Param name Description
location_id
optional

Set the current location context for the request

Validations:

  • Integer

organization_id
optional

Set the current organization context for the request

Validations:

  • Integer

template_id
required

Validations:

  • string from 2 to 128 characters containing only alphanumeric characters, space, '_', '-' with no leading or trailing space..

foreign_input_set
required

Validations:

  • Hash

foreign_input_set[target_template_id]
required

Target template ID

Validations:

  • string from 2 to 128 characters containing only alphanumeric characters, space, '_', '-' with no leading or trailing space..

foreign_input_set[include_all]
optional , nil allowed

Include all inputs from the foreign template

Validations:

  • Must be one of: true, false, 1, 0.

foreign_input_set[include]
optional , nil allowed

A comma separated list of input names to be included from the foreign template.

Validations:

  • String

foreign_input_set[exclude]
optional , nil allowed

A comma separated list of input names to be included from the foreign template.

Validations:

  • String

foreign_input_set[description]
optional , nil allowed

Input set description

Validations:

  • String


DELETE /api/templates/:template_id/foreign_input_sets/:id
Delete a foreign input set

Examples

DELETE /api/templates/1007982179-Job%20template%20247/foreign_input_sets/23
{
  "foreign_input_set": {}
}
200
{
  "id": 23,
  "template_id": 1007982179,
  "target_template_id": 1007982180,
  "include_all": true,
  "include": null,
  "exclude": null
}

Params

Param name Description
location_id
optional

Set the current location context for the request

Validations:

  • Integer

organization_id
optional

Set the current organization context for the request

Validations:

  • Integer

template_id
required

Validations:

  • string from 2 to 128 characters containing only alphanumeric characters, space, '_', '-' with no leading or trailing space..

id
required

Validations:

  • string from 2 to 128 characters containing only alphanumeric characters, space, '_', '-' with no leading or trailing space..


PUT /api/templates/:template_id/foreign_input_sets/:id
Update a foreign input set

Examples

PUT /api/templates/1007982167-Job%20template%20235/foreign_input_sets/19
{
  "foreign_input_set": {
    "include_all": false
  }
}
200
{
  "include_all": false,
  "id": 19,
  "template_id": 1007982167,
  "target_template_id": 1007982168,
  "include": null,
  "exclude": null
}

Params

Param name Description
location_id
optional

Set the current location context for the request

Validations:

  • Integer

organization_id
optional

Set the current organization context for the request

Validations:

  • Integer

template_id
required

Validations:

  • string from 2 to 128 characters containing only alphanumeric characters, space, '_', '-' with no leading or trailing space..

id
required

Validations:

  • string from 2 to 128 characters containing only alphanumeric characters, space, '_', '-' with no leading or trailing space..

foreign_input_set
required

Validations:

  • Hash

foreign_input_set[target_template_id]
optional

Target template ID

Validations:

  • string from 2 to 128 characters containing only alphanumeric characters, space, '_', '-' with no leading or trailing space..

foreign_input_set[include_all]
optional , nil allowed

Include all inputs from the foreign template

Validations:

  • Must be one of: true, false, 1, 0.

foreign_input_set[include]
optional , nil allowed

A comma separated list of input names to be included from the foreign template.

Validations:

  • String

foreign_input_set[exclude]
optional , nil allowed

A comma separated list of input names to be included from the foreign template.

Validations:

  • String

foreign_input_set[description]
optional , nil allowed

Input set description

Validations:

  • String