Backhub
Jewelo Api
Jewelo Api
Mail ile İletişime Geç
Github
  1. Contacts
  • Backhub Api
  • 🧮 Muhasip
    • Accounting
      • Muhasip Api
      • Contacts
        • Index
          GET
        • Details
          GET
        • Create
          POST
        • Update
          PUT
        • Delete
          DELETE
        • Archive
          PATCH
        • unArchive
          PATCH
      • Accounts
        • Index
        • Create
        • Edit
        • Delete
        • Archive
        • unArchive
        • Extract
      • Stocks
    • Settings
      • Definitions
        • Index
        • Create
        • Edit
        • Delete
      • Branches
        • Sections
          • Index
          • Detail
          • Create
          • Update
          • Delete
        • Index
        • Details
        • Create
        • Update
        • Delete
    • Info
      GET
  • 🗂️ Apps
    • Bank
      • Index
      • Check
      • Transactions
      • setStatus
    • Payment
      • Commission
      • Create
      • Status
      • Update
      • Delete
  • 💎 Jewelo
    • Token
      POST
  1. Contacts

Create

POST
https://api.backhub.dev/accounting/contacts
muhasip
Last modified:2025-05-10 01:58:07
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.backhub.dev/accounting/contacts' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic Og==' \
--data-raw '{
    "name": "Murat Duran",
    "phone": "+905453493838",
    "email": "murat@muhasip.com.tr",
    "taxId": "11111111111",
    "taxOffice": "Urla",
    "countries": "Türkiye",
    "states": "İzmir",
    "cities": "Urla",
    "address": "Açık Adres",
    "isCustomer": true,
    "person": false,
    "archived": false,
    "ibans": [
        "TR99999999",
        "TR123123213"
    ],
    "contactPeoples": [
        {
            "name": "Adı Soyadı",
            "phone": "Telefon Numarası",
            "email": "Mail Adresi",
            "info": "Görev / Bilgi"
        }
    ],
    "variables": [
        {
            "key": "acenta",
            "value": "Acenta Adı"
        },
        {
            "key": "crmID",
            "value": "CRM IDM"
        }
    ]
}'
Response Response Example
{
  "status": true,
  "result": {
    "companiesId": "65670ecc696d1cfa8b9ed5dd",
    "name": "Murat Duran",
    "employees": false,
    "contactsType": "company",
    "phone": "+905453493838",
    "email": "murat@muhasip.com.tr",
    "taxId": "11111111111",
    "taxOffice": "Urla",
    "countriesCode": "TR",
    "statesCode": null,
    "countries": "Türkiye",
    "states": "İzmir",
    "cities": "Urla",
    "address": "Açık Adres",
    "isAbroad": false,
    "isCustomer": true,
    "person": false,
    "default": false,
    "archived": false,
    "ibans": [
      "TR99999999"
    ],
    "contactPeoples": [
      {
        "name": "Adı Soyadı",
        "phone": "Telefon Numarası",
        "email": "Mail Adresi",
        "info": "Görev / Bilgi",
        "_id": "658309df10b0341e34941f03",
        "variables": []
      }
    ],
    "_id": "658309df10b0341e34941f02",
    "createdDate": "2023-12-20T15:35:59.898Z",
    "variables": [],
    "__v": 0
  }
}

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
name
string 
required
phone
string 
required
email
string 
required
taxId
string 
required
taxOffice
string 
required
countries
string 
required
states
string 
required
cities
string 
required
address
string 
required
isCustomer
boolean 
required
person
boolean 
required
archived
boolean 
required
ibans
array[string]
required
contactPeoples
array[object (contactPeoples) {4}] 
required
name
string 
required
phone
string 
optional
email
string <email>
optional
info
string 
optional
variables
array[object (generalVariables) {2}] 
required
key
string 
required
value
string  | integer  | boolean  | array  | object  | number  | null 
required
Examples

Responses

🟢200response
application/json
Body
status
boolean 
required
result
object 
required
companiesId
string 
required
name
string 
required
employees
boolean 
required
contactsType
string 
required
phone
string 
required
email
string 
required
taxId
string 
required
taxOffice
string 
required
countriesCode
string 
required
statesCode
null 
required
countries
string 
required
states
string 
required
cities
string 
required
address
string 
required
isAbroad
boolean 
required
isCustomer
boolean 
required
person
boolean 
required
default
boolean 
required
archived
boolean 
required
ibans
array[string]
required
contactPeoples
array [object {6}] 
required
_id
string 
required
createdDate
string 
required
variables
array[string]
required
__v
integer 
required
Previous
Details
Next
Update
Built with