1. Taksit
  • Muhasip 4.0
  • 🔒 Rate Limiting
  • Cariler
  • Uygulamalar
    • Taksit
      • Index
        GET
      • Detail
        GET
      • Create
        POST
      • Cancel
        DELETE
      • Logs
        GET
      • Check
        GET
  • Health
    GET
  • Schemas
    • helpers
      • variables
      • paginateSchema
    • general
      • definitions
    • apps
      • installments
        • installments
        • installmentCronHistories
    • cantacts
      • contactPeoples
      • contacts
  1. Taksit

Create

POST
/apps/installment
Last modified:2025-12-09 23:01:03
taxId ile cari var ise gönderilen bilgiler ile güncellenir yok ise yenisi eklenir.

Request

Authorization
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password
Example:
Authorization: Basic *****************
Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.muhasip.pro/apps/installment' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "contact": {
        "name": "MURAT DURAN",
        "taxId": "11111111111",
        "taxOffice": "GEVHER NESİBE",
        "countries": "Türkiye",
        "states": "Kayseri",
        "cities": "Kocasinan"
    },
    "vatRate": "10",
    "accountNo":"TESTKASAKOD",
    "definition": "SATIŞ MÜŞTERİ",
    "repeatCount": 12,
    "productName": "YOL YARDIM PAKETİ",
    "description": "3220131111111111",
    "amount": 800,
    "variables": [
        {
            "dsContractNo": "3220131111111111"
        },
        {
            "idDealerSales": 1
        }
    ]
}'
Response Response Example
{
    "status": true,
    "result": "string"
}
Modified at 2025-12-09 23:01:03
Previous
Detail
Next
Cancel
Built with