Skip to main content
POST
/
v1
/
accounts
/
create
Create Account
curl --request POST \
  --url https://api.iklim.co/v1/accounts/create \
  --header 'Content-Type: application/json' \
  --data '
{
  "userId": "296ff917-9b4b-4dc1-987d-2c17bdac7133",
  "type": "ORGANIZATION/INDIVIDUAL",
  "subscriptionPlan": "NONE/TRIAL/BASIC_MONTHLY/BASIC_YEARLY/PREMIUM_MONTHLY/PREMIUM_YEARLY/CUSTOM",
  "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/create"

payload = {
    "userId": "296ff917-9b4b-4dc1-987d-2c17bdac7133",
    "type": "ORGANIZATION/INDIVIDUAL",
    "subscriptionPlan": "NONE/TRIAL/BASIC_MONTHLY/BASIC_YEARLY/PREMIUM_MONTHLY/PREMIUM_YEARLY/CUSTOM",
    "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.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',
    subscriptionPlan: 'NONE/TRIAL/BASIC_MONTHLY/BASIC_YEARLY/PREMIUM_MONTHLY/PREMIUM_YEARLY/CUSTOM',
    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/create', 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/create",
  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',
    'subscriptionPlan' => 'NONE/TRIAL/BASIC_MONTHLY/BASIC_YEARLY/PREMIUM_MONTHLY/PREMIUM_YEARLY/CUSTOM',
    '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/create"

	payload := strings.NewReader("{\n  \"userId\": \"296ff917-9b4b-4dc1-987d-2c17bdac7133\",\n  \"type\": \"ORGANIZATION/INDIVIDUAL\",\n  \"subscriptionPlan\": \"NONE/TRIAL/BASIC_MONTHLY/BASIC_YEARLY/PREMIUM_MONTHLY/PREMIUM_YEARLY/CUSTOM\",\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("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/create")
  .header("Content-Type", "application/json")
  .body("{\n  \"userId\": \"296ff917-9b4b-4dc1-987d-2c17bdac7133\",\n  \"type\": \"ORGANIZATION/INDIVIDUAL\",\n  \"subscriptionPlan\": \"NONE/TRIAL/BASIC_MONTHLY/BASIC_YEARLY/PREMIUM_MONTHLY/PREMIUM_YEARLY/CUSTOM\",\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/create")

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  \"subscriptionPlan\": \"NONE/TRIAL/BASIC_MONTHLY/BASIC_YEARLY/PREMIUM_MONTHLY/PREMIUM_YEARLY/CUSTOM\",\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
userId
string<uuid>
required

User Identifier for Account Creation

Example:

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

type
enum<string>
required

Account Type to be Created

Available options:
INDIVIDUAL,
ORGANIZATION
Example:

"ORGANIZATION/INDIVIDUAL"

subscriptionPlan
enum<string>
required

Subscription Plan of Created Account

Available options:
NONE,
TRIAL,
BASIC_MONTHLY,
BASIC_YEARLY,
PREMIUM_MONTHLY,
PREMIUM_YEARLY,
CUSTOM
Example:

"NONE/TRIAL/BASIC_MONTHLY/BASIC_YEARLY/PREMIUM_MONTHLY/PREMIUM_YEARLY/CUSTOM"

mobilePhoneNumber
string

Mobile Phone Number of Created Account

Example:

"905321112233"

location
string

Address of Created Account

Example:

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

company
string

swagger.swagger.schema.accounts.create-request.company

Example:

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

industry
string

Industry of Created Account

Example:

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

profilePictureUrl
string

Profile Picture URL of Created Account

Example:

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

Response

Account Successfully Created

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?