GET /api/architectures
List all architectures

GET /api/operatingsystems/:operatingsystem_id/architectures
List all architectures for operating system

Params

Param name Description
search
optional

filter results


Value: Must be String
order
optional

sort results


Value: Must be String
page
optional

paginate results


Value: Must be String
per_page
optional

number of entries per request


Value: Must be String
operatingsystem_id
optional

ID of operating system


Value: Must be String

GET /api/architectures/:id
Show an architecture

Params

Param name Description
id
required

Value: 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

Params

Param name Description
architecture
required

Value: Must be a Hash
architecture[name]
required

Value: Must be String
architecture[operatingsystem_ids]
optional , nil allowed

Operating system IDs


Value: Must be an array of any type

PUT /api/architectures/:id
Update an architecture

Params

Param name Description
id
required

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

Value: Must be a Hash
architecture[name]
optional

Value: Must be String
architecture[operatingsystem_ids]
optional , nil allowed

Operating system IDs


Value: Must be an array of any type

DELETE /api/architectures/:id
Delete an architecture

Params

Param name Description
id
required

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