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/users/password-reset \
--header 'Content-Type: application/json' \
--data '
{
"userId": "88a52d74-ebee-49a4-9631-cfe492f4bf53",
"token": "937bf90f-0f4b-46ff-b714-43513ba5eeec",
"newPassword": "newStr0ng!P@ssw0rd",
"loginPageLink": "https://ui.iklim.co/login"
}
'import requests
url = "https://api.iklim.co/v1/users/password-reset"
payload = {
"userId": "88a52d74-ebee-49a4-9631-cfe492f4bf53",
"token": "937bf90f-0f4b-46ff-b714-43513ba5eeec",
"newPassword": "newStr0ng!P@ssw0rd",
"loginPageLink": "https://ui.iklim.co/login"
}
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: '88a52d74-ebee-49a4-9631-cfe492f4bf53',
token: '937bf90f-0f4b-46ff-b714-43513ba5eeec',
newPassword: 'newStr0ng!P@ssw0rd',
loginPageLink: 'https://ui.iklim.co/login'
})
};
fetch('https://api.iklim.co/v1/users/password-reset', 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/users/password-reset",
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' => '88a52d74-ebee-49a4-9631-cfe492f4bf53',
'token' => '937bf90f-0f4b-46ff-b714-43513ba5eeec',
'newPassword' => 'newStr0ng!P@ssw0rd',
'loginPageLink' => 'https://ui.iklim.co/login'
]),
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/users/password-reset"
payload := strings.NewReader("{\n \"userId\": \"88a52d74-ebee-49a4-9631-cfe492f4bf53\",\n \"token\": \"937bf90f-0f4b-46ff-b714-43513ba5eeec\",\n \"newPassword\": \"newStr0ng!P@ssw0rd\",\n \"loginPageLink\": \"https://ui.iklim.co/login\"\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/users/password-reset")
.header("Content-Type", "application/json")
.body("{\n \"userId\": \"88a52d74-ebee-49a4-9631-cfe492f4bf53\",\n \"token\": \"937bf90f-0f4b-46ff-b714-43513ba5eeec\",\n \"newPassword\": \"newStr0ng!P@ssw0rd\",\n \"loginPageLink\": \"https://ui.iklim.co/login\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.iklim.co/v1/users/password-reset")
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\": \"88a52d74-ebee-49a4-9631-cfe492f4bf53\",\n \"token\": \"937bf90f-0f4b-46ff-b714-43513ba5eeec\",\n \"newPassword\": \"newStr0ng!P@ssw0rd\",\n \"loginPageLink\": \"https://ui.iklim.co/login\"\n}"
response = http.request(request)
puts response.read_bodySent during the password reset request
curl --request POST \
--url https://api.iklim.co/v1/users/password-reset \
--header 'Content-Type: application/json' \
--data '
{
"userId": "88a52d74-ebee-49a4-9631-cfe492f4bf53",
"token": "937bf90f-0f4b-46ff-b714-43513ba5eeec",
"newPassword": "newStr0ng!P@ssw0rd",
"loginPageLink": "https://ui.iklim.co/login"
}
'import requests
url = "https://api.iklim.co/v1/users/password-reset"
payload = {
"userId": "88a52d74-ebee-49a4-9631-cfe492f4bf53",
"token": "937bf90f-0f4b-46ff-b714-43513ba5eeec",
"newPassword": "newStr0ng!P@ssw0rd",
"loginPageLink": "https://ui.iklim.co/login"
}
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: '88a52d74-ebee-49a4-9631-cfe492f4bf53',
token: '937bf90f-0f4b-46ff-b714-43513ba5eeec',
newPassword: 'newStr0ng!P@ssw0rd',
loginPageLink: 'https://ui.iklim.co/login'
})
};
fetch('https://api.iklim.co/v1/users/password-reset', 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/users/password-reset",
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' => '88a52d74-ebee-49a4-9631-cfe492f4bf53',
'token' => '937bf90f-0f4b-46ff-b714-43513ba5eeec',
'newPassword' => 'newStr0ng!P@ssw0rd',
'loginPageLink' => 'https://ui.iklim.co/login'
]),
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/users/password-reset"
payload := strings.NewReader("{\n \"userId\": \"88a52d74-ebee-49a4-9631-cfe492f4bf53\",\n \"token\": \"937bf90f-0f4b-46ff-b714-43513ba5eeec\",\n \"newPassword\": \"newStr0ng!P@ssw0rd\",\n \"loginPageLink\": \"https://ui.iklim.co/login\"\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/users/password-reset")
.header("Content-Type", "application/json")
.body("{\n \"userId\": \"88a52d74-ebee-49a4-9631-cfe492f4bf53\",\n \"token\": \"937bf90f-0f4b-46ff-b714-43513ba5eeec\",\n \"newPassword\": \"newStr0ng!P@ssw0rd\",\n \"loginPageLink\": \"https://ui.iklim.co/login\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.iklim.co/v1/users/password-reset")
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\": \"88a52d74-ebee-49a4-9631-cfe492f4bf53\",\n \"token\": \"937bf90f-0f4b-46ff-b714-43513ba5eeec\",\n \"newPassword\": \"newStr0ng!P@ssw0rd\",\n \"loginPageLink\": \"https://ui.iklim.co/login\"\n}"
response = http.request(request)
puts response.read_bodyUser Identifier Required for Password Reset
"88a52d74-ebee-49a4-9631-cfe492f4bf53"
Token Returned in the Password Reset Request Response or Passed as a Parameter to the Redirected Page
"937bf90f-0f4b-46ff-b714-43513ba5eeec"
New Password
"newStr0ng!P@ssw0rd"
Page Link to Redirect to if the Password Reset Operation is Successful. Not Mandatory. If Provided; the 'message' Parameter is Added to the Link as a Result of the Password Change Operation.
"https://ui.iklim.co/login"
Successful Password Reset