Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request POST \
--url https://api.iklim.co/v1/accounts/account-activation-request \
--header 'Content-Type: application/json' \
--data '
{
"userId": "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",
"accountActivationPageLink": "https://api-manager.iklim.co/activation/account"
}
'import requests
url = "https://api.iklim.co/v1/accounts/account-activation-request"
payload = {
"userId": "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",
"accountActivationPageLink": "https://api-manager.iklim.co/activation/account"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
userId: '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',
accountActivationPageLink: 'https://api-manager.iklim.co/activation/account'
})
};
fetch('https://api.iklim.co/v1/accounts/account-activation-request', 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/account-activation-request",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'userId' => '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',
'accountActivationPageLink' => 'https://api-manager.iklim.co/activation/account'
]),
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/account-activation-request"
payload := strings.NewReader("{\n \"userId\": \"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 \"accountActivationPageLink\": \"https://api-manager.iklim.co/activation/account\"\n}")
req, _ := http.NewRequest("POST", 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.post("https://api.iklim.co/v1/accounts/account-activation-request")
.header("Content-Type", "application/json")
.body("{\n \"userId\": \"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 \"accountActivationPageLink\": \"https://api-manager.iklim.co/activation/account\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.iklim.co/v1/accounts/account-activation-request")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"userId\": \"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 \"accountActivationPageLink\": \"https://api-manager.iklim.co/activation/account\"\n}"
response = http.request(request)
puts response.read_body{
"userId": "<string>",
"accountId": "<string>",
"recipientEmail": "<string>",
"tokenExpirationEpoch": 1750423307000,
"emailSent": true
}Initiates the process of account activation by sending an activation email to the user.
curl --request POST \
--url https://api.iklim.co/v1/accounts/account-activation-request \
--header 'Content-Type: application/json' \
--data '
{
"userId": "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",
"accountActivationPageLink": "https://api-manager.iklim.co/activation/account"
}
'import requests
url = "https://api.iklim.co/v1/accounts/account-activation-request"
payload = {
"userId": "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",
"accountActivationPageLink": "https://api-manager.iklim.co/activation/account"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
userId: '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',
accountActivationPageLink: 'https://api-manager.iklim.co/activation/account'
})
};
fetch('https://api.iklim.co/v1/accounts/account-activation-request', 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/account-activation-request",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'userId' => '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',
'accountActivationPageLink' => 'https://api-manager.iklim.co/activation/account'
]),
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/account-activation-request"
payload := strings.NewReader("{\n \"userId\": \"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 \"accountActivationPageLink\": \"https://api-manager.iklim.co/activation/account\"\n}")
req, _ := http.NewRequest("POST", 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.post("https://api.iklim.co/v1/accounts/account-activation-request")
.header("Content-Type", "application/json")
.body("{\n \"userId\": \"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 \"accountActivationPageLink\": \"https://api-manager.iklim.co/activation/account\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.iklim.co/v1/accounts/account-activation-request")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"userId\": \"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 \"accountActivationPageLink\": \"https://api-manager.iklim.co/activation/account\"\n}"
response = http.request(request)
puts response.read_body{
"userId": "<string>",
"accountId": "<string>",
"recipientEmail": "<string>",
"tokenExpirationEpoch": 1750423307000,
"emailSent": true
}User Identifier for Account Activation
"296ff917-9b4b-4dc1-987d-2c17bdac7133"
Account Type for Account Activation
INDIVIDUAL, ORGANIZATION "ORGANIZATION/INDIVIDUAL"
Mobile Phone Number for Account Activation
"905321112233"
Address for Account Activation
"Cyberpark, Cyberplaza, A Blok, Kat 2, 06800, Bilkent, Ankara, Türkiye"
Company Name for Account Activation
"TARLAIO İKLİM VE TARIM TEKNOLOJİLERİ A.Ş."
Industry for Account Activation
"Yazılım Geliştirme, SaaS"
Profile Picture URL for Account Activation
"https://*******.png"
Account Activation Page Link
"https://api-manager.iklim.co/activation/account"
Account Activation Request Successfully Sent
User Identifier of Activated User
Account Identifier of Activated Account
E-mail of Activated User
Activation Token Expiration Time
1750423307000
Was Activation E-mail Sent?
true