Skip to main content

JSON Post API

If you want to retrieve the list of approved headers defined in your account using the POST method of the HTTP protocol in JSON format, you can follow the guidelines below.

İstek yapılacak adres

POSThttps://api.iletimerkezi.com/v1/get-sender/json

Request URL (Body)

{
"request": {
"authentication": {
"key": "",
"hash": ""
}
}
}

Tanımlar

The request to be made to the server must be wrapped in a request tag. The definitions of the sub-tags of this tag 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.

Server Response

{
"response": {
"status": {
"code": "",
"message": ""
},
"senders": {
"sender": [
"APITEST",
"eMarka"
]
}
}
}

Definitions

The response from the server is always wrapped in a response tag. The definitions of the sub-tags of this tag 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.

senders

If the operation is completed successfully, it contains the information about the created order. If the operation fails, this tag is not returned. The sub-tags are as follows:

  • sender: Contains the approved header information.

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.

Sample Request

{
"request": {
"authentication": {
"key": "507caf2e1fcdb5eea9786332ca2d8785",
"hash": "0db4e316db72c519ba08121985f6ddf479809053d555c"
}
}
}

Sample Successful Response

{
"response": {
"status": {
"code": 200,
"message": "Operation successful"
},
"senders": {
"sender": [
"eMarka"
]
}
}
}

Sample Error Response

{
"response": {
"status": {
"code": 401,
"message": "Membership information is incorrect."
}
}
}