Cari hesap detayı
curl --request GET \
--url https://api.sarraf.pro/v1/customers/{id} \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://api.sarraf.pro/v1/customers/{id}"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://api.sarraf.pro/v1/customers/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.sarraf.pro/v1/customers/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.sarraf.pro/v1/customers/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Basic <encoded-value>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.sarraf.pro/v1/customers/{id}")
.header("Authorization", "Basic <encoded-value>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sarraf.pro/v1/customers/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Basic <encoded-value>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"id": "<string>",
"idNo": "<string>",
"idType": "person",
"idCardType": "idCard",
"nameSurname": "<string>",
"phone": "<string>",
"email": "<string>",
"nationality": "TR",
"countries": "<string>",
"states": "<string>",
"cities": "<string>",
"labels": [
"<string>"
],
"recordLevel": 0,
"isVerify": true,
"isValid": true,
"isPhoto": true,
"saveType": "bank",
"createdDate": "2023-11-07T05:31:56Z",
"lastDate": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"name": "<string>",
"surname": "<string>",
"ownerName": "<string>",
"birthplace": "<string>",
"birthday": "<string>",
"year": "<string>",
"phone2": "<string>",
"taxOffice": "<string>",
"registryNo": "<string>",
"cmpNo": "<string>",
"activityName": "<string>",
"naceCode": "<string>",
"countriesCode": "<string>",
"statesCode": "<string>",
"address": "<string>",
"motherName": "<string>",
"fatherName": "<string>",
"isAbroad": true,
"jobName": "<string>",
"ibans": [
"<string>"
],
"bankCodes": [
"<string>"
],
"docTypes": [
"<string>"
],
"customerRelation": {}
},
"meta": {
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"timestamp": "2023-11-07T05:31:56Z"
}
}{
"success": false,
"error": {
"code": "VALIDATION_FAILED",
"message": "<string>",
"details": [
{
"field": "<string>",
"rule": "<string>"
}
]
},
"traceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"success": false,
"error": {
"code": "VALIDATION_FAILED",
"message": "<string>",
"details": [
{
"field": "<string>",
"rule": "<string>"
}
]
},
"traceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"success": false,
"error": {
"code": "VALIDATION_FAILED",
"message": "<string>",
"details": [
{
"field": "<string>",
"rule": "<string>"
}
]
},
"traceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"success": false,
"error": {
"code": "VALIDATION_FAILED",
"message": "<string>",
"details": [
{
"field": "<string>",
"rule": "<string>"
}
]
},
"traceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}Müşteriler
Cari hesap detayı
Tek cari hesabın geniş kaydını döner. PII alanları (motherName, fatherName, birthplace vb.) yalnız bu uçta yer alır.
GET
/
v1
/
customers
/
{id}
Cari hesap detayı
curl --request GET \
--url https://api.sarraf.pro/v1/customers/{id} \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://api.sarraf.pro/v1/customers/{id}"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://api.sarraf.pro/v1/customers/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.sarraf.pro/v1/customers/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.sarraf.pro/v1/customers/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Basic <encoded-value>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.sarraf.pro/v1/customers/{id}")
.header("Authorization", "Basic <encoded-value>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sarraf.pro/v1/customers/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Basic <encoded-value>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"id": "<string>",
"idNo": "<string>",
"idType": "person",
"idCardType": "idCard",
"nameSurname": "<string>",
"phone": "<string>",
"email": "<string>",
"nationality": "TR",
"countries": "<string>",
"states": "<string>",
"cities": "<string>",
"labels": [
"<string>"
],
"recordLevel": 0,
"isVerify": true,
"isValid": true,
"isPhoto": true,
"saveType": "bank",
"createdDate": "2023-11-07T05:31:56Z",
"lastDate": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"name": "<string>",
"surname": "<string>",
"ownerName": "<string>",
"birthplace": "<string>",
"birthday": "<string>",
"year": "<string>",
"phone2": "<string>",
"taxOffice": "<string>",
"registryNo": "<string>",
"cmpNo": "<string>",
"activityName": "<string>",
"naceCode": "<string>",
"countriesCode": "<string>",
"statesCode": "<string>",
"address": "<string>",
"motherName": "<string>",
"fatherName": "<string>",
"isAbroad": true,
"jobName": "<string>",
"ibans": [
"<string>"
],
"bankCodes": [
"<string>"
],
"docTypes": [
"<string>"
],
"customerRelation": {}
},
"meta": {
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"timestamp": "2023-11-07T05:31:56Z"
}
}{
"success": false,
"error": {
"code": "VALIDATION_FAILED",
"message": "<string>",
"details": [
{
"field": "<string>",
"rule": "<string>"
}
]
},
"traceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"success": false,
"error": {
"code": "VALIDATION_FAILED",
"message": "<string>",
"details": [
{
"field": "<string>",
"rule": "<string>"
}
]
},
"traceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"success": false,
"error": {
"code": "VALIDATION_FAILED",
"message": "<string>",
"details": [
{
"field": "<string>",
"rule": "<string>"
}
]
},
"traceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"success": false,
"error": {
"code": "VALIDATION_FAILED",
"message": "<string>",
"details": [
{
"field": "<string>",
"rule": "<string>"
}
]
},
"traceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}Authorizations
Kullanıcı adı apiUserId, parola secretKey. Authorization: Basic base64(apiUserId:secretKey)
Path Parameters
Kayıt kimliği (ObjectId).
Pattern:
^[a-fA-F0-9]{24}$⌘I