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
}Hesap Aktivasyonu Talebi
Kullanıcıya aktivasyon e-postası göndererek hesap aktivasyon sürecini başlatır.
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
}Gövde
Kullanıcı Aktivasyonu İçin Kullanıcı Kimlik Belirteci
"296ff917-9b4b-4dc1-987d-2c17bdac7133"
Kullanıcı Aktivasyonu İçin Hesap Türü
INDIVIDUAL, ORGANIZATION "ORGANIZATION/INDIVIDUAL"
Kullanıcı Aktivasyonu İçin Mobil Telefon Numarası
"905321112233"
Kullanıcı Aktivasyonu İçin Adres
"Cyberpark, Cyberplaza, A Blok, Kat 2, 06800, Bilkent, Ankara, Türkiye"
Kullanıcı Aktivasyonu İçin Şirket Adı
"TARLAIO İKLİM VE TARIM TEKNOLOJİLERİ A.Ş."
Kullanıcı Aktivasyonu İçin Endüstri/Sektör
"Yazılım Geliştirme, SaaS"
Kullanıcı Aktivasyonu İçin Profil Resmi Bağlantısı
"https://*******.png"
Hesap Aktivasyon Sayfası Bağlantısı
"https://api-manager.iklim.co/activation/account"
Yanıt
Hesap aktivasyon talebi başarıyla gönderildi
Aktive Edilen Kullanıcının Kimlik Belirteci
Aktive Edilen Hesabın Kimlik Belirteci
Aktive Edilen Kullanıcının E-postası
Aktivasyon Belirtecinin Geçerlilik Süresi
1750423307000
Aktivasyon E-postası Gönderildi Mi?
true