Paraşüt Item Categories API
The Item Categories API from Paraşüt — 2 operation(s) for item categories.
The Item Categories API from Paraşüt — 2 operation(s) for item categories.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/para-t-item-categories-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
version: 4.0.0
title: Paraşüt - API V4 Item Categories 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: Item Categories
x-displayName: KATEGORİ
paths:
/{company_id}/item_categories:
parameters:
- name: company_id
description: Firma ID
in: path
required: true
schema:
type: integer
get:
tags:
- Item Categories
operationId: listItemCategories
summary: Index
description: ''
parameters:
- name: filter[name]
in: query
description: ''
schema:
type: string
- name: filter[category_type]
in: query
description: ''
schema:
type: string
- name: sort
in: query
description: 'Sortable parameters - *Available: id, name, category_type*'
schema:
type: string
default: id
- name: page[number]
in: query
description: Page Number
schema:
type: integer
default: 1
- name: page[size]
in: query
description: Page Size
schema:
type: integer
default: 15
maximum: 25
minimum: 1
- name: include
in: query
description: 'Response ile birlikte geri dönmesini istediğiniz ilişkiler - *Available: parent_category, subcategories*'
schema:
type: string
responses:
'200':
description: Kategoriler
content:
application/vnd.api+json:
schema:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/ItemCategory'
included:
type: array
items:
type: object
properties:
id:
type: string
maxLength: 255
type:
type: string
maxLength: 255
description: Type of the resource
enum:
- item_categories
attributes:
type: object
relationships:
type: object
meta:
$ref: '#/components/schemas/ListMeta'
'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'
post:
tags:
- Item Categories
operationId: createItemCategory
summary: Create
description: ''
parameters:
- name: include
in: query
description: 'Response ile birlikte geri dönmesini istediğiniz ilişkiler - *Available: parent_category, subcategories*'
schema:
type: string
responses:
'201':
description: Kategori
content:
application/vnd.api+json:
schema:
type: object
properties:
data:
$ref: '#/components/schemas/ItemCategory'
included:
type: array
items:
type: object
properties:
id:
type: string
maxLength: 255
type:
type: string
maxLength: 255
description: Type of the resource
enum:
- item_categories
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:
- item_categories
attributes:
$ref: '#/components/schemas/ItemCategoryAttributes'
required: true
/{company_id}/item_categories/{id}:
parameters:
- name: company_id
description: Firma ID
in: path
required: true
schema:
type: integer
- name: id
description: Kategori ID
in: path
required: true
schema:
type: integer
get:
tags:
- Item Categories
operationId: showItemCategory
summary: Kategori bilgisini gösterir
description: Ayrıntısını görmek istediğiniz kategorinin id'sini göndererek gerekli bilgilere ulaşabilirsiniz.
parameters:
- name: include
in: query
description: 'Response ile birlikte geri dönmesini istediğiniz ilişkiler - *Available: parent_category, subcategories*'
schema:
type: string
responses:
'200':
description: Kategori
content:
application/vnd.api+json:
schema:
type: object
properties:
data:
$ref: '#/components/schemas/ItemCategory'
included:
type: array
items:
type: object
properties:
id:
type: string
maxLength: 255
type:
type: string
maxLength: 255
description: Type of the resource
enum:
- item_categories
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'
put:
tags:
- Item Categories
operationId: updateItemCategory
summary: Edit
description: ''
parameters:
- name: include
in: query
description: 'Response ile birlikte geri dönmesini istediğiniz ilişkiler - *Available: parent_category, subcategories*'
schema:
type: string
responses:
'200':
description: Kategori
content:
application/vnd.api+json:
schema:
type: object
properties:
data:
$ref: '#/components/schemas/ItemCategory'
included:
type: array
items:
type: object
properties:
id:
type: string
maxLength: 255
type:
type: string
maxLength: 255
description: Type of the resource
enum:
- item_categories
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:
- item_categories
attributes:
$ref: '#/components/schemas/ItemCategoryAttributes'
required: true
delete:
tags:
- Item Categories
operationId: deleteItemCategory
summary: Delete
description: ''
responses:
'204':
description: No content
content:
application/vnd.api+json:
schema:
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'
components:
schemas:
Error:
type: object
properties:
title:
type: string
detail:
type: string
ItemCategoryAttributes:
type: object
properties:
full_path:
type: string
readOnly: true
created_at:
type: string
format: date
readOnly: true
updated_at:
type: string
format: date
readOnly: true
name:
type: string
readOnly: false
description: Kategori adı
bg_color:
type: string
readOnly: false
description: Renk
text_color:
type: string
readOnly: false
description: Yazı rengi
category_type:
type: string
enum:
- Product
- Contact
- Employee
- SalesInvoice
- Expenditure
readOnly: false
description: Kategori tipi
parent_id:
type: integer
readOnly: false
required:
- name
- category_type
ListMeta:
type: object
properties:
current_page:
type: integer
total_pages:
type: integer
total_count:
type: integer
ItemCategory:
type: object
properties:
id:
type: string
maxLength: 255
type:
type: string
maxLength: 255
description: Type of the resource
enum:
- item_categories
attributes:
$ref: '#/components/schemas/ItemCategoryAttributes'
relationships:
type: object
properties:
parent_category:
type: object
properties:
data:
type: object
properties:
id:
type: string
maxLength: 255
type:
type: string
maxLength: 255
description: Type of the resource
enum:
- item_categories
subcategories:
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:
- item_categories
required:
- attributes
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