Flyp Api Pazaryeri
    • How to use?
    • Marketplace APIs
    • Authorization
    • Schemas
      • Sample Schemas
        • Pet
        • Category
        • Tag
      • Schemas
        • mintedApp.Api.Models.LoginViewModel
        • mintedApp.Api.Models.RegisterViewModel
        • mintedApp.Application.Dtos.Admin.AddProducerAM
        • mintedApp.Application.Dtos.Admin.MerchantAM
        • mintedApp.Application.Dtos.Balances.UpdateCustomerBalanceAM
        • mintedApp.Application.Dtos.Buy.CardPayment.BinQueryAM
        • mintedApp.Application.Dtos.Buy.CardPayment.BuyWithCardNumberAM
        • mintedApp.Application.Dtos.Buy.CardPayment.BuyWithCardTokenAM
        • mintedApp.Application.Dtos.Buy.CardPayment.BuyWithCardTokenCustomer
        • mintedApp.Application.Dtos.Buy.CardPayment.BuyWithCardTokenItem
        • mintedApp.Application.Dtos.Buy.CardPayment.BuyWithCardTokenPayment
        • mintedApp.Application.Dtos.Buy.CardPayment.CardPaymentPriceFixAM
        • mintedApp.Application.Dtos.Buy.CardPayment.Customer
        • mintedApp.Application.Dtos.Buy.CardPayment.Item
        • mintedApp.Application.Dtos.Buy.CardPayment.Payment
        • mintedApp.Application.Dtos.Buy.Customer.BuyGoldAM
        • mintedApp.Application.Dtos.Buy.Customer.BuySilverAM
        • mintedApp.Application.Dtos.Buy.Customer.GoldCustomer
        • mintedApp.Application.Dtos.Buy.Customer.GoldItem
        • mintedApp.Application.Dtos.Buy.Customer.PriceFixAM
        • mintedApp.Application.Dtos.Buy.Customer.SilverCustomer
        • mintedApp.Application.Dtos.Buy.Customer.SilverItem
        • mintedApp.Application.Dtos.Buy.Partner.BuyGoldAM
        • mintedApp.Application.Dtos.Buy.Partner.BuySilverAM
        • mintedApp.Application.Dtos.Buy.Partner.Item
        • mintedApp.Application.Dtos.Buy.Partner.PrifeFixAM
        • mintedApp.Application.Dtos.Buy.Partner.SilverItem
        • mintedApp.Application.Dtos.CardStorage.CardStorageAddAM
        • mintedApp.Application.Dtos.CardStorage.CardStorageDeleteAM
        • mintedApp.Application.Dtos.CardStorage.CardStorageListAM
        • mintedApp.Application.Dtos.Customer.CustomerAM
        • mintedApp.Application.Dtos.Customer.CustomerKycAM
        • mintedApp.Application.Dtos.Customer.CustomerKycBulkAM
        • mintedApp.Application.Dtos.Customer.Kcy
        • mintedApp.Application.Dtos.Delivery.Address
        • mintedApp.Application.Dtos.Delivery.Billing
        • mintedApp.Application.Dtos.Delivery.CalculateAM
        • mintedApp.Application.Dtos.Delivery.CreateAM
        • mintedApp.Application.Dtos.Delivery.CreateCardPaymentAM
        • mintedApp.Application.Dtos.Delivery.CreateCardPaymentAddress
        • mintedApp.Application.Dtos.Delivery.CreateCardPaymentBilling
        • mintedApp.Application.Dtos.Delivery.CreateCardPaymentPayment
        • mintedApp.Application.Dtos.Delivery.CreateCardPaymentShipping
        • mintedApp.Application.Dtos.Delivery.Customer
        • mintedApp.Application.Dtos.Delivery.ResolveAM
        • mintedApp.Application.Dtos.Delivery.Shipping
        • mintedApp.Application.Dtos.Sell.Customer.Customer
        • mintedApp.Application.Dtos.Sell.Customer.Item
        • mintedApp.Application.Dtos.Sell.Customer.SellCustomerPriceFixAM
        • mintedApp.Application.Dtos.Sell.Customer.SellCustomerSellGoldAM
        • mintedApp.Application.Dtos.Sell.Customer.SellCustomerSellSilverAM
        • mintedApp.Application.Dtos.Sell.Customer.SellCustomerSellSilverCustomer
        • mintedApp.Application.Dtos.Sell.Customer.SellCustomerSellSilverItem
        • mintedApp.Application.Dtos.Sell.Partner.Item
        • mintedApp.Application.Dtos.Sell.Partner.SellPartnerPriceFixAM
        • mintedApp.Application.Dtos.Sell.Partner.SellPartnerSellGoldAM
        • mintedApp.Application.Dtos.Sell.Partner.SellPartnerSellSilverAM
        • mintedApp.Application.Dtos.Sell.Partner.SellPartnerSellSilverItem

    How to use?

    In this project, various APIs are integrated and made accessible through a single platform. The goal is to simplify API consumption and streamline interactions for developers. This centralized structure enhances efficiency by reducing the need for individual API integrations. Developers can explore, test, and use the APIs effortlessly through the marketplace. Additionally, the platform ensures secure and standardized access management. It is designed to be scalable, catering to diverse industries and needs. This project bridges the gap between API providers and consumers, fostering innovation and collaboration.
    How to get token and use apis?
    1
    Authentication
    Click here to get token from identity server.
    2
    Make Request
    The request must contain a body and also body must contain username & password information.
    {
    "username":"necip",
    "password":"Pp123456@@"
    }
    3
    Use Response
    As a result of a successful request, the access_token value is taken from the incoming data below and added to the request.
        "data": {
            "access_token": "",
            "expires_in": 86400,
            "token_type": "Bearer",
            "refresh_token": "",
            "scope": "",
            "roles": [],
            "userinfo": {
                "sub": "",
                "aspNetIdentitySecurityStamp": null,
                "role": [],
                "preferred_username": "Necip",
                "name": "Necip",
                "email": "necip.baran@2sworks.com",
                "email_verified": true,
                "phone_number": "5555555555",
                "phone_number_verified": false,
                "userTypeId": "1"
            }
        },
        "failed": false,
        "message": null,
        "succeeded": true
    }
    📌
    An authenticated request header must this token: Bearer access_token
    Modified at 2024-12-30 14:00:24
    Next
    Marketplace APIs
    Built with