GET /api/architectures
List all architectures.

參數

參數名字 描述
search
選填

篩選結果

Validations:

  • Must be String

order
選填

排序結果

Validations:

  • Must be String

page
選填

編頁結果

Validations:

  • Must be String

per_page
選填

每個請求的項目數量

Validations:

  • Must be String


GET /api/architectures/:id
Show an architecture.

參數

參數名字 描述
id
必填

Validations:

  • Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.


POST /api/architectures
Create an architecture.

參數

參數名字 描述
architecture
必填

Validations:

  • Must be a Hash

architecture[name]
必填

Validations:

  • Must be String

architecture[operatingsystem_ids]
選填

Operatingsystem ID's

Validations:

  • Must be an array of any type


PUT /api/architectures/:id
Update an architecture.

參數

參數名字 描述
id
必填

Validations:

  • Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.

architecture
必填

Validations:

  • Must be a Hash

architecture[name]
選填

Validations:

  • Must be String

architecture[operatingsystem_ids]
選填

Operatingsystem ID's

Validations:

  • Must be an array of any type


DELETE /api/architectures/:id
Delete an architecture.

參數

參數名字 描述
id
必填

Validations:

  • Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.