Omniful, Inc. Stock Transfer Request API

The Stock Transfer Request API from Omniful, Inc. — 4 operation(s) for stock transfer request.

Operations 6

POST /sales-channel/public/v1/orders/sto/requests Create Stock Transfer Request #
GET /sales-channel/public/v1/orders/sto/requests Get Stock Transfer Requests #
PUT /sales-channel/public/v1/orders/sto/requests/{sto_request_id} Update Stock Transfer Request #
GET /sales-channel/public/v1/orders/sto/requests/{sto_request_id} Get Stock Transfer Request #
PUT /sales-channel/public/v1/orders/sto/requests/{sto_request_id}/approve Approve Stock Transfer Request #
PUT /sales-channel/public/v1/orders/sto/requests/{sto_request_id}/reject Reject Stock Transfer Request #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/omniful-inc-stock-transfer-request-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

omniful-inc-stock-transfer-request-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Omniful Integration APIs Background Jobs Stock Transfer Request API
  version: v1
  description: Omniful unified supply chain and fulfillment platform integration APIs (Order Management, Warehouse/Inventory, Returns, Purchase Orders, Shipment/TMS, Webhooks). Derived faithfully from the provider-published Postman collection at docs.omniful.tech; paths, methods, parameters, and request examples are as published, response schemas are not enumerated in the source.
  contact:
    url: https://docs.omniful.tech
servers:
- url: https://prodapi.omniful.com
security:
- bearerAuth: []
tags:
- name: Stock Transfer Request
paths:
  /sales-channel/public/v1/orders/sto/requests:
    post:
      summary: Create Stock Transfer Request
      operationId: postCreateStockTransferRequest
      tags:
      - Stock Transfer Request
      description: 'Required Fields for Creating Stock Transfer Requests: transfer_id (string): The unique identifier for the stock transfer (must be unique always). order_items (array of objects): An array of objects representing the items in the stock transfer. sku_code (string): The stock keeping unit code for the item. quantity (integer): The quantity of the item being transferred. source_hub_code (string): The hub code from which the stock is being transferred. destination_hub_code (string): The hub code to wh'
      requestBody:
        content:
          application/json:
            example:
              customer:
                first_name: John
                last_name: Doe
                mobile: '7044063694'
                country_calling_code: '+91'
                country_code: IN
                mobile_code: '91'
                email: john.doe@example.com
                avatar: https://example.com/avatar.jpg
                gender: male
              order_items:
              - sku_code: samsung190
                quantity: 2
              source_hub_code: Shubhra001
              destination_hub_code: SHUBHRA
              sto_request_id: sto_id_27651
      responses:
        '200':
          description: Successful response
    get:
      summary: Get Stock Transfer Requests
      operationId: getGetStockTransferRequests
      tags:
      - Stock Transfer Request
      description: 'Response Fields Explained is_success (boolean): Indicates if the request was successful. status_code (integer): The HTTP status code returned by the API. data (array): Contains the list of stock transfer requests. sto_id (string): Unique identifier for the stock transfer. customer (object): Information about the customer associated with the transfer. first_name (string): Customer''s first name. last_name (string): Customer''s last name. mobile (string): Customer''s mobile number. mobile_code (strin'
      responses:
        '200':
          description: Successful response
  /sales-channel/public/v1/orders/sto/requests/{sto_request_id}:
    put:
      summary: Update Stock Transfer Request
      operationId: putUpdateStockTransferRequest
      tags:
      - Stock Transfer Request
      description: 'Required Fields for Updating Stock Transfer Requests: action_type (string): Specifies the action to perform. "add_items": To add new items to the stock transfer request. "edit_items": To edit existing items in the stock transfer request. order_items (array of objects): An array of objects representing the items in the stock transfer. sku_code (string): The stock keeping unit code for the item. quantity (integer): The quantity of the item to be added or updated.'
      parameters:
      - name: sto_request_id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json: {}
      responses:
        '200':
          description: Successful response
    get:
      summary: Get Stock Transfer Request
      operationId: getGetStockTransferRequest
      tags:
      - Stock Transfer Request
      description: 'Response Fields Explained is_success (boolean): Indicates if the request was successful. status_code (integer): The HTTP status code returned by the API. data (object): Contains details about the stock transfer request. sto_id (string): Unique identifier for the stock transfer. customer (object): Information about the customer associated with the transfer. first_name (string): Customer''s first name. last_name (string): Customer''s last name. mobile (string): Customer''s mobile number. mobile_code '
      parameters:
      - name: sto_request_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
  /sales-channel/public/v1/orders/sto/requests/{sto_request_id}/approve:
    put:
      summary: Approve Stock Transfer Request
      operationId: putApproveStockTransferRequest
      tags:
      - Stock Transfer Request
      description: 'Required Fields for Approving Stock Transfer Requests: order_items (array of objects): An array of objects representing the items being approved in the stock transfer. sku_code (string): The stock keeping unit code for the item. quantity (integer): The quantity of the item being approved.'
      parameters:
      - name: sto_request_id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            example:
              order_items:
              - sku_code: iPhone 15 Pro
                quantity: 1
      responses:
        '200':
          description: Successful response
  /sales-channel/public/v1/orders/sto/requests/{sto_request_id}/reject:
    put:
      summary: Reject Stock Transfer Request
      operationId: putRejectStockTransferRequest
      tags:
      - Stock Transfer Request
      description: 'Required Fields for Rejecting Stock Transfer Requests: reason (string): A mandatory field that specifies the reason for rejecting the stock transfer request. This helps provide clarity on the decision.'
      parameters:
      - name: sto_request_id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            example:
              reason: Product not required
      responses:
        '200':
          description: Successful response
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer