post: operationId: PostFulfillments summary: Create Fulfillment description: Create a fulfillment for an order, return, exchange, and more. x-authenticated: true parameters: - name: fields in: query description: >- Comma-separated fields that should be included in the returned data. if a field is prefixed with `+` it will be added to the default fields, using `-` will remove it from the default fields. without prefix it will replace the entire default fields. required: false schema: type: string title: fields description: >- Comma-separated fields that should be included in the returned data. if a field is prefixed with `+` it will be added to the default fields, using `-` will remove it from the default fields. without prefix it will replace the entire default fields. externalDocs: url: '#select-fields-and-relations' security: - api_token: [] - cookie_auth: [] - jwt_token: [] requestBody: content: application/json: schema: $ref: ../components/schemas/AdminCreateFulfillment.yaml x-codeSamples: - lang: Shell label: cURL source: $ref: ../code_samples/Shell/admin_fulfillments/post.sh tags: - Fulfillments responses: '200': description: OK content: application/json: schema: $ref: ../components/schemas/AdminFulfillmentResponse.yaml '400': $ref: ../components/responses/400_error.yaml '401': $ref: ../components/responses/unauthorized.yaml '404': $ref: ../components/responses/not_found_error.yaml '409': $ref: ../components/responses/invalid_state_error.yaml '422': $ref: ../components/responses/invalid_request_error.yaml '500': $ref: ../components/responses/500_error.yaml x-workflow: createFulfillmentWorkflow