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",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"mobilePhoneNumber": "<string>",
"location": "<string>",
"company": "<string>",
"industry": "<string>",
"profilePictureUrl": "<string>",
"emailVerified": true,
"mobilePhoneNumberVerified": true
}Update Account
Updates account information such as email, phone, or other attributes.
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",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"mobilePhoneNumber": "<string>",
"location": "<string>",
"company": "<string>",
"industry": "<string>",
"profilePictureUrl": "<string>",
"emailVerified": true,
"mobilePhoneNumberVerified": true
}Body
Account Identifier to be Updated
"296ff917-9b4b-4dc1-987d-2c17bdac7133"
Account Type to be Updated
INDIVIDUAL, ORGANIZATION "ORGANIZATION/INDIVIDUAL"
Mobile Phone Number of Account to be Updated
"905321112233"
Address of Account to be Updated
"Cyberpark, Cyberplaza, A Blok, Kat 2, 06800, Bilkent, Ankara, Türkiye"
Company Name of Account to be Updated
"TARLAIO İKLİM VE TARIM TEKNOLOJİLERİ A.Ş."
Industry of Account to be Updated
"Yazılım Geliştirme, SaaS"
Profile Picture URL of Account to be Updated
"https://*******.png"
Response
Account Successfully Updated
Account Identifier
User Identifier
Account Type
INDIVIDUAL, ORGANIZATION Account Creation Date
Account Update Date
Account Mobile Phone Number
Account Address
Account Company Name
Account Industry
Account Profile Picture URL
Account Subscription Plan
NONE, TRIAL, BASIC_MONTHLY, BASIC_YEARLY, PREMIUM_MONTHLY, PREMIUM_YEARLY, CUSTOM Is E-mail Verified?
Is Mobile Phone Number Verified?