Paraşüt Sales Offers API

The Sales Offers API from Paraşüt — 8 operation(s) for sales offers.

Operations 11

GET /{company_id}/sales_offers Index #
POST /{company_id}/sales_offers Create #
GET /{company_id}/sales_offers/{id} Show #
PUT /{company_id}/sales_offers/{id} Edit #
DELETE /{company_id}/sales_offers/{id} Delete #
POST /{company_id}/sales_offers/{id}/pdf PDF #
PATCH /{company_id}/sales_offers/{id}/archive Archive #
PATCH /{company_id}/sales_offers/{id}/unarchive Unarchive #
GET /{company_id}/sales_offers/{id}/details Details #
PATCH /{company_id}/sales_offers/{id}/update_status Update Status #
POST /{company_id}/sharings e-mail #

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-sales-offers-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-sales-offers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 4.0.0
  title: Paraşüt - API V4 Sales Offers 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: Sales Offers
  x-displayName: TEKLİF
paths:
  /{company_id}/sales_offers:
    parameters:
    - name: company_id
      description: Firma ID
      in: path
      required: true
      schema:
        type: integer
    get:
      tags:
      - Sales Offers
      operationId: listSalesOffers
      summary: Index
      description: ''
      parameters:
      - name: filter[archived]
        in: query
        description: ''
        schema:
          type: boolean
      - name: filter[query]
        in: query
        description: ''
        schema:
          type: string
      - name: filter[invoice_status]
        in: query
        description: ''
        schema:
          type: string
      - name: filter[status]
        in: query
        description: ''
        schema:
          type: string
      - name: sort
        in: query
        description: 'Sortable parameters - *Available: id, issue_date, description, net_total_in_trl, sales_invoice_id*'
        schema:
          type: string
          default: id
      - name: page[number]
        in: query
        description: Page Number
        schema:
          type: integer
          default: 1
      - name: include
        in: query
        description: 'Response ile birlikte geri dönmesini istediğiniz ilişkiler - *Available: contact, sales_invoice*'
        schema:
          type: string
      responses:
        '200':
          description: Teklifler
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/SalesOffers'
                  included:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          maxLength: 255
                        type:
                          type: string
                          maxLength: 255
                          description: Type of the resource
                          enum:
                          - contacts
                          - sales_invoice
                        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:
      - Sales Offers
      operationId: createSalesOffers
      summary: Create
      description: ''
      parameters:
      - name: include
        in: query
        description: 'Response ile birlikte geri dönmesini istediğiniz ilişkiler - *Available: sales_invoice,contact.category,contact.contact_people.contact,sharings.collaborator,activities.item,activities.done_by *'
        schema:
          type: string
      responses:
        '201':
          description: Teklif
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/SalesOffers'
                  included:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          maxLength: 255
                        type:
                          type: string
                          maxLength: 255
                          description: Type of the resource
                          enum:
                          - contacts
                          - sales_invoices
                          - details
                          - activities
                          - sharings
                        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:
                      - sales_offers
                    attributes:
                      $ref: '#/components/schemas/SalesOffersCreateUpdateAttributes'
                    relationships:
                      type: object
                      properties:
                        details:
                          type: object
                          properties:
                            data:
                              type: array
                              items:
                                type: object
                                properties:
                                  type:
                                    type: string
                                    maxLength: 255
                                    description: Type of the resource
                                    enum:
                                    - sales_offer_details
                                  attributes:
                                    $ref: '#/components/schemas/SalesOffersDetailAttributes'
                                  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
                                              attributes:
                                                $ref: '#/components/schemas/ProductAttributes'
                                      offer:
                                        type: object
                                        properties:
                                          data:
                                            type: object
                                            properties:
                                              id:
                                                type: string
                                                maxLength: 255
                                              type:
                                                type: string
                                                maxLength: 255
                                                description: Type of the resource
                                                enum:
                                                - sales_offers
                        contact:
                          type: object
                          properties:
                            data:
                              type: object
                              properties:
                                id:
                                  type: string
                                  maxLength: 255
                                type:
                                  type: string
                                  maxLength: 255
                                  description: Type of the resource
                                  enum:
                                  - contacts
                                attributes:
                                  $ref: '#/components/schemas/ContactAttributes'
                                relationships:
                                  type: object
                                  properties:
                                    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
        required: true
  /{company_id}/sales_offers/{id}:
    parameters:
    - name: company_id
      description: Firma ID
      in: path
      required: true
      schema:
        type: integer
    - name: id
      description: Teklif ID
      in: path
      required: true
      schema:
        type: integer
    get:
      tags:
      - Sales Offers
      operationId: showSalesOffers
      summary: Show
      description: ''
      parameters:
      - name: include
        in: query
        description: 'Response ile birlikte geri dönmesini istediğiniz ilişkiler - *Available: details.product contact.contact_people.contact contact.category sales_invoice activities.item activities.done_by sharings.collaborator*'
        schema:
          type: string
      responses:
        '200':
          description: Teklif
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/SalesOffers'
                  included:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          maxLength: 255
                        type:
                          type: string
                          maxLength: 255
                          description: Type of the resource
                          enum:
                          - contacts
                          - sales_invoices
                          - details
                          - activities
                          - sharings
                        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:
      - Sales Offers
      operationId: updateSalesOffers
      summary: Edit
      description: ''
      parameters:
      - name: include
        in: query
        description: 'Response ile birlikte geri dönmesini istediğiniz ilişkiler - *Available: sales_invoice,contact.category,contact.contact_people.contact,sharings.collaborator,activities.item,activities.done_by*'
        schema:
          type: string
      responses:
        '200':
          description: Teklif
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/SalesOffers'
                  included:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          maxLength: 255
                        type:
                          type: string
                          maxLength: 255
                          description: Type of the resource
                          enum:
                          - contacts
                          - sales_invoices
                          - details
                          - activities
                          - sharings
                        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:
                      - sales_offers
                    attributes:
                      $ref: '#/components/schemas/SalesOffersCreateUpdateAttributes'
                    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:
                                    - sales_offer_details
                                  attributes:
                                    $ref: '#/components/schemas/SalesOffersDetailAttributes'
                                  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
                        contact:
                          type: object
                          properties:
                            data:
                              type: object
                              properties:
                                id:
                                  type: string
                                  maxLength: 255
                                type:
                                  type: string
                                  maxLength: 255
                                  description: Type of the resource
                                  enum:
                                  - contacts
                        sharings:
                          type: object
                          properties:
                            data:
                              type: object
                              properties:
                                id:
                                  type: string
                                  maxLength: 255
                                type:
                                  type: string
                                  maxLength: 255
                                  description: Type of the resource
                                  enum:
                                  - sharings
                        activities:
                          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:
                                    - activities
                        sales_invoice:
                          type: object
                          properties:
                            data:
                              type: object
                              properties:
                                id:
                                  type: string
                                  maxLength: 255
                                type:
                                  type: string
                                  maxLength: 255
                                  description: Type of the resource
                                  enum:
                                  - sales_invoices
        required: true
    delete:
      tags:
      - Sales Offers
      operationId: deleteSalesOffers
      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'
  /{company_id}/sales_offers/{id}/pdf:
    parameters:
    - name: company_id
      description: Firma ID
      in: path
      required: true
      schema:
        type: integer
    - name: id
      description: Teklif ID
      in: path
      required: true
      schema:
        type: integer
    post:
      tags:
      - Sales Offers
      operationId: showSalesOffersPdf
      summary: PDF
      description: Oluşan PDF'in URL'ine trackable_jobs response'unun içerisinde data > attributes > url alanından erişebilirsiniz.
      responses:
        '202':
          description: Teklif PDF
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                        maxLength: 255
                      type:
                        type: string
                        maxLength: 255
                        description: Type of the resource
                        enum:
                        - trackable_jobs
                      attributes:
                        $ref: '#/components/schemas/SalesOffersPdf'
                      links:
                        type: object
                        properties:
                          self:
                            type: string
                            format: uri
                      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'
  /{company_id}/sales_offers/{id}/archive:
    parameters:
    - name: company_id
      description: Firma ID
      in: path
      required: true
      schema:
        type: integer
    - name: id
      description: Teklif ID
      in: path
      required: true
      schema:
        type: integer
    patch:
      tags:
      - Sales Offers
      operationId: archiveSalesOffers
      summary: Archive
      description: ''
      responses:
        '200':
          description: Teklif
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/SalesOffers'
                  included:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          maxLength: 255
                        type:
                          type: string
                          maxLength: 255
                          description: Type of the resource - contacts - sales_invoices - details - activities - sharings
                        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:
 

# --- truncated at 32 KB (73 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/para-t/refs/heads/main/openapi/para-t-sales-offers-api-openapi.yml