Skip to main content

JSON Post API

Warning

This API method is under development, there may be changes to it. Please contact your customer representative to access the API method.

To create a new group in your contact list using the POST method of the HTTP protocol in JSON format, you can follow the instructions below.

Request URL

POSThttps://api.iletimerkezi.com/v1/add-group/json

Request Body

{
"request": {
"authentication": {
"key": "",
"hash": ""
},
"group": {
"name": "",
"parent": ""
}
}
}

Definitions

The request sent to the server must be wrapped in the request tag. The definitions of its sub-tags are as follows:

authentication

Contains information about the transaction status. The values ​​returned with this tag can also be obtained by looking at the header information of the HTTP response. This tag is returned as standard in every request made. Its subtags are as follows

  • key: After logging into your iletimerkezi.com panel, the API Key that you can create from the settings section should be written in this field. It is mandatory to send it when making a request.

  • hash: After logging into your iletimerkezi.com panel, the hash created using the API Key and Secret Key, which you can create from the settings section, should be written in this field. It is mandatory to send it when making a request.

group

Contains information about the group to be created. The sub-tags are as follows:

  • name: Contains the name of the group to be created.
  • parent: If the group to be created is a sub-group, you must send the ID value of that parent group. If it is a main group, leave it empty.

Server Response

{
"response": {
"status": {
"code": "",
"message": ""
},
"group": {
"id": "",
"name": ""
}
}
}

Definitions

The response from the server is always wrapped in the response tag. The definitions of its sub-tags are as follows:

status

Contains information about the transaction status. The values ​​returned with this tag can also be obtained by looking at the header information of the HTTP response. This tag is returned as standard in every request made. Its subtags are as follows

  • code: It is a numeric value indicating the process status.
  • message: Contains information message about the process status.

group

Represents your group information. The sub-tags are as follows:

  • id: Contains the unique value of the created group.
  • name: Contains the name of the created group.

Error Codes

The following table lists the error codes that the API can return.

Error CodeMessageDescription
400İstek çözümlenemediPOST ettiğiniz JSON'in yapısındaki hatadan kaynaklanır. Bu hatalar genellikle, yanlış yazılan JSON etiketi, düzgün kapatılmayan XML etiketi veya CDATA kullanılmadan JSON'in yapısını bozabilecek bir karakterin kullanımından kaynaklanır.
401Üyelik bilgileri hatalıPOST ettiğiniz JSON'in authentication etiketi içerisinde göndermiş olduğunuz bilgileri doğrulayamadığımızda bu hatayı veriyoruz, eğer hesabınızda sabit IP tanımladıysanız ve farklı bir IP üzerinden istek yapıyorsanız yine bu hatayı alırsınız.
404API istek yapılan yönteme sahip değilEğer bu hatayı alıyorsanız istek yaptığınız adresi tekrar kontrol edin yanlış bir adrese istek yapıyor olabilirsiniz.
461Grup adını boş bırakamazsınız.Grup adı boş bırakıldığında bu hatayı alırsınız.
463Böyle bir grup bulunamadı.Parent etiketi içindeki group id değeri hatalı ise bu hatayı alırsınız.