Uber API

v. 1.0.0

Description:

Move your app forward with the Uber API

Basepath: /v1

Example: http://my-host.com/v1/hello

Table of Contents

/products
GET
/products/:product_id
PATCH

API Endpoints

/products

Products - Get all or some

Get all products with all attributes.

Parameters

Name Required Located in Type Description
category false query string () Filter by product category (e.g., "gizmo")

Success 200 (Object[])

Field Type Description
product_id string Unique identifier representing a specific product.
description string Description of product.
display_name string Display name of product.
category string Category of product. For example, "gizmo".
components Object[]
- component_id integer Unique identifier representing a specific component of a product.
- component_name string Display name of component.
alternative_names String[]

Error 500 (Object)

Field Type Description
code integer
message string
fields string
/products/:product_id

Product patch

Update a subset of a product's attributes.

Parameters

Name Required Located in Type Description
product_id true query integer () Product ID.

Success 200 (Object)

Field Type Description
product_id integer Updated product's id.

Error 500 (Object)

Field Type Description
code integer
message string
fields string