Paraşüt Stock Updates API

The Stock Updates API from Paraşüt — 1 operation(s) for stock updates.

Operations 1

POST /{company_id}/stock_updates Create #

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/para-t-stock-updates-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

para-t-stock-updates-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 4.0.0
  title: Paraşüt - API V4 Stock Updates API
  x-logo:
    url: https://apidocs.parasut.com/logo.png
    backgroundColor: null
  description: '# CHANGE LOG

    ### **2021-10-11**

    #### Added

    - Belirli Firmalar İçin Özel Gereksinimler alanına Amazon için gerekli özel alanlar eklendi.'
servers:
- url: https://api.parasut.com/v4
security:
- parasut_auth: []
tags:
- name: Stock Updates
  x-displayName: STOK GÜNCELLEME
paths:
  /{company_id}/stock_updates:
    parameters:
    - name: company_id
      description: Firma ID
      in: path
      required: true
      schema:
        type: integer
    post:
      tags:
      - Stock Updates
      operationId: createStockUpdate
      summary: Create
      description: ''
      parameters:
      - name: include
        in: query
        description: 'Response ile birlikte geri dönmesini istediğiniz ilişkiler - *Available: details, details.product, details.warehouse*'
        schema:
          type: string
      responses:
        '201':
          description: Stok güncelleme
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/StockUpdate'
                  included:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          maxLength: 255
                        type:
                          type: string
                          maxLength: 255
                          description: Type of the resource
                          enum:
                          - stock_update_details
                        attributes:
                          type: object
                        relationships:
                          type: object
        '400':
          description: Bad Request
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  errors:
                    type: array
                    items:
                      $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  errors:
                    type: array
                    items:
                      $ref: '#/components/schemas/Error'
        '403':
          description: Forbidden
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  errors:
                    type: array
                    items:
                      $ref: '#/components/schemas/Error'
        '404':
          description: Not Found
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  errors:
                    type: array
                    items:
                      $ref: '#/components/schemas/Error'
        '422':
          description: Unprocessable Entity
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  errors:
                    type: array
                    items:
                      $ref: '#/components/schemas/Error'
      requestBody:
        content:
          application/vnd.api+json:
            schema:
              type: object
              required:
              - data
              properties:
                data:
                  type: object
                  properties:
                    id:
                      type: string
                      maxLength: 255
                    type:
                      type: string
                      maxLength: 255
                      description: Type of the resource
                      enum:
                      - stock_updates
                    attributes:
                      $ref: '#/components/schemas/StockUpdateAttributes'
                    relationships:
                      type: object
                      properties:
                        details:
                          type: object
                          properties:
                            data:
                              type: array
                              items:
                                type: object
                                properties:
                                  id:
                                    type: string
                                    maxLength: 255
                                  type:
                                    type: string
                                    maxLength: 255
                                    description: Type of the resource
                                    enum:
                                    - stock_update_details
                                  attributes:
                                    $ref: '#/components/schemas/StockUpdateDetailAttributes'
                                  relationships:
                                    type: object
                                    properties:
                                      product:
                                        type: object
                                        properties:
                                          data:
                                            type: object
                                            properties:
                                              id:
                                                type: string
                                                maxLength: 255
                                              type:
                                                type: string
                                                maxLength: 255
                                                description: Type of the resource
                                                enum:
                                                - products
                                      warehouse:
                                        type: object
                                        properties:
                                          data:
                                            type: object
                                            properties:
                                              id:
                                                type: string
                                                maxLength: 255
                                              type:
                                                type: string
                                                maxLength: 255
                                                description: Type of the resource
                                                enum:
                                                - warehouses
        required: true
components:
  schemas:
    Error:
      type: object
      properties:
        title:
          type: string
        detail:
          type: string
    StockUpdateAttributes:
      type: object
      properties:
        created_at:
          type: string
          format: date
          readOnly: true
          description: Stok güncelleme tarihi
        updated_at:
          type: string
          format: date
          readOnly: true
          description: Son güncelleme tarihi
    StockUpdate:
      type: object
      properties:
        id:
          type: string
          maxLength: 255
        type:
          type: string
          maxLength: 255
          description: Type of the resource
          enum:
          - stock_updates
        attributes:
          $ref: '#/components/schemas/StockUpdateAttributes'
        relationships:
          type: object
          properties:
            details:
              type: object
              properties:
                data:
                  type: array
                  items:
                    type: object
                    properties:
                      id:
                        type: string
                        maxLength: 255
                      type:
                        type: string
                        maxLength: 255
                        description: Type of the resource
                        enum:
                        - stock_update_details
      required:
      - attributes
    StockUpdateDetailAttributes:
      type: object
      properties:
        old_total_inventory:
          type: number
          required: true
          readOnly: true
          description: Eski stok miktarı
        created_at:
          type: string
          format: date
          readOnly: true
          description: Kayıt tarihi
        updated_at:
          type: string
          format: date
          readOnly: true
          description: Son güncelleme tarihi
        new_total_inventory:
          type: number
          readOnly: false
          description: Yeni stok miktarı
      required:
      - new_total_inventory
  securitySchemes:
    parasut_auth:
      type: oauth2
      flows:
        authorizationCode:
          scopes: {}
          authorizationUrl: https://api.parasut.com/oauth/authorize
          tokenUrl: https://api.parasut.com/oauth/token
x-tagGroups:
- name: Satışlar
  tags:
  - SalesOffers
  - SalesInvoices
  - Contacts
- name: Giderler
  tags:
  - PurchaseBills
  - BankFees
  - Salaries
  - Taxes
  - Contacts
  - Employees
- name: Resmileştirme
  tags:
  - EInvoiceInboxes
  - EArchives
  - EInvoices
  - ESmms
- name: Nakit
  tags:
  - Accounts
  - Transactions
- name: Stok
  tags:
  - Products
  - Warehouses
  - ShipmentDocuments
  - StockMovements
  - InventoryLevels
  - StockUpdates
- name: Ayarlar
  tags:
  - ItemCategories
  - Tags
- name: Diğer
  tags:
  - ApiHome
  - TrackableJobs