Skip to main content
POST
/
v1
/
accounts
/
account-activation-request
Request Account Activation
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"
}'
{
"userId": "<string>",
"accountId": "<string>",
"recipientEmail": "<string>",
"tokenExpirationEpoch": 1750423307000,
"emailSent": true
}

Body

application/json
userId
string<uuid>
required

User Identifier for Account Activation

Example:

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

type
enum<string>
required

Account Type for Account Activation

Available options:
INDIVIDUAL,
ORGANIZATION
Example:

"ORGANIZATION/INDIVIDUAL"

mobilePhoneNumber
string

Mobile Phone Number for Account Activation

Example:

"905321112233"

location
string

Address for Account Activation

Example:

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

company
string

Company Name for Account Activation

Example:

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

industry
string

Industry for Account Activation

Example:

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

profilePictureUrl
string

Profile Picture URL for Account Activation

Example:

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

Account Activation Page Link

Example:

"https://api-manager.iklim.co/activation/account"

Response

Account Activation Request Successfully Sent

userId
string

User Identifier of Activated User

accountId
string

Account Identifier of Activated Account

recipientEmail
string

E-mail of Activated User

tokenExpirationEpoch
integer

Activation Token Expiration Time

Example:

1750423307000

emailSent
boolean

Was Activation E-mail Sent?

Example:

true