Skip to content

Commit

Permalink
update admin api spec
Browse files Browse the repository at this point in the history
  • Loading branch information
alexphelps committed Jan 23, 2025
1 parent 56ee7a3 commit d0b94d0
Show file tree
Hide file tree
Showing 3 changed files with 94 additions and 141 deletions.
63 changes: 63 additions & 0 deletions static/api/admin/2023-02-10.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10970,6 +10970,69 @@ paths:
- fulfillment_orders:read
tags:
- fulfillment
/fulfillment-orders/{id}/available-locations/:
get:
description: Retrieve available locations for a Fulfillment Order.
operationId: availableLocationsRetrieve
parameters:
- description: A unique integer value identifying this fulfillment order.
in: path
name: id
required: true
schema:
type: integer
- in: header
name: X-29next-API-Version
required: true
schema:
default: '2023-02-10'
enum:
- '2023-02-10'
type: string
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/AvailableLocationFulfillmentOrder'
description: ''
security:
- oauth2:
- fulfillment_orders:read
tags:
- fulfillment
/fulfillment-orders/{id}/cancel/:
post:
description: Cancel fulfillment order
operationId: fulfillmentOrdersCancel
parameters:
- description: A unique integer value identifying this fulfillment order.
in: path
name: id
required: true
schema:
type: integer
- in: header
name: X-29next-API-Version
required: true
schema:
default: '2023-02-10'
enum:
- '2023-02-10'
type: string
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/FulfillmentOrderCancelResponse'
description: ''
security:
- oauth2:
- fulfillment_service:write
- fulfillment_orders:write
tags:
- fulfillment
/fulfillment-orders/{id}/cancellation-request/:
post:
description: Sends a fulfillment cancellation request to the fulfillment service.
Expand Down
Loading

0 comments on commit d0b94d0

Please sign in to comment.