Skip to main content
POST
/
v1
/
auth
/
register
New User Registration
curl --request POST \
  --url https://api.iklim.co/v1/auth/register \
  --header 'Content-Type: application/json' \
  --data '
{
  "username": "[email protected]",
  "firstName": "John",
  "lastName": "Doe",
  "locale": "tr_TR",
  "timezone": "Europe/Istanbul",
  "password": "password",
  "midName": "Bob"
}
'
{
"username": "[email protected]",
"firstName": "John",
"lastName": "Doe",
"locale": "tr_TR",
"timezone": "Europe/Istanbul",
"password": "password",
"midName": "Bob"
}

Body

application/json
username
string
required

User Name in E-Mail Format for Registration

firstName
string
required

First Name for Registration

Example:

"John"

lastName
string
required

Last Name for Registration

Example:

"Doe"

locale
string
required

User Locale for Registration

Example:

"tr_TR"

timezone
string
required

User Timezone Id. You Can Find a List of 'TZ identifier' on page https://en.wikipedia.org/wiki/List_of_tz_database_time_zones

Example:

"Europe/Istanbul"

password
string

Password for Registration

Example:

"password"

midName
string

Mid Name for Registration

Example:

"Bob"

Response

Successful User Registration

username
string
required

User Name in E-Mail Format for Registration

firstName
string
required

First Name for Registration

Example:

"John"

lastName
string
required

Last Name for Registration

Example:

"Doe"

locale
string
required

User Locale for Registration

Example:

"tr_TR"

timezone
string
required

User Timezone Id. You Can Find a List of 'TZ identifier' on page https://en.wikipedia.org/wiki/List_of_tz_database_time_zones

Example:

"Europe/Istanbul"

password
string

Password for Registration

Example:

"password"

midName
string

Mid Name for Registration

Example:

"Bob"