View Source NervesHubUserAPI.Product (nerves_hub_user_api v0.9.0)
Manage products on NervesHub
Path: /orgs/:org_name/products
Link to this section Summary
Functions
Create a new product.
Delete an existing product.
List all products for an org.
Update parameters of an existing product.
Link to this section Functions
@spec create(String.t(), any(), NervesHubUserAPI.Auth.t()) :: {:error, any()} | {:ok, any()}
Create a new product.
Verb: POST Path: /orgs/:org_name/products
@spec delete(String.t(), String.t(), NervesHubUserAPI.Auth.t()) :: {:error, any()} | {:ok, any()}
Delete an existing product.
Verb: DELETE Path: /orgs/:org_name/products/:product_name
@spec list(String.t(), NervesHubUserAPI.Auth.t()) :: {:error, any()} | {:ok, any()}
List all products for an org.
Verb: GET Path: /orgs/:org_name/products
@spec update(String.t(), String.t(), map(), NervesHubUserAPI.Auth.t()) :: {:error, any()} | {:ok, any()}
Update parameters of an existing product.
Verb: PUT Path: /orgs/:org_name/products/:product_name