25 lines
583 B
YAML
25 lines
583 B
YAML
post:
|
|
summary: Calculate Cart Taxes
|
|
operationId: PostCartsCartTaxes
|
|
description: >-
|
|
Calculates taxes for a cart. Depending on the cart's region this may involve
|
|
making 3rd party API calls to a Tax Provider service.
|
|
parameters:
|
|
- in: path
|
|
name: id
|
|
required: true
|
|
description: The Cart ID.
|
|
schema:
|
|
type: string
|
|
tags:
|
|
- Cart
|
|
responses:
|
|
'200':
|
|
description: OK
|
|
content:
|
|
application/json:
|
|
schema:
|
|
properties:
|
|
cart:
|
|
$ref: ../components/schemas/cart.yaml
|