Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request PATCH \
--url https://api.iklim.co/v1/accounts/update \
--header 'Content-Type: application/json' \
--data '
{
"accountId": "296ff917-9b4b-4dc1-987d-2c17bdac7133",
"type": "ORGANIZATION/INDIVIDUAL",
"mobilePhoneNumber": "905321112233",
"location": "Cyberpark, Cyberplaza, A Blok, Kat 2, 06800, Bilkent, Ankara, Türkiye",
"company": "TARLAIO İKLİM VE TARIM TEKNOLOJİLERİ A.Ş.",
"industry": "Yazılım Geliştirme, SaaS",
"profilePictureUrl": "https://*******.png"
}
'import requests
url = "https://api.iklim.co/v1/accounts/update"
payload = {
"accountId": "296ff917-9b4b-4dc1-987d-2c17bdac7133",
"type": "ORGANIZATION/INDIVIDUAL",
"mobilePhoneNumber": "905321112233",
"location": "Cyberpark, Cyberplaza, A Blok, Kat 2, 06800, Bilkent, Ankara, Türkiye",
"company": "TARLAIO İKLİM VE TARIM TEKNOLOJİLERİ A.Ş.",
"industry": "Yazılım Geliştirme, SaaS",
"profilePictureUrl": "https://*******.png"
}
headers = {"Content-Type": "application/json"}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
accountId: '296ff917-9b4b-4dc1-987d-2c17bdac7133',
type: 'ORGANIZATION/INDIVIDUAL',
mobilePhoneNumber: '905321112233',
location: 'Cyberpark, Cyberplaza, A Blok, Kat 2, 06800, Bilkent, Ankara, Türkiye',
company: 'TARLAIO İKLİM VE TARIM TEKNOLOJİLERİ A.Ş.',
industry: 'Yazılım Geliştirme, SaaS',
profilePictureUrl: 'https://*******.png'
})
};
fetch('https://api.iklim.co/v1/accounts/update', 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.iklim.co/v1/accounts/update",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'accountId' => '296ff917-9b4b-4dc1-987d-2c17bdac7133',
'type' => 'ORGANIZATION/INDIVIDUAL',
'mobilePhoneNumber' => '905321112233',
'location' => 'Cyberpark, Cyberplaza, A Blok, Kat 2, 06800, Bilkent, Ankara, Türkiye',
'company' => 'TARLAIO İKLİM VE TARIM TEKNOLOJİLERİ A.Ş.',
'industry' => 'Yazılım Geliştirme, SaaS',
'profilePictureUrl' => 'https://*******.png'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.iklim.co/v1/accounts/update"
payload := strings.NewReader("{\n \"accountId\": \"296ff917-9b4b-4dc1-987d-2c17bdac7133\",\n \"type\": \"ORGANIZATION/INDIVIDUAL\",\n \"mobilePhoneNumber\": \"905321112233\",\n \"location\": \"Cyberpark, Cyberplaza, A Blok, Kat 2, 06800, Bilkent, Ankara, Türkiye\",\n \"company\": \"TARLAIO İKLİM VE TARIM TEKNOLOJİLERİ A.Ş.\",\n \"industry\": \"Yazılım Geliştirme, SaaS\",\n \"profilePictureUrl\": \"https://*******.png\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://api.iklim.co/v1/accounts/update")
.header("Content-Type", "application/json")
.body("{\n \"accountId\": \"296ff917-9b4b-4dc1-987d-2c17bdac7133\",\n \"type\": \"ORGANIZATION/INDIVIDUAL\",\n \"mobilePhoneNumber\": \"905321112233\",\n \"location\": \"Cyberpark, Cyberplaza, A Blok, Kat 2, 06800, Bilkent, Ankara, Türkiye\",\n \"company\": \"TARLAIO İKLİM VE TARIM TEKNOLOJİLERİ A.Ş.\",\n \"industry\": \"Yazılım Geliştirme, SaaS\",\n \"profilePictureUrl\": \"https://*******.png\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.iklim.co/v1/accounts/update")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"accountId\": \"296ff917-9b4b-4dc1-987d-2c17bdac7133\",\n \"type\": \"ORGANIZATION/INDIVIDUAL\",\n \"mobilePhoneNumber\": \"905321112233\",\n \"location\": \"Cyberpark, Cyberplaza, A Blok, Kat 2, 06800, Bilkent, Ankara, Türkiye\",\n \"company\": \"TARLAIO İKLİM VE TARIM TEKNOLOJİLERİ A.Ş.\",\n \"industry\": \"Yazılım Geliştirme, SaaS\",\n \"profilePictureUrl\": \"https://*******.png\"\n}"
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "INDIVIDUAL",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"mobilePhoneNumber": "<string>",
"location": "<string>",
"company": "<string>",
"industry": "<string>",
"profilePictureUrl": "<string>",
"subscriptionPlan": "NONE",
"emailVerified": true,
"mobilePhoneNumberVerified": true
}Hesap bilgilerini (e-posta, telefon veya diğer alanlar) günceller.
curl --request PATCH \
--url https://api.iklim.co/v1/accounts/update \
--header 'Content-Type: application/json' \
--data '
{
"accountId": "296ff917-9b4b-4dc1-987d-2c17bdac7133",
"type": "ORGANIZATION/INDIVIDUAL",
"mobilePhoneNumber": "905321112233",
"location": "Cyberpark, Cyberplaza, A Blok, Kat 2, 06800, Bilkent, Ankara, Türkiye",
"company": "TARLAIO İKLİM VE TARIM TEKNOLOJİLERİ A.Ş.",
"industry": "Yazılım Geliştirme, SaaS",
"profilePictureUrl": "https://*******.png"
}
'import requests
url = "https://api.iklim.co/v1/accounts/update"
payload = {
"accountId": "296ff917-9b4b-4dc1-987d-2c17bdac7133",
"type": "ORGANIZATION/INDIVIDUAL",
"mobilePhoneNumber": "905321112233",
"location": "Cyberpark, Cyberplaza, A Blok, Kat 2, 06800, Bilkent, Ankara, Türkiye",
"company": "TARLAIO İKLİM VE TARIM TEKNOLOJİLERİ A.Ş.",
"industry": "Yazılım Geliştirme, SaaS",
"profilePictureUrl": "https://*******.png"
}
headers = {"Content-Type": "application/json"}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
accountId: '296ff917-9b4b-4dc1-987d-2c17bdac7133',
type: 'ORGANIZATION/INDIVIDUAL',
mobilePhoneNumber: '905321112233',
location: 'Cyberpark, Cyberplaza, A Blok, Kat 2, 06800, Bilkent, Ankara, Türkiye',
company: 'TARLAIO İKLİM VE TARIM TEKNOLOJİLERİ A.Ş.',
industry: 'Yazılım Geliştirme, SaaS',
profilePictureUrl: 'https://*******.png'
})
};
fetch('https://api.iklim.co/v1/accounts/update', 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.iklim.co/v1/accounts/update",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'accountId' => '296ff917-9b4b-4dc1-987d-2c17bdac7133',
'type' => 'ORGANIZATION/INDIVIDUAL',
'mobilePhoneNumber' => '905321112233',
'location' => 'Cyberpark, Cyberplaza, A Blok, Kat 2, 06800, Bilkent, Ankara, Türkiye',
'company' => 'TARLAIO İKLİM VE TARIM TEKNOLOJİLERİ A.Ş.',
'industry' => 'Yazılım Geliştirme, SaaS',
'profilePictureUrl' => 'https://*******.png'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.iklim.co/v1/accounts/update"
payload := strings.NewReader("{\n \"accountId\": \"296ff917-9b4b-4dc1-987d-2c17bdac7133\",\n \"type\": \"ORGANIZATION/INDIVIDUAL\",\n \"mobilePhoneNumber\": \"905321112233\",\n \"location\": \"Cyberpark, Cyberplaza, A Blok, Kat 2, 06800, Bilkent, Ankara, Türkiye\",\n \"company\": \"TARLAIO İKLİM VE TARIM TEKNOLOJİLERİ A.Ş.\",\n \"industry\": \"Yazılım Geliştirme, SaaS\",\n \"profilePictureUrl\": \"https://*******.png\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://api.iklim.co/v1/accounts/update")
.header("Content-Type", "application/json")
.body("{\n \"accountId\": \"296ff917-9b4b-4dc1-987d-2c17bdac7133\",\n \"type\": \"ORGANIZATION/INDIVIDUAL\",\n \"mobilePhoneNumber\": \"905321112233\",\n \"location\": \"Cyberpark, Cyberplaza, A Blok, Kat 2, 06800, Bilkent, Ankara, Türkiye\",\n \"company\": \"TARLAIO İKLİM VE TARIM TEKNOLOJİLERİ A.Ş.\",\n \"industry\": \"Yazılım Geliştirme, SaaS\",\n \"profilePictureUrl\": \"https://*******.png\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.iklim.co/v1/accounts/update")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"accountId\": \"296ff917-9b4b-4dc1-987d-2c17bdac7133\",\n \"type\": \"ORGANIZATION/INDIVIDUAL\",\n \"mobilePhoneNumber\": \"905321112233\",\n \"location\": \"Cyberpark, Cyberplaza, A Blok, Kat 2, 06800, Bilkent, Ankara, Türkiye\",\n \"company\": \"TARLAIO İKLİM VE TARIM TEKNOLOJİLERİ A.Ş.\",\n \"industry\": \"Yazılım Geliştirme, SaaS\",\n \"profilePictureUrl\": \"https://*******.png\"\n}"
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "INDIVIDUAL",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"mobilePhoneNumber": "<string>",
"location": "<string>",
"company": "<string>",
"industry": "<string>",
"profilePictureUrl": "<string>",
"subscriptionPlan": "NONE",
"emailVerified": true,
"mobilePhoneNumberVerified": true
}Güncellenecek Hesap Kimlik Belirteci
"296ff917-9b4b-4dc1-987d-2c17bdac7133"
Güncellenecek Hesap Türü
INDIVIDUAL, ORGANIZATION "ORGANIZATION/INDIVIDUAL"
Güncellenecek Hesabın Mobil Telefon Numarası
"905321112233"
Güncellenecek Hesabın Adresi
"Cyberpark, Cyberplaza, A Blok, Kat 2, 06800, Bilkent, Ankara, Türkiye"
Güncellenecek Hesabın Şirket Adı
"TARLAIO İKLİM VE TARIM TEKNOLOJİLERİ A.Ş."
Güncellenecek Hesabın Endüstri/Sektör Bilgisi
"Yazılım Geliştirme, SaaS"
Güncellenecek Hesabın Profil Resmi Bağlantısı
"https://*******.png"
Hesap başarıyla güncellendi
Hesap Kimlik Belirteci
Kullanıcı Kimlik Belirteci
Hesap Türü
INDIVIDUAL, ORGANIZATION Hesap Oluşturulma Tarihi
Hesap Güncellenme Tarihi
Hesabın Mobil Telefon Numarası
Hesabın Adresi
Hesabın Şirket Adı
Hesabın Endüstri/Sektör Bilgisi
Hesabın Profil Resmi Bağlantısı
Hesabın Abonelik Planı
NONE, TRIAL, BASIC_MONTHLY, BASIC_YEARLY, PREMIUM_MONTHLY, PREMIUM_YEARLY, CUSTOM E-posta Doğrulandı Mı?
Mobil Telefon Numarası Doğrulandı Mı?