GET /api/architectures
List all architectures.

パラメーター

パラメーター名 記述
search
任意

結果のフィルター

Validations:

  • Must be a String

order
任意

結果のソート

Validations:

  • Must be a String

page
任意

結果のページネーション

Validations:

  • Must be a String

per_page
任意

要求ごとのエントリー数

Validations:

  • Must be a 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 a 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 a 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.