Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • All version 2 endpoints are mounted under the /api/v2/* route (e.g. GET /api/v2/addons)

  • Any endpoint that operates on a particular resource will use the resource’s identifying code in the route (e.g. to work with the order 123456 you will use URLs like GET /api/v2/orders/123456)

  • Resources will support one or more of the following routes:

    • GET /api/v2/resource: list all available resources

      • Example: GET /api/v2/addons returns the list of addons set up in Rx-Universe

      • These support the property limit, which will only return a subset of records (so limit=10 returns a maximum of 10 addons) and offset, which skips the first several records (limit=10&offset-=0 returns the first page of 10 records; limit=10&offset=10 returns the second page of 10 records, etc.)

    • GET /api/v2/resource/:id: returns a single resource

      • Example: GET /api/v2/addons/SRC returns only information about the addon with code SRC

      • The model returned will have the same structure as the one returned in the list; in some endpoints it may have extra details.

    • GET /api/v2/resource/:id/extra_info: returns particular information about a resource

      • Example: GET /api/v2/orders/123456/pick returns the lens pick verification information for order 123456

    • POST /api/v2/resource: creates a new resource

      • Example: POST /api/v2/orders will create a new order with the submitted information

      • This will return a model representing the new resource or an error

    • POST /api/v2/resource/:id/action: performs an action on the requested resource

      • Example: POST /api/v2/orders/123456/pick: performs lens pick verification on order 123456 with the provided information

      • This will return a message indication success or an error

    • DELETE /api/v2/resource/:id: requests the deletion of a resource

      • Example: DELETE /api/v2/orders/123456: requests the cancellation of order 123456

      • This will return a model representing the last known state of the resource or an error message. This may be a subset of the fields returned by the GET action.

Successful Responses

All endpoints return a JSON object at the top level. If the endpoint operates on a single resource, this will be the resource itself.

...