Skip to main content
PATCH
/
v1
/
accounts
/
update
Update Account
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

application/json
accountId
string<uuid>
required

Account Identifier to be Updated

Example:

"296ff917-9b4b-4dc1-987d-2c17bdac7133"

type
enum<string>

Account Type to be Updated

Available options:
INDIVIDUAL,
ORGANIZATION
Example:

"ORGANIZATION/INDIVIDUAL"

mobilePhoneNumber
string

Mobile Phone Number of Account to be Updated

Example:

"905321112233"

location
string

Address of Account to be Updated

Example:

"Cyberpark, Cyberplaza, A Blok, Kat 2, 06800, Bilkent, Ankara, Türkiye"

company
string

Company Name of Account to be Updated

Example:

"TARLAIO İKLİM VE TARIM TEKNOLOJİLERİ A.Ş."

industry
string

Industry of Account to be Updated

Example:

"Yazılım Geliştirme, SaaS"

profilePictureUrl
string

Profile Picture URL of Account to be Updated

Example:

"https://*******.png"

Response

Account Successfully Updated

id
string<uuid>

Account Identifier

userId
string<uuid>

User Identifier

type
enum<string>

Account Type

Available options:
INDIVIDUAL,
ORGANIZATION
createdAt
string<date-time>

Account Creation Date

updatedAt
string<date-time>

Account Update Date

mobilePhoneNumber
string

Account Mobile Phone Number

location
string

Account Address

company
string

Account Company Name

industry
string

Account Industry

profilePictureUrl
string

Account Profile Picture URL

subscriptionPlan
enum<string>

Account Subscription Plan

Available options:
NONE,
TRIAL,
BASIC_MONTHLY,
BASIC_YEARLY,
PREMIUM_MONTHLY,
PREMIUM_YEARLY,
CUSTOM
emailVerified
boolean

Is E-mail Verified?

mobilePhoneNumberVerified
boolean

Is Mobile Phone Number Verified?