chore(docs): Updated API Reference (automated) (#10685)

Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action

Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com>
Co-authored-by: Shahed Nasser <27354907+shahednasser@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2024-12-23 08:35:12 +00:00
committed by GitHub
co-authored by Oli Juhl Shahed Nasser
parent 326f190b73
commit 198fa53120
19 changed files with 621 additions and 0 deletions
@@ -0,0 +1,47 @@
/**
* @oas [get] /admin/fulfillment-providers/{id}/options
* operationId: GetFulfillmentProvidersIdOptions
* summary: List Fulfillment Options
* description: Retrieve the list of fulfillment options of a fulfillment provider. These options may be retrieved from an integrated third-party service.
* x-authenticated: true
* parameters:
* - name: id
* in: path
* description: The fulfillment provider's ID.
* required: true
* schema:
* type: string
* security:
* - api_token: []
* - cookie_auth: []
* - jwt_token: []
* x-codeSamples:
* - lang: Shell
* label: cURL
* source: |-
* curl '{backend_url}/admin/fulfillment-providers/{id}/options' \
* -H 'Authorization: Bearer {access_token}'
* tags:
* - Fulfillment Providers
* responses:
* "200":
* description: OK
* content:
* application/json:
* schema:
* $ref: "#/components/schemas/AdminFulfillmentProviderOptionsListResponse"
* "400":
* $ref: "#/components/responses/400_error"
* "401":
* $ref: "#/components/responses/unauthorized"
* "404":
* $ref: "#/components/responses/not_found_error"
* "409":
* $ref: "#/components/responses/invalid_state_error"
* "422":
* $ref: "#/components/responses/invalid_request_error"
* "500":
* $ref: "#/components/responses/500_error"
*
*/